{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LocationCreate", "title": "LocationCreate", "type": "object", "description": "Request body for creating a new location", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Location name" }, "job_loc_code": { "type": "string", "description": "Job location code" }, "address": { "type": "string", "description": "Street address" }, "city": { "type": "string" }, "state": { "type": "string" }, "zip_code": { "type": "string" }, "country": { "type": "string" }, "timezone": { "type": "string" } } }