{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-warehouse_address-schema.json", "title": "Warehouse Address Schema", "type": "object", "additionalProperties": false, "properties": { "name": { "example": "Hangar 51", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "street1": { "example": "123 Secret Street", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "street2": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "city": { "example": "Roswell", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "state": { "example": "NM", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "zip": { "example": "88201", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "country": { "example": "US", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "email": { "example": "indiana@drjones.com", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "phone": { "example": "555-867-5309", "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "name" ] }