Salesforce · Schema
GetListViewsforanObject
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| count | integer | |
| currentPageToken | string | |
| currentPageUrl | string | |
| lists | array | |
| nextPageToken | ['string', 'null'] | |
| nextPageUrl | ['string', 'null'] | |
| objectApiName | string | |
| pageSize | integer | |
| previousPageToken | ['string', 'null'] | |
| previousPageUrl | ['string', 'null'] | |
| queryString | ['string', 'null'] | |
| recentListsOnly | boolean |
JSON Schema
{
"type": "object",
"properties": {
"count": {
"type": "integer",
"example": 42
},
"currentPageToken": {
"type": "string",
"example": "CAUQAA"
},
"currentPageUrl": {
"type": "string",
"example": "https://www.example.com"
},
"lists": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object",
"properties": {
"apiName": {
"type": "string",
"example": "example_value"
},
"id": {
"type": "string",
"example": "abc123"
},
"label": {
"type": "string",
"example": "Example Title"
},
"url": {
"type": "string",
"example": "https://www.example.com"
}
},
"required": [
"apiName",
"id",
"label",
"url"
]
}
},
"nextPageToken": {
"type": "['string', 'null']",
"example": "CAUQAA"
},
"nextPageUrl": {
"type": "['string', 'null']",
"example": "https://www.example.com"
},
"objectApiName": {
"type": "string",
"example": "example_value"
},
"pageSize": {
"type": "integer",
"example": 10
},
"previousPageToken": {
"type": "['string', 'null']",
"example": "CAUQAA"
},
"previousPageUrl": {
"type": "['string', 'null']",
"example": "https://www.example.com"
},
"queryString": {
"type": "['string', 'null']",
"example": "example_value"
},
"recentListsOnly": {
"type": "boolean",
"example": true
}
},
"required": [
"count",
"currentPageToken",
"currentPageUrl",
"lists",
"nextPageToken",
"nextPageUrl",
"objectApiName",
"pageSize",
"previousPageToken",
"previousPageUrl",
"queryString",
"recentListsOnly"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "GetListViewsforanObject"
}