Collection of list views for an object
{ "type": "object", "description": "Collection of list views for an object", "properties": { "count": { "type": "integer", "example": 42 }, "currentPageToken": { "type": "string", "example": "CAUQAA" }, "nextPageToken": { "type": "string", "example": "CAUQAA" }, "previousPageToken": { "type": "string", "example": "CAUQAA" }, "results": { "type": "array", "example": [], "items": { "type": "object", "description": "Summary information about a list view", "properties": { "id": { "type": "string", "example": "abc123" }, "apiName": { "type": "string", "example": "example_value" }, "label": { "type": "string", "example": "Example Title" }, "url": { "type": "string", "example": "https://www.example.com" } } } } }, "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ListViewCollection" }