{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/customers-user-delivery-location-admin-schema.json", "title": "UserDeliveryLocationAdmin", "description": "Delivery location with identifiers for admin user management.", "type": "object", "properties": { "DeliveryLocationId": { "format": "int32", "description": "DeliveryLocationId.", "type": "integer", "example": 500123 }, "Building": { "description": "Building.", "type": "string", "example": "string" }, "Street": { "description": "Street.", "type": "string", "example": "string" }, "Town": { "description": "Town.", "type": "string", "example": "string" }, "PostCode": { "description": "PostCode.", "type": "string", "example": "string" }, "DeliveryInstructions": { "description": "DeliveryInstructions.", "type": "string", "example": "string" }, "AutoSelectThisLocation": { "description": "AutoSelectThisLocation.", "type": "boolean", "example": true }, "IsDisplayed": { "description": "IsDisplayed.", "type": "boolean", "example": true }, "IsConfirmed": { "description": "IsConfirmed.", "type": "boolean", "nullable": true, "example": true }, "Coordinates": { "$ref": "#/components/schemas/Coordinates" } } }