Properties
| Name | Type | Description |
|---|---|---|
| ResourceBlocks | array | The resource blocks colliding with the interval or matching the filter parameters. |
| Cursor | string | Unique identifier of the last returned resource block. This can be used in `Limitation` in a subsequent request to fetch the next batch of resource blocks. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ResourceBlockResult",
"title": "ResourceBlockResult",
"required": [
"ResourceBlocks"
],
"type": "object",
"properties": {
"ResourceBlocks": {
"maxItems": 1000,
"type": "array",
"items": {
"$ref": "#/components/schemas/ResourceBlock"
},
"description": "The resource blocks colliding with the interval or matching the filter parameters."
},
"Cursor": {
"type": "string",
"description": "Unique identifier of the last returned resource block. This can be used in `Limitation` in a subsequent request to fetch the next batch of resource blocks.",
"format": "uuid",
"nullable": true
}
},
"additionalProperties": false,
"x-schema-id": "ResourceBlockResult"
}