action openapi_generator_generate_server_for_language { label: "Generates a server library" description: "Accepts a `GeneratorInput` options map for spec location and generation options." provider: openapi_generator method: POST path: "/api/gen/servers/{framework}" encoding: json input: { type: "object" properties: { authorizationValue: { type: "object" properties: { keyName: { type: "string" } type: { type: "string" } urlMatcher: { type: "object" } value: { type: "string" } } } framework: { type: "string" } openAPIUrl: { type: "string" } options: { type: "object" } spec: { type: "object" } } required: ["framework"] additionalProperties: false } output: { type: "object" additionalProperties: true } }