| Parameter | Type | Description | Example |
|---|---|---|---|
| object | HttpApiRequestContract | ||
| headerParameters | array | The request header parameters. | |
| HttpApiParameter | The parameter definition. | ||
| queryParameters | array | The query parameters. | |
| HttpApiParameter | The parameter definition. | ||
| pathParameters | array | The path parameters. | |
| HttpApiParameter | The parameter definition. | ||
| body | object | The body parameters. | |
| description | string | The parameter description. | This is a description. |
| example | string | The sample value. | {"result":"ok"} |
| contentType | string | The content type of the request body. | application/json |
| jsonSchema | string | The JSON definition description of the request body. | { "type": "object", "required": [ "result" ], "properties": { "result": { "type": "string", "description": "Operation result. 'ok' indicates success." } } } |