Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/tools/openapi-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The process involves these main steps when you use `OpenAPIToolset`:

1. **Initialization & Parsing**:
* You provide the OpenAPI specification to `OpenAPIToolset` either as a Python dictionary, a JSON string, or a YAML string.
* The toolset internally parses the spec, resolving any internal references (`$ref`) to understand the complete API structure.
* The toolset internally parses the spec, resolving any internal references (`$ref`) to understand the complete API structure. This includes support for resolving references in the `$defs` section of the OpenAPI schema.

2. **Operation Discovery**:
* It identifies all valid API operations (e.g., `GET`, `POST`, `PUT`, `DELETE`) defined within the `paths` object of your specification.
Expand Down