{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-v1_address-schema.json", "title": "v1_address", "type": "object", "properties": { "id": { "type": "number" }, "name": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "company": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "street1": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "street2": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "city": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "state": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "zip": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "country": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "email": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "phone": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "fax": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "reference_number": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "cart_address_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "_link": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "_linkaddresscreatedtaskstatus": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "validation": { "properties": { "is_error": { "type": "boolean" }, "additional_text": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "suggested": { "type": "array", "items": { "title": "Suggested Address", "type": "object", "additionalProperties": false, "properties": { "city": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "zip": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "street1": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "street2": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "is_commercial": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "state": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "country_code": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } } } } }, "anyOf": [ { "type": "object" }, { "type": "null" } ] } } }