Represents a non-body input parameter (path, query, or header) passed to an operation.
Document| Property | Type | Description |
|---|---|---|
| in | Text | Location of the argument in the HTTP request. Must be strictly one of: 'path', 'query', or 'header'. Do not use 'body' here, as request body payloads are defined using the operation 'payload' field. |
| name | Text | Name of the argument. If 'in' is 'path', this must match the variable fragment in the httpPath (e.g., 'id' for '/product/:id'). |
| type | Text | Data type or type reference of the argument (e.g., 'string', 'integer', 'boolean', or a custom type name). |