this string has no description
0
club.hause.podcast.listen
30 lines 1.0 kB view raw
1{ 2 "lexicon": 1, 3 "id": "club.hause.podcast.listen", 4 "defs": { 5 "main": { 6 "type": "record", 7 "description": "A play event for a single podcast episode. The composite key for the played episode is (showRef.guid, episodeRef.guid) — either alone is not unique. Currently minimal; optional progress / completion / playbackSpeed fields can be added later without a breaking change.", 8 "key": "tid", 9 "record": { 10 "type": "object", 11 "required": ["showRef", "episodeRef", "createdAt"], 12 "properties": { 13 "showRef": { 14 "type": "ref", 15 "ref": "club.hause.podcast.defs#showRef" 16 }, 17 "episodeRef": { 18 "type": "ref", 19 "ref": "club.hause.podcast.defs#episodeRef" 20 }, 21 "createdAt": { 22 "type": "string", 23 "format": "datetime", 24 "description": "When the listen happened. Wall-clock at the client; servers MUST NOT rewrite this." 25 } 26 } 27 } 28 } 29 } 30}