We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
service Entity { rpc CreateEntity (CreateEntityRequest) returns (EntityResponse) { option (google.api.http) = { post : "/plugins/{plugin}/entities" body: "properties" }; }; \.... } message CreateEntityRequest { string id = 1; string plugin = 2; string source = 3; string owner = 4; string type = 5; google.protobuf.Value properties = 6; }
"/plugins/{plugin}/entities": { "post": { "operationId": "Entity_CreateEntity", "responses": { "200": { "description": "A successful response.", "schema": { "$ref": "#/definitions/v1EntityResponse" } }, "default": { "description": "An unexpected error response.", "schema": { "$ref": "#/definitions/rpcStatus" } } }, "parameters": [ { "name": "plugin", "in": "path", "required": true, "type": "string" }, { "name": "body", "in": "body", "required": true, "schema": { "type": "object" } }, { "name": "id", "in": "query", "required": false, "type": "string" }, { "name": "source", "in": "query", "required": false, "type": "string" }, { "name": "owner", "in": "query", "required": false, "type": "string" }, { "name": "type", "in": "query", "required": false, "type": "string" } ], "tags": [ "Entity" ] } },
0.1.0 (Default)
Windows11 x86
No response
None
The text was updated successfully, but these errors were encountered:
OdysseusC
No branches or pull requests
What happened?
Snippet
Generate Swagger Docs
Version
0.1.0 (Default)
What OS are you seeing the problem on?
Windows11 x86
Relevant log output
No response
Other
None
Contact Details
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: