{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ExportableEntity", "title": "ExportableEntity", "type": "object", "properties": { "name": { "type": "string", "description": "Entity type name" }, "description": { "type": "string", "description": "Entity description" }, "fields": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "Field name" }, "type": { "type": "string", "description": "Field data type" }, "description": { "type": "string", "description": "Field description" } } }, "description": "Available fields for export" } } }