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