at main 1.0 kB view raw
1{ 2 "lexicon": 1, 3 "id": "fm.plyr.actor.profile", 4 "defs": { 5 "main": { 6 "type": "record", 7 "description": "A plyr.fm artist profile with music-specific metadata.", 8 "key": "literal:self", 9 "record": { 10 "type": "object", 11 "required": ["createdAt"], 12 "properties": { 13 "avatar": { 14 "type": "string", 15 "format": "uri", 16 "description": "URL to avatar image." 17 }, 18 "bio": { 19 "type": "string", 20 "description": "Artist bio or description.", 21 "maxLength": 2560, 22 "maxGraphemes": 256 23 }, 24 "createdAt": { 25 "type": "string", 26 "format": "datetime", 27 "description": "Timestamp when the profile was created." 28 }, 29 "updatedAt": { 30 "type": "string", 31 "format": "datetime", 32 "description": "Timestamp when the profile was last updated." 33 } 34 } 35 } 36 } 37 } 38}