{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://github.com/api-evangelist/apache-apisix/blob/main/json-schema/secret.json", "title": "Apache APISIX Secret", "description": "A Secret resource manages integration with external secret managers such as HashiCorp Vault or AWS Secrets Manager.", "type": "object", "properties": { "uri": { "type": "string", "description": "URI of the secret manager endpoint." }, "prefix": { "type": "string", "description": "Path prefix in the secret manager." }, "token": { "type": "string", "description": "Authentication token for the secret manager." } } }