Planable · Schema

Get_Posts_{Id}_Comments Response 200

Social MediaContent CollaborationApproval WorkflowsSocial Media ManagementContent PublishingMarketing

Properties

Name Type Description
data array
pagination object
View JSON Schema on GitHub

JSON Schema

get_posts_{id}_comments-response-200.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://planable.io/schemas/get_posts_{id}_comments-response-200.json",
  "title": "Get_Posts_{Id}_Comments Response 200",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "postId": {
            "type": "string"
          },
          "text": {
            "type": "string"
          },
          "authorId": {
            "type": "string"
          },
          "teamOnly": {
            "type": "boolean"
          },
          "createdAt": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "id",
          "postId",
          "text",
          "authorId",
          "teamOnly",
          "createdAt"
        ]
      }
    },
    "pagination": {
      "type": "object",
      "properties": {
        "offset": {
          "type": "number"
        },
        "limit": {
          "type": "number"
        },
        "hasMore": {
          "type": "boolean"
        }
      },
      "required": [
        "offset",
        "limit",
        "hasMore"
      ]
    }
  },
  "required": [
    "data",
    "pagination"
  ]
}