open-vault/sdk/framework/testdata/responses.json
2023-04-04 18:27:20 -04:00

68 lines
1.5 KiB
JSON

{
"openapi": "3.0.2",
"info": {
"title": "HashiCorp Vault API",
"description": "HTTP API that gives you full access to Vault. All API routes are prefixed with `/v1/`.",
"version": "<vault_version>",
"license": {
"name": "Mozilla Public License 2.0",
"url": "https://www.mozilla.org/en-US/MPL/2.0"
}
},
"paths": {
"/foo": {
"description": "Synopsis",
"x-vault-unauthenticated": true,
"delete": {
"operationId": "kv-delete-foo",
"tags": [
"secrets"
],
"summary": "Delete stuff",
"responses": {
"204": {
"description": "empty body"
}
}
},
"get": {
"operationId": "kv-read-foo",
"tags": [
"secrets"
],
"summary": "My Summary",
"description": "My Description",
"responses": {
"202": {
"description": "Amazing",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/KvReadFooResponse"
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"KvReadFooResponse": {
"type": "object",
"properties": {
"field_a": {
"type": "string",
"description": "field_a description"
},
"field_b": {
"type": "boolean",
"description": "field_b description"
}
}
}
}
}
}