{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SecretStoreProperties", "title": "SecretStoreProperties", "type": "object", "properties": { "environment": { "type": "string" }, "application": { "type": "string" }, "provisioningState": { "$ref": "#/components/schemas/ProvisioningState", "readOnly": true }, "status": { "$ref": "#/components/schemas/ResourceStatus", "readOnly": true }, "type": { "type": "string", "default": "generic", "enum": [ "generic", "certificate", "basicAuthentication", "azureWorkloadIdentity", "awsIRSA" ] }, "data": { "type": "object", "additionalProperties": { "$ref": "#/components/schemas/SecretValueProperties" } }, "resource": { "type": "string" } }, "required": [ "data" ] }