Wrike · Schema

Project

Work ManagementProject ManagementCollaborationProductivityWorkflow AutomationTask Management

Properties

Name Type Description
authorId string
ownerIds array
status string
startDate string
endDate string
createdDate string
View JSON Schema on GitHub

JSON Schema

wrike-project-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Project",
  "title": "Project",
  "type": "object",
  "properties": {
    "authorId": {
      "type": "string"
    },
    "ownerIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "status": {
      "type": "string",
      "enum": [
        "Green",
        "Yellow",
        "Red",
        "Completed",
        "OnHold",
        "Cancelled"
      ]
    },
    "startDate": {
      "type": "string",
      "format": "date"
    },
    "endDate": {
      "type": "string",
      "format": "date"
    },
    "createdDate": {
      "type": "string",
      "format": "date-time"
    }
  }
}