Wrike · Schema

Profile

Work ManagementProject ManagementCollaborationProductivityWorkflow AutomationTask Management

Properties

Name Type Description
accountId string
email string
role string
external boolean
admin boolean
owner boolean
View JSON Schema on GitHub

JSON Schema

wrike-profile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Profile",
  "title": "Profile",
  "type": "object",
  "properties": {
    "accountId": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "role": {
      "type": "string",
      "enum": [
        "User",
        "Collaborator"
      ]
    },
    "external": {
      "type": "boolean"
    },
    "admin": {
      "type": "boolean"
    },
    "owner": {
      "type": "boolean"
    }
  }
}