{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-warehouse-schema.json", "title": "Warehouse Schema", "additionalProperties": false, "type": "object", "properties": { "_link": { "type": "string" }, "id": { "type": "integer" }, "address": { "$ref": "#/components/schemas/address" }, "cart": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "is_configured_for_shipping": { "type": "boolean" }, "is_default_location": { "type": "boolean" } }, "required": [ "id", "address", "cart", "is_configured_for_shipping", "is_default_location" ] }