{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Catalog", "title": "Catalog", "type": "object", "properties": { "id": { "type": "string", "description": "Catalog identifier" }, "name": { "type": "string", "description": "Catalog name" }, "catalogVersions": { "type": "array", "items": { "$ref": "#/components/schemas/CatalogVersion" } } } }