{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/KubernetesMetadataExtension", "title": "KubernetesMetadataExtension", "allOf": [ { "$ref": "#/components/schemas/Extension" }, { "type": "object", "properties": { "kind": { "type": "string", "enum": [ "kubernetesMetadata" ] }, "annotations": { "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "type": "object", "additionalProperties": { "type": "string" } } }, "required": [ "kind" ] } ] }