{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-address_lite-schema.json", "title": "Address Schema", "type": "object", "properties": { "id": { "type": "integer" }, "name": { "example": "Jimmy McGill", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "company": { "example": "Hamlin, Hamlin & McGill", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "street1": { "example": "100 Constitution Ave", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "street2": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "city": { "example": "Albuquerque", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "state": { "example": "NM", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "zip": { "example": "87109", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "country": { "example": "US", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "email": { "example": "slippin-jimmy@saul-good.man", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "phone": { "example": "555-867-5309", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "fax": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "cart_address_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "revision_locked_fields": { "type": "array" } } }