Wrike · Schema
Account
Work ManagementProject ManagementCollaborationProductivityWorkflow AutomationTask Management
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| dateFormat | string | |
| firstDayOfWeek | string | |
| workDays | array | |
| rootFolderId | string | |
| recycleBinId | string | |
| createdDate | string | |
| subscription | object | |
| metadata | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Account",
"title": "Account",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"dateFormat": {
"type": "string"
},
"firstDayOfWeek": {
"type": "string"
},
"workDays": {
"type": "array",
"items": {
"type": "string"
}
},
"rootFolderId": {
"type": "string"
},
"recycleBinId": {
"type": "string"
},
"createdDate": {
"type": "string",
"format": "date-time"
},
"subscription": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"suspended": {
"type": "boolean"
},
"paid": {
"type": "boolean"
}
}
},
"metadata": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Metadata"
}
}
}
}