this repo has no description
1{
2 "lexicon": 1,
3 "id": "sh.tangled.knot.policy",
4 "needsCbor": true,
5 "needsType": true,
6 "defs": {
7 "main": {
8 "type": "record",
9 "key": "tid",
10 "record": {
11 "type": "object",
12 "required": ["subject", "domain", "object", "action"],
13 "properties": {
14 "subject": {
15 "type": "string",
16 "description": "subject of the key"
17 },
18 "domain": {
19 "type": "string",
20 "description": "domain of the key"
21 },
22 "object": {
23 "type": "string",
24 "description": "object associated with the key"
25 },
26 "action": {
27 "type": "string",
28 "description": "action associated with the key"
29 }
30 }
31 }
32 }
33 }
34}