A music player that connects to your cloud/distributed storage.
at v4 41 lines 1.3 kB view raw
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 "html": { 22 "type": "string", 23 "description": "The UTF8 HTML string that makes up the facet" 24 }, 25 "kind": { 26 "type": "string", 27 "default": "interactive", 28 "enum": ["interactive", "prelude"], 29 "description": "A facet is by default interactive, but headless 'prelude' facets may also be created, these run before any main interactive facet is loaded." 30 }, 31 "name": { "type": "string" }, 32 "updatedAt": { "type": "string", "format": "datetime" }, 33 "uri": { 34 "type": "string", 35 "description": "An optional URI that points at the facet; can be used to update this artifact" 36 } 37 } 38 } 39 } 40 } 41}