Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Tag.json « Configuration « src - git.mdns.eu/nextcloud/passwords-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 335870ed178a1cd3a3ab8fc706c0af4afaee87d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
    "id": {
        "type": "string",
        "match": "",
        "writeable": false
    },
    "revision": {
        "type": "string",
        "match": "",
        "writeable": false
    },
    "label": {
        "type": "string",
        "match": ".+{1,64}",
        "writeable": true
    },
    "color": {
        "type": "string",
        "match": ".+{1,7}",
        "writeable": true
    },
    "hidden": {
        "type": "boolean",
        "writeable": true
    },
    "trashed": {
        "type": "boolean",
        "writeable": false
    },
    "favorite": {
        "type": "boolean",
        "writeable": true
    },
    "cseType": {
        "type": "string",
        "match": "none|CSEv1r1",
        "writeable": true
    },
    "cseKey": {
        "type": "string",
        "match": "",
        "writeable": true
    },
    "sseType": {
        "type": "string",
        "match": "none|SSEv1r1|SSEv1r2|SSEv2r1",
        "writeable": false
    },
    "client": {
        "type": "string",
        "writeable": false
    },
    "edited": {
        "type": "date",
        "writeable": true
    },
    "created": {
        "type": "date",
        "writeable": false
    },
    "updated": {
        "type": "date",
        "writeable": false
    },
    "revisions": {
        "type": "TagCollection",
        "match": "",
        "writeable": true
    },
    "passwords": {
        "type": "PasswordCollection",
        "match": "",
        "writeable": true
    }
}