ApiSchemas
SecretNotFoundEncoded
One shape from the contract, as it appears on the wire.
Used by secrets.delete
JSON Schema
{
"type": "object",
"properties": {
"_tag": {
"type": "string",
"enum": [
"SecretNotFound"
]
},
"secretId": {
"$ref": "#/components/schemas/SecretId"
},
"name": {
"type": "string"
}
},
"required": [
"_tag"
],
"additionalProperties": false
}