{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AreaCreate", "title": "AreaCreate", "type": "object", "description": "Request body for creating a new area", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Area name" }, "type": { "type": "integer", "description": "Area type: 1=area, 2=school" } } }