{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApiImplementationService", "title": "API Implementation Service", "description": "A Gateway service that implements an API", "type": "object", "properties": { "control_plane_id": { "type": "string", "format": "uuid", "example": "9f5061ce-78f6-4452-9108-ad7c02821fd5" }, "id": { "type": "string", "format": "uuid", "example": "7710d5c4-d902-410b-992f-18b814155b53" }, "auth_strategy_sync_error": { "allOf": [ { "$ref": "#/components/schemas/AuthStrategyApiSyncError" } ], "readOnly": true, "x-speakeasy-ignore": true } }, "additionalProperties": false, "required": [ "control_plane_id", "id" ] }