split_openapi
Split large OpenAPI specifications into smaller, manageable files. Provide the input file path and output directory to organize and streamline API documentation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiPath | Yes | Absolute path to the input OpenAPI definition file. | |
outputDir | Yes | Absolute path to the directory for split output files. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apiPath": {
"description": "Absolute path to the input OpenAPI definition file.",
"type": "string"
},
"outputDir": {
"description": "Absolute path to the directory for split output files.",
"type": "string"
}
},
"required": [
"apiPath",
"outputDir"
],
"type": "object"
}