forked from
rocksky.app/rocksky
A decentralized music tracking and discovery platform built on AT Protocol 馃幍
1{
2 "lexicon": 1,
3 "id": "app.rocksky.radio.defs",
4 "defs": {
5 "radioViewBasic": {
6 "type": "object",
7 "properties": {
8 "id": {
9 "type": "string",
10 "description": "The unique identifier of the radio."
11 },
12 "name": {
13 "type": "string",
14 "description": "The name of the radio."
15 },
16 "description": {
17 "type": "string",
18 "description": "A brief description of the radio."
19 },
20 "createdAt": {
21 "type": "string",
22 "description": "The date and time when the radio was created.",
23 "format": "datetime"
24 }
25 }
26 },
27 "radioViewDetailed": {
28 "type": "object",
29 "properties": {
30 "id": {
31 "type": "string",
32 "description": "The unique identifier of the radio."
33 },
34 "name": {
35 "type": "string",
36 "description": "The name of the radio."
37 },
38 "description": {
39 "type": "string",
40 "description": "A brief description of the radio."
41 },
42 "website": {
43 "type": "string",
44 "description": "The website of the radio.",
45 "format": "uri"
46 },
47 "url": {
48 "type": "string",
49 "description": "The streaming URL of the radio.",
50 "format": "uri"
51 },
52 "genre": {
53 "type": "string",
54 "description": "The genre of the radio."
55 },
56 "logo": {
57 "type": "string",
58 "description": "The logo of the radio station."
59 },
60 "createdAt": {
61 "type": "string",
62 "description": "The date and time when the radio was created.",
63 "format": "datetime"
64 }
65 }
66 }
67 }
68}