{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InternalCredentialStorageProperties", "title": "InternalCredentialStorageProperties", "allOf": [ { "$ref": "#/components/schemas/CredentialStorageProperties" }, { "type": "object", "properties": { "kind": { "type": "string", "enum": [ "Internal" ] }, "secretName": { "type": "string", "readOnly": true } }, "required": [ "kind" ] } ] }