-
Notifications
You must be signed in to change notification settings - Fork 35
Open
Labels
questionFurther information is requestedFurther information is requested
Description
Hi,
I am trying to parse an OpenAPI 3.0 spec document (like the ones shown below) and convert operationIds into JSON-RPC methods. I have a generic function that can translate the keyword arguments into a REST API call.
However, for JSON-RPC, I would like method signature not derived from the generic function but from the parameter schema in the OpenAPI 3.0 spec. Currently, I see that add_method_route() seems to derive it from function signature and there doesn't seem to be a way to override.
Is there a way to achive this ?
example OpenAPI 3.0 document
{
"openapi": "3.0.0",
"info": {"title": "Product API (3.0)", "version": "1.0.0"},
"paths": {
"/products": {
"get": {
"operationId": "listProducts",
"summary": "List all products",
"responses": {"200": {"description": "A list of products"}},
},
"post": {
"operationId": "createProduct",
"summary": "Create a new product",
"requestBody": {
"required": True,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"name": {"type": "string"},
"price": {"type": "number"},
},
"required": ["name", "price"],
}
}
},
},
"responses": {"201": {"description": "Product created"}},
},
},
"/products/{product_id}": {
"get": {
"operationId": "getProduct",
"summary": "Get product by ID",
"parameters": [
{
"name": "product_id",
"in": "path",
"required": True,
"schema": {"type": "string"},
}
],
"responses": {"200": {"description": "A product"}},
}
},
},
}Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested