"""Seed data for collaborators.""" from datetime import datetime from decimal import Decimal collaborator_seed_data = [ { "collaborator_id": 0, "name": "totally unique name", "vendor_id": 99876, "performance_rights": False, "subaccount_id": None, "participant_id": "99876", "recipient_id": None, "currency": "USD", "balance": Decimal("0.000000"), "balance_last_modified": datetime(2019, 9, 8, 7, 6, 5), "collaborator_type": "COLLABORATOR", "description": "Mixing Engineer", "internal_id": "ABC-123", }, { "collaborator_id": 1, "name": "Person", "vendor_id": 24601, "performance_rights": False, "subaccount_id": None, "participant_id": "12345", "recipient_id": None, "currency": "USD", "balance": Decimal("0.000000"), "balance_last_modified": datetime(2019, 9, 8, 7, 6, 5), "collaborator_type": "COLLABORATOR", "description": "Mixing Engineer", "internal_id": "ABC-123", "dp_enabled_date": None, "dp_splits_agreed_date": datetime(2012, 3, 4, 5, 6, 7), }, { "collaborator_id": 2, "name": "Another Person", "vendor_id": 24601, "performance_rights": False, "subaccount_id": None, "participant_id": "12346", "recipient_id": None, "currency": "USD", "balance": Decimal("10.000000"), "balance_last_modified": datetime(2019, 9, 8, 7, 6, 5), "collaborator_type": "COLLABORATOR", "description": "Mixing Engineer", "internal_id": "ABC-523", "dp_enabled_date": datetime(2012, 3, 4, 5, 6, 7), "dp_splits_agreed_date": datetime(2012, 3, 4, 5, 6, 7), }, { "collaborator_id": 3, "name": "Person", "vendor_id": 90210, "performance_rights": True, "subaccount_id": None, "participant_id": "12347", "recipient_id": None, "currency": "USD", "balance": Decimal("0.000000"), "balance_last_modified": datetime(2019, 9, 8, 7, 6, 5), "collaborator_type": "COLLABORATOR", "description": "Mixing Engineer", "internal_id": "ABC-423", }, { "collaborator_id": 4, "name": "Another Person", "vendor_id": 90210, "performance_rights": True, "subaccount_id": None, "participant_id": "12348", "recipient_id": None, "currency": "USD", "balance": Decimal("0.000000"), "balance_last_modified": datetime(2019, 9, 8, 7, 6, 5), "collaborator_type": "COLLABORATOR", "description": "Mixing Engineer", "internal_id": "ABC-323", }, { "collaborator_id": 5, "name": "Third", "vendor_id": 90210, "performance_rights": False, "subaccount_id": None, "participant_id": "12349", "recipient_id": None, "currency": "USD", "balance": Decimal("0.000000"), "balance_last_modified": datetime(2019, 9, 8, 7, 6, 5), "collaborator_type": "COLLABORATOR", "description": "Mixing Engineer", "internal_id": "ABC-223", }, { "collaborator_id": 6, "name": "4", "vendor_id": 90210, "performance_rights": True, "subaccount_id": 1234, "participant_id": "1", "recipient_id": 2, "currency": "USD", "balance": Decimal("0.000000"), "balance_last_modified": datetime(2019, 9, 8, 7, 6, 5), "collaborator_type": "COLLABORATOR", "description": None, "internal_id": None, }, { "collaborator_id": 7, "name": "recipient", "vendor_id": 6666, "performance_rights": True, "subaccount_id": 123456, "participant_id": "10", "recipient_id": 1, "currency": "USD", "balance": Decimal("10.000000"), "balance_last_modified": datetime(2019, 9, 8, 7, 6, 5), "collaborator_type": "COLLABORATOR", "description": None, "internal_id": None, }, { "collaborator_id": 8, "name": "Subaccount", "vendor_id": 9876, "performance_rights": True, "subaccount_id": 123456, "participant_id": None, "recipient_id": 90, "currency": "USD", "balance": Decimal("10.000000"), "balance_last_modified": datetime(2019, 9, 8, 7, 6, 5), "collaborator_type": "SUBACCOUNT", "description": None, "internal_id": None, }, { "collaborator_id": 9, "name": "The number of the beast", "vendor_id": 10003, "performance_rights": True, "subaccount_id": 123456, "participant_id": None, "recipient_id": 3, "currency": "USD", "balance": Decimal("10.000000"), "balance_last_modified": datetime(2019, 9, 8, 7, 6, 5), "collaborator_type": "SUBACCOUNT", "description": None, "internal_id": None, }, { "collaborator_id": 10, "name": "Another Person", "vendor_id": 120594, "performance_rights": True, "subaccount_id": None, "participant_id": "12348", "recipient_id": None, "currency": "USD", "balance": Decimal("0.000000"), "balance_last_modified": datetime(2019, 9, 8, 7, 6, 5), "collaborator_type": "COLLABORATOR", "description": "Mixing Engineer", "internal_id": "ABC-323", }, { "collaborator_id": 11, "name": "recipient again", "vendor_id": 6666, "performance_rights": True, "subaccount_id": 123456, "participant_id": None, "recipient_id": 4, "currency": "USD", "balance": Decimal("10.000000"), "balance_last_modified": datetime(2019, 9, 8, 7, 6, 5), "collaborator_type": "COLLABORATOR", "description": None, "internal_id": None, }, ] next_collaborator_id = len(collaborator_seed_data)