kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.5 KiB
54 lines
1.5 KiB
3 years ago
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"$ref": "#/definitions/UserPreferences",
|
||
|
"definitions": {
|
||
|
"UserPreferences": {
|
||
|
"type": "object",
|
||
|
"additionalProperties": false,
|
||
|
"properties": {
|
||
|
"hide_mail": {
|
||
|
"type": "boolean"
|
||
|
},
|
||
|
"time_zone": {
|
||
|
"type": ["string", "null"]
|
||
|
},
|
||
|
"warn_on_leaving_unsaved": {
|
||
|
"type": "boolean"
|
||
|
},
|
||
|
"comments_sorting": {
|
||
3 years ago
|
"type": "string",
|
||
|
"enum": ["asc", "desc"]
|
||
3 years ago
|
},
|
||
|
"auto_hide_popups": {
|
||
|
"type": "boolean"
|
||
|
},
|
||
|
"daily_reminders": {
|
||
|
"$ref": "#/definitions/DailyReminders"
|
||
|
}
|
||
|
},
|
||
3 years ago
|
"title": "UserPreferences"
|
||
3 years ago
|
},
|
||
|
"DailyReminders": {
|
||
|
"type": "object",
|
||
|
"additionalProperties": false,
|
||
|
"properties": {
|
||
|
"enabled": {
|
||
|
"type": "boolean"
|
||
|
},
|
||
|
"times": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "string",
|
||
|
"format": "time"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"enabled",
|
||
|
"times"
|
||
|
],
|
||
|
"title": "DailyReminders"
|
||
|
}
|
||
|
}
|
||
|
}
|