Wrike · Schema

CustomField

Work ManagementProject ManagementCollaborationProductivityWorkflow AutomationTask Management

Properties

Name Type Description
id string
accountId string
title string
type string
hidden boolean
shareds array
settings object
View JSON Schema on GitHub

JSON Schema

wrike-customfield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomField",
  "title": "CustomField",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "accountId": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "Text",
        "DropDown",
        "Numeric",
        "Currency",
        "Percentage",
        "Date",
        "Duration",
        "Checkbox",
        "Bulk"
      ]
    },
    "hidden": {
      "type": "boolean"
    },
    "shareds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "settings": {
      "type": "object"
    }
  }
}