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 "bio": { 14 "type": "string", 15 "description": "Artist bio or description.", 16 "maxLength": 2560, 17 "maxGraphemes": 256 18 }, 19 "createdAt": { 20 "type": "string", 21 "format": "datetime", 22 "description": "Timestamp when the profile was created." 23 }, 24 "updatedAt": { 25 "type": "string", 26 "format": "datetime", 27 "description": "Timestamp when the profile was last updated." 28 } 29 } 30 } 31 } 32 } 33}