{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ManagedClusterAddonProfile", "title": "ManagedClusterAddonProfile", "type": "object", "description": "A Kubernetes add-on profile for a managed cluster.", "properties": { "enabled": { "type": "boolean", "description": "Whether the add-on is enabled.", "example": true }, "config": { "type": "object", "additionalProperties": { "type": "string" }, "description": "Key-value pairs for configuring an add-on.", "example": "example_value" }, "identity": { "type": "object", "readOnly": true, "properties": { "resourceId": { "type": "string" }, "clientId": { "type": "string" }, "objectId": { "type": "string" } }, "example": "example_value" } }, "required": [ "enabled" ] }