{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CatalogServiceApiMapping", "title": "CatalogServiceApiMapping", "description": "Represents an API mapping associated with a service in the catalog.", "type": "object", "properties": { "id": { "description": "The mapping ID.", "type": "string", "format": "uuid" }, "service_id": { "description": "The ID of the service.", "type": "string", "format": "uuid" }, "api_id": { "description": "The ID of the API.", "type": "string", "format": "uuid" }, "created_at": { "description": "Creation timestamp.", "type": "string", "format": "date-time" }, "updated_at": { "description": "Last update timestamp.", "type": "string", "format": "date-time" } }, "required": [ "id", "service_id", "api_id", "created_at", "updated_at" ] }