{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IntegrationRuntime", "title": "IntegrationRuntime", "type": "object", "required": [ "type" ], "properties": { "type": { "type": "string", "description": "Type of integration runtime.", "enum": [ "Managed", "SelfHosted" ] }, "description": { "type": "string" } } }