{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"baseId": {
"type": "string",
"description": "Base ID containing the table"
},
"tableIdOrName": {
"type": "string",
"description": "Table ID or name to list records from"
},
"timeZone": {
"type": "string",
"description": "Time zone for date formatting"
},
"userLocale": {
"type": "string",
"description": "User locale for date formatting"
},
"pageSize": {
"type": "number",
"description": "Number of records per request (max 100)"
},
"maxRecords": {
"type": "number",
"description": "Maximum number of records to return"
},
"offset": {
"type": "string",
"description": "Offset for pagination"
},
"view": {
"type": "string",
"description": "View ID or name to filter records"
},
"filterByFormula": {
"type": "string",
"description": "Formula to filter records"
},
"cellFormat": {
"type": "string",
"enum": [
"json",
"string"
],
"description": "Format of cell values"
},
"fields": {
"type": "array",
"items": {
"type": "string"
},
"description": "Fields to include in the result"
},
"returnFieldsByFieldId": {
"type": "boolean",
"description": "Return field objects by field ID"
}
},
"required": [
"PCID",
"baseId",
"tableIdOrName"
]
}