Properties
| Name | Type | Description |
|---|---|---|
| RoutingRules | array | Collection of routing rules. |
| Cursor | string | Unique identifier of the item one newer in time order than the items to be returned. If Cursor is not specified, i.e. null, then the latest or most recent items will be returned. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RoutingRuleResult",
"title": "RoutingRuleResult",
"required": [
"RoutingRules"
],
"type": "object",
"properties": {
"RoutingRules": {
"maxItems": 1000,
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutingRule"
},
"description": "Collection of routing rules."
},
"Cursor": {
"type": "string",
"description": "Unique identifier of the item one newer in time order than the items to be returned. If Cursor is not specified, i.e. null, then the latest or most recent items will be returned.",
"format": "uuid",
"nullable": true
}
},
"additionalProperties": false,
"x-schema-id": "RoutingRuleResult"
}