Planable · Schema

Patch_Posts_Reorder Response 200

Social MediaContent CollaborationApproval WorkflowsSocial Media ManagementContent PublishingMarketing

Properties

Name Type Description
data object
View JSON Schema on GitHub

JSON Schema

patch_posts_reorder-response-200.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://planable.io/schemas/patch_posts_reorder-response-200.json",
  "title": "Patch_Posts_Reorder Response 200",
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "posts": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "gridPosition": {
                "type": "number"
              }
            },
            "required": [
              "id",
              "gridPosition"
            ]
          }
        }
      },
      "required": [
        "posts"
      ]
    }
  },
  "required": [
    "data"
  ]
}