Wrike · Schema

Folder

Work ManagementProject ManagementCollaborationProductivityWorkflow AutomationTask Management

Properties

Name Type Description
id string
title string
color string
childIds array
scope string
hasAttachments boolean
attachmentCount integer
description string
briefDescription string
customColumnIds array
project object
shareds array
metadata array
View JSON Schema on GitHub

JSON Schema

wrike-folder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Folder",
  "title": "Folder",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "childIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "scope": {
      "type": "string",
      "enum": [
        "WsFolder",
        "WsRoot",
        "RbFolder",
        "RbRoot",
        "WsSpace",
        "WsPrivate"
      ]
    },
    "hasAttachments": {
      "type": "boolean"
    },
    "attachmentCount": {
      "type": "integer"
    },
    "description": {
      "type": "string"
    },
    "briefDescription": {
      "type": "string"
    },
    "customColumnIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "project": {
      "$ref": "#/components/schemas/Project"
    },
    "shareds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "metadata": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Metadata"
      }
    }
  }
}