atproto blogging
1{
2 "lexicon": 1,
3 "id": "tools.ozone.setting.defs",
4 "defs": {
5 "option": {
6 "type": "object",
7 "required": [
8 "key",
9 "value",
10 "did",
11 "scope",
12 "createdBy",
13 "lastUpdatedBy"
14 ],
15 "properties": {
16 "createdAt": {
17 "type": "string",
18 "format": "datetime"
19 },
20 "createdBy": {
21 "type": "string",
22 "format": "did"
23 },
24 "description": {
25 "type": "string",
26 "maxLength": 10240,
27 "maxGraphemes": 1024
28 },
29 "did": {
30 "type": "string",
31 "format": "did"
32 },
33 "key": {
34 "type": "string",
35 "format": "nsid"
36 },
37 "lastUpdatedBy": {
38 "type": "string",
39 "format": "did"
40 },
41 "managerRole": {
42 "type": "string",
43 "knownValues": [
44 "tools.ozone.team.defs#roleModerator",
45 "tools.ozone.team.defs#roleTriage",
46 "tools.ozone.team.defs#roleAdmin",
47 "tools.ozone.team.defs#roleVerifier"
48 ]
49 },
50 "scope": {
51 "type": "string",
52 "knownValues": [
53 "instance",
54 "personal"
55 ]
56 },
57 "updatedAt": {
58 "type": "string",
59 "format": "datetime"
60 },
61 "value": {
62 "type": "unknown"
63 }
64 }
65 }
66 }
67}