{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CatalogResourceRef", "title": "CatalogResourceRef", "description": "Short-hand descriptor of a catalog resource.", "type": "object", "properties": { "id": { "$ref": "#/components/schemas/CatalogResourceId" }, "name": { "description": "The name of the resource.", "type": "string", "nullable": true }, "integration": { "$ref": "#/components/schemas/IntegrationRef" }, "type": { "$ref": "#/components/schemas/CatalogResourceType" }, "config": { "$ref": "#/components/schemas/CatalogResourceConfig" } }, "required": [ "id", "name", "type", "config", "integration" ] }