{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LocationConstraint", "title": "LocationConstraint", "type": "object", "description": "Conditions for a meeting location", "properties": { "isRequired": { "type": "boolean" }, "suggestLocation": { "type": "boolean" }, "locations": { "type": "array", "items": { "$ref": "#/components/schemas/LocationConstraintItem" } } } }