{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "LocationResource", "type": "object", "properties": { "schemas": { "type": "array" }, "id": { "type": "string" }, "externalId": { "type": "string" }, "name": { "type": "string", "description": "Name of the location." }, "description": { "type": "string", "description": "Description of the location." }, "address1": { "type": "string", "description": "First line of location's address." }, "address2": { "type": "string", "description": "Second line of location's address." }, "address3": { "type": "string", "description": "Third line of location's address." }, "locality": { "type": "string", "description": "City of location." }, "region": { "type": "string", "description": "State or province of location." }, "postalCode": { "type": "string", "description": "Postal code of location." }, "country": { "type": "string", "description": "Country of location." }, "phoneNumber": { "type": "string", "description": "Phone number of location." }, "mainLocation": { "type": "string" }, "meta": { "type": "object" } } }