org.testificate.dev.project.metadata
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "org.testificate.dev.project.metadata",
3
3
"defs": {
4
4
"main": {
5
-
"key": "any",
5
+
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"type",
11
11
"roles",
12
12
"name",
13
13
"createdAt"
14
14
],
15
15
"properties": {
16
16
"name": {
17
17
"type": "string",
18
18
"maxGraphemes": 32,
19
19
"minGraphemes": 3
20
20
},
21
21
"type": {
22
22
"ref": "org.testificate.dev.project.defs#type",
23
23
"type": "ref"
24
24
},
25
25
"roles": {
26
26
"type": "array",
27
27
"items": {
28
28
"ref": "org.testificate.dev.project.role",
29
29
"type": "ref"
30
30
}
31
31
},
32
32
"createdAt": {
33
33
"type": "string",
34
34
"format": "datetime"
35
35
}
36
36
}
37
37
}
38
38
}
39
39
},
40
40
"$type": "com.atproto.lexicon.schema",
41
41
"lexicon": 1,
42
42
"description": "A project's metadata."
43
43
}