diff --git a/datasets/qa/snowfakeryschema b/datasets/qa/snowfakeryschema deleted file mode 100644 index 3317fabd..00000000 --- a/datasets/qa/snowfakeryschema +++ /dev/null @@ -1,164 +0,0 @@ -#Standard Data -- object: Account - count: 20 - nickname: BusinessOrganization - fields: - BillingStreet: - fake: street_address - BillingCity: - fake: city - BillingState: - fake: state - BillingPostalCode: - fake: postalcode - BillingCountry: United States - Name: - fake: Company - - friends: - - object: Contact - count: 5 - fields: - AccountId: - reference: BusinessOrganization - FirstName: - fake: FirstName - LastName: - fake: LastName - MobilePhone: - random_choice: - - choice: - probability: 50% - pick: - fake: PhoneNumber - - choice: - probability: 50% - pick: "None" - MailingStreet: - fake: street_address - MailingCity: - fake: city - MailingState: - fake: state - MailingPostalCode: - fake: postalcode - MailingCountry: United States - Title: - random_choice: - - Customer - - Executive Officer - - VP Cutomer Support - - Buyer - - President and CEO - - VP Sales - - President - Birthdate: - date_between: - start_date: -15y - end_date: -60y - - - object: Opportunity - count: 5 - fields: - AccountId: - reference: BusinessOrganization - Name: ${{fake.Text(max_nb_chars = 50)}} - Amount: - random_number: - min: 0 - max: 10000 - CloseDate: - date_between: - start_date: -1y - end_date: +1y - StageName: - random_choice: - - Prospecting - - Qualification - - Needs Analysis - - Value Proposition - - Id. Decision Makers - - Perception Analysis - - Proposal/Price Quote - - Negotiation/Review - - Closed Won - - Closed Lost - -- object: OpportunityContactRole - count: 100 - fields: - OpportunityId: - random_reference: Opportunity - ContactId: - random_reference: Contact - IsPrimary: True - Role: Economic Decision Maker - -- object: Lead - count: 20 - fields: - FirstName: - fake: first_name - LastName: - fake: last_name - company: - fake: Company - title: - fake.text: - max_nb_chars: 15 - email: - fake: email - phone: - fake: phone_number - MobilePhone: - fake: phone_number - Street: - fake: StreetAddress - City: - fake: City - State: - fake: State - PostalCode: - fake: PostalCode - Country: - fake: Country - NumberOfEmployees: - random_number: - min: 0 - max: 10000 - Status: - random_choice: - Open: 40% - Working: 20% - Nurturing: 20% - Qualified: 10% - Unqualified: 10% - -- object: Campaign - count: 10 - fields: - Name: ${{fake.Text(max_nb_chars = 25)}} - IsActive: TRUE - Status: - random_choice: - - In Progress - - Completed - - Aborted - - Planned - StartDate: - date_between: - start_date: -1y - end_date: +1y - EndDate: - date_between: - start_date: ${{StartDate}} - end_date: +1y - friends: - - object: CampaignMember - count: 3 - fields: - CampaignId: - reference: Campaign - ContactId: - random_reference: Contact - Status: Sent