{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Alphabetical company", "required": [ "company_name", "company_number", "company_status", "company_type", "links" ], "properties": { "company_name": { "type": "string", "description": "The company name associated with the company" }, "company_number": { "type": "string", "description": "The company number of the company" }, "company_status": { "type": "string", "description": "The status of the company" }, "ordered_alpha_key_with_id": { "type": "string", "description": "The alphakey with it's id associated with the company" }, "kind": { "type": "string", "enum": [ "search-results#alphabetical-search" ], "description": "The type of search result" }, "links": { "type": "object", "description": "The link to the company", "properties": { "company_profile": { "type": "string", "description": "The link to the company" } } }, "company_type": { "type": "string", "description": "The type of company associated with the company" } } }