A music player that connects to your cloud/distributed storage.
1{
2 "lexicon": 1,
3 "id": "sh.diffuse.output.facet",
4 "defs": {
5 "main": {
6 "type": "record",
7 "record": {
8 "type": "object",
9 "required": ["id", "name"],
10 "properties": {
11 "id": {
12 "type": "string",
13 "description": "A unique identifier"
14 },
15 "cid": {
16 "type": "string",
17 "description": "A DASL CID representing the UTF8 encoded HTML (raw 0x55 codec)"
18 },
19 "createdAt": { "type": "string", "format": "datetime" },
20 "description": { "type": "string" },
21 "enabled": {
22 "type": "boolean",
23 "default": true,
24 "description": "Whether the facet is enabled or not"
25 },
26 "html": {
27 "type": "string",
28 "description": "The UTF8 HTML string that makes up the facet"
29 },
30 "kind": {
31 "type": "string",
32 "default": "interactive",
33 "enum": ["interactive", "prelude"],
34 "description": "A facet is by default interactive, but headless 'prelude' facets may also be created, these run before any main interactive facet is loaded."
35 },
36 "name": { "type": "string" },
37 "tags": { "type": "array", "items": { "type": "string" } },
38 "updatedAt": { "type": "string", "format": "datetime" },
39 "uri": {
40 "type": "string",
41 "description": "An optional URI that points at the facet; can be used to update this artifact"
42 }
43 }
44 }
45 }
46 }
47}