1{
2 "lexicon": 1,
3 "id": "network.slices.waitlist.request",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "A request to join the waitlist",
8 "key": "literal:self",
9 "record": {
10 "type": "object",
11 "required": [
12 "slice",
13 "createdAt"
14 ],
15 "properties": {
16 "createdAt": {
17 "type": "string",
18 "description": "When the user joined the waitlist",
19 "format": "datetime"
20 },
21 "slice": {
22 "type": "string",
23 "description": "The AT URI of the slice being requested access to",
24 "format": "at-uri"
25 }
26 }
27 }
28 }
29 }
30}