this string has no description
0
club.hause.podcast.subscription
26 lines 830 B view raw
1{ 2 "lexicon": 1, 3 "id": "club.hause.podcast.subscription", 4 "defs": { 5 "main": { 6 "type": "record", 7 "description": "A user's subscription to a podcast show. One record per show; clients SHOULD enforce uniqueness on (repo, showRef.guid) at write time and on read by deduping records that share a guid (keeping the earliest createdAt).", 8 "key": "tid", 9 "record": { 10 "type": "object", 11 "required": ["showRef", "createdAt"], 12 "properties": { 13 "showRef": { 14 "type": "ref", 15 "ref": "club.hause.podcast.defs#showRef" 16 }, 17 "createdAt": { 18 "type": "string", 19 "format": "datetime", 20 "description": "When the user subscribed. Used for ordering the subscription list." 21 } 22 } 23 } 24 } 25 } 26}