Planable · Schema

Patch_Posts_Reorder Request

Social MediaContent CollaborationApproval WorkflowsSocial Media ManagementContent PublishingMarketing

Properties

Name Type Description
workspaceId string
postIds array
View JSON Schema on GitHub

JSON Schema

patch_posts_reorder-request.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://planable.io/schemas/patch_posts_reorder-request.json",
  "title": "Patch_Posts_Reorder Request",
  "type": "object",
  "properties": {
    "workspaceId": {
      "type": "string",
      "minLength": 1
    },
    "postIds": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1
      },
      "minItems": 1,
      "maxItems": 500
    }
  },
  "required": [
    "workspaceId",
    "postIds"
  ]
}