Planable · Schema
Get_Pages Response 200
Social MediaContent CollaborationApproval WorkflowsSocial Media ManagementContent PublishingMarketing
Properties
| Name | Type | Description |
|---|---|---|
| data | array | |
| pagination | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://planable.io/schemas/get_pages-response-200.json",
"title": "Get_Pages Response 200",
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"platform": {
"type": "string"
},
"workspaceId": {
"type": "string"
},
"createdAt": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"isConnected": {
"type": "boolean"
},
"profilePicture": {
"type": [
"string",
"null"
]
},
"link": {
"type": [
"string",
"null"
]
}
},
"required": [
"id",
"name",
"platform",
"workspaceId",
"createdAt",
"isConnected",
"profilePicture",
"link"
]
}
},
"pagination": {
"type": "object",
"properties": {
"offset": {
"type": "number"
},
"limit": {
"type": "number"
},
"hasMore": {
"type": "boolean"
}
},
"required": [
"offset",
"limit",
"hasMore"
]
}
},
"required": [
"data",
"pagination"
]
}