{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/workers_secret-response",
"title": "workers_secret-response",
"properties": {
"name": {
"description": "The name of this secret, this is what will be used to access it inside the Worker.",
"example": "MY_SECRET",
"type": "string"
},
"type": {
"description": "The type of secret.",
"enum": [
"secret_text"
],
"example": "secret_text",
"type": "string"
}
},
"type": "object"
}