{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Department", "title": "Department", "type": "object", "properties": { "name": { "type": "string" }, "id": { "type": "string" } }, "required": [ "id", "name" ] }