WIP: enh(import): import deck json exports

Signed-off-by: Max <max@nextcloud.com>
This commit is contained in:
Max
2023-07-12 13:03:17 +02:00
committed by Julius Härtl
parent 724a12c71f
commit 507510f60b
4 changed files with 273 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
{
"type": "object",
"properties": {
"uidRelation": {
"type": "object",
"comment": "Relationship between Trello and Nextcloud usernames",
"example": {
"johndoe": "admin"
}
},
"owner": {
"type": "string",
"required": true,
"comment": "Nextcloud owner username"
},
"color": {
"type": "string",
"required": true,
"pattern": "^[0-9a-fA-F]{6}$",
"comment": "Default color for the board. If you don't inform, the default color will be used.",
"default": "0800fd"
}
}
}