{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LocationUpdate", "title": "LocationUpdate", "type": "object", "description": "Request body for updating an existing location", "properties": { "name": { "type": "string" }, "job_loc_code": { "type": "string" }, "address": { "type": "string" }, "city": { "type": "string" }, "state": { "type": "string" }, "zip_code": { "type": "string" }, "country": { "type": "string" }, "timezone": { "type": "string" }, "active": { "type": "boolean" } } }