A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at feat/feed-generator 78 lines 2.1 kB view raw
1{ 2 "lexicon": 1, 3 "id": "app.rocksky.actor.defs", 4 "defs": { 5 "profileViewDetailed": { 6 "type": "object", 7 "properties": { 8 "id": { 9 "type": "string", 10 "description": "The unique identifier of the actor." 11 }, 12 "did": { 13 "type": "string", 14 "description": "The DID of the actor." 15 }, 16 "handle": { 17 "type": "string", 18 "description": "The handle of the actor." 19 }, 20 "displayName": { 21 "type": "string", 22 "description": "The display name of the actor." 23 }, 24 "avatar": { 25 "type": "string", 26 "description": "The URL of the actor's avatar image.", 27 "format": "uri" 28 }, 29 "createdAt": { 30 "type": "string", 31 "description": "The date and time when the actor was created.", 32 "format": "datetime" 33 }, 34 "updatedAt": { 35 "type": "string", 36 "description": "The date and time when the actor was last updated.", 37 "format": "datetime" 38 } 39 } 40 }, 41 "profileViewBasic": { 42 "type": "object", 43 "properties": { 44 "id": { 45 "type": "string", 46 "description": "The unique identifier of the actor." 47 }, 48 "did": { 49 "type": "string", 50 "description": "The DID of the actor." 51 }, 52 "handle": { 53 "type": "string", 54 "description": "The handle of the actor." 55 }, 56 "displayName": { 57 "type": "string", 58 "description": "The display name of the actor." 59 }, 60 "avatar": { 61 "type": "string", 62 "description": "The URL of the actor's avatar image.", 63 "format": "uri" 64 }, 65 "createdAt": { 66 "type": "string", 67 "description": "The date and time when the actor was created.", 68 "format": "datetime" 69 }, 70 "updatedAt": { 71 "type": "string", 72 "description": "The date and time when the actor was last updated.", 73 "format": "datetime" 74 } 75 } 76 } 77 } 78}