Wrike · Schema

Group

Work ManagementProject ManagementCollaborationProductivityWorkflow AutomationTask Management

Properties

Name Type Description
id string
title string
memberIds array
childIds array
scope string
avatarUrl string
metadata array
View JSON Schema on GitHub

JSON Schema

wrike-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Group",
  "title": "Group",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "memberIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "childIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "scope": {
      "type": "string"
    },
    "avatarUrl": {
      "type": "string",
      "format": "uri"
    },
    "metadata": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Metadata"
      }
    }
  }
}