{ "$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.", "required": [ "enabled" ], "properties": { "enabled": { "type": "boolean", "description": "Whether the add-on is enabled or not.", "example": true }, "config": { "type": "object", "additionalProperties": { "type": "string" }, "description": "Key-value pairs for configuring an add-on.", "example": "example_value" }, "identity": { "$ref": "#/components/schemas/UserAssignedIdentity", "readOnly": true } } }