Properties
| Name | Type | Description |
|---|---|---|
| Products | array | Products offered with the service. |
| CustomerProducts | array | Products offered specifically to customers. |
| Cursor | string | Unique identifier of the last and hence oldest product returned. This can be used in `Limitation` in a subsequent request to fetch the next batch of older products. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProductResult",
"title": "Product result",
"required": [
"CustomerProducts",
"Products"
],
"type": "object",
"properties": {
"Products": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Product"
},
"description": "Products offered with the service."
},
"CustomerProducts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Product"
},
"description": "Products offered specifically to customers."
},
"Cursor": {
"type": "string",
"description": "Unique identifier of the last and hence oldest product returned. This can be used in `Limitation` in a subsequent request to fetch the next batch of older products.",
"format": "uuid",
"nullable": true
}
},
"additionalProperties": false,
"x-schema-id": "ProductResult"
}