{ "$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" ] }