{ "type": "object", "properties": { "input": { "type": "object", "properties": { "companyname": { "type": "string", "example": "Acme Corporation" } }, "required": [ "companyname" ] }, "data": { "type": "array", "description": "", "example": [], "items": { "type": "object", "properties": { "id": { "type": "integer", "example": 500123 }, "ticker": { "type": "string", "example": "example_value" }, "name": { "type": "string", "example": "Acme Corporation" }, "website": { "type": "string", "example": "example_value" }, "domainList": { "type": "array", "description": "", "example": [], "items": { "type": "string" } }, "logo": { "type": "string", "example": "example_value" }, "socialMediaUrls": { "type": "array", "description": "", "example": "https://www.example.com", "items": { "type": "object", "properties": { "type": { "type": "string", "example": "standard" }, "url": { "type": "string", "example": "https://www.example.com/resource" }, "followerCount": { "type": "string", "example": "example_value" } }, "required": [ "type", "url", "followerCount" ] } }, "revenue": { "type": "integer", "example": 100 }, "employeeCount": { "type": "integer", "example": 250 }, "numberOfContactsInZoomInfo": { "type": "integer", "example": 100 }, "phone": { "type": "string", "example": "+1-555-555-1234" }, "fax": { "type": "string", "example": "example_value" }, "street": { "type": "string", "example": "example_value" }, "city": { "type": "string", "example": "San Francisco" }, "state": { "type": "string", "example": "CA" }, "zipCode": { "type": "string", "example": "94105" }, "country": { "type": "string", "example": "US" }, "continent": { "type": "string", "example": "example_value" }, "companyStatus": { "type": "string", "example": "active" }, "companyStatusDate": { "type": "string", "example": "active" }, "employeeGrowth": { "type": "object", "properties": { "oneYearGrowthRate": { "type": "string", "example": "example_value" }, "twoYearGrowthRate": { "type": "string", "example": "example_value" }, "employeeGrowthDataPoints": { "type": "array", "description": "", "example": [], "items": { "type": "object" } } }, "required": [ "oneYearGrowthRate", "twoYearGrowthRate", "employeeGrowthDataPoints" ] }, "type": { "type": "string", "example": "standard" } }, "required": [ "id", "ticker", "name", "website", "domainList", "logo", "socialMediaUrls", "revenue", "employeeCount", "numberOfContactsInZoomInfo", "phone", "fax", "street", "city", "state", "zipCode", "country", "continent", "companyStatus", "companyStatusDate", "employeeGrowth", "type" ] } } }, "required": [ "input", "data" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Result8" }