{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateCatalogResourceMappingResourceByConfig", "title": "CreateCatalogResourceMappingResourceByConfig", "type": "object", "properties": { "integration_instance": { "description": "The `id` or `name` of the integration instance the resource belongs to.", "type": "string", "example": "aws-lambda-prod" }, "type": { "$ref": "#/components/schemas/CatalogResourceType" }, "config": { "$ref": "#/components/schemas/CatalogResourceConfig" } }, "additionalProperties": false, "required": [ "integration_instance", "type", "config" ] }