search_spryker_documentation_path
Search Spryker documentation path URLs using natural language queries to quickly locate relevant resources within the Spryker ecosystem.
Instructions
To search Spryker documentation path urls by query
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | The natural language query to search Spryker documentation path url |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"query": {
"description": "The natural language query to search Spryker documentation path url",
"maxLength": 120,
"minLength": 5,
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}