load-api-operation-by-operationId
Retrieve specific API operations by operationId to integrate with LLM-powered development tools, enabling direct interaction with OpenAPI specifications.
Instructions
Load an operation by operationId
Input Schema
Name | Required | Description | Default |
---|---|---|---|
operationId | Yes | ||
specId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"operationId": {
"type": "string"
},
"specId": {
"type": "string"
}
},
"required": [
"specId",
"operationId"
],
"type": "object"
}