action openapi_save_definition { label: "Saves the provided Swagger definition" description: "Saves the provided Swagger definition; the owner must match the token owner. The version will be extracted from the Swagger definitions itself." provider: openapi method: POST path: "/apis/{owner}/{api}" encoding: json input: { type: "object" properties: { api: { type: "string" } force: { type: "string" } owner: { type: "string" } private: { type: "string" } } required: ["api", "owner"] additionalProperties: false } output: { type: "object" additionalProperties: true } }