atproto blogging
at main 55 lines 1.3 kB view raw
1{ 2 "lexicon": 1, 3 "id": "chat.bsky.actor.defs", 4 "defs": { 5 "profileViewBasic": { 6 "type": "object", 7 "required": [ 8 "did", 9 "handle" 10 ], 11 "properties": { 12 "associated": { 13 "type": "ref", 14 "ref": "app.bsky.actor.defs#profileAssociated" 15 }, 16 "avatar": { 17 "type": "string", 18 "format": "uri" 19 }, 20 "chatDisabled": { 21 "type": "boolean", 22 "description": "Set to true when the actor cannot actively participate in conversations" 23 }, 24 "did": { 25 "type": "string", 26 "format": "did" 27 }, 28 "displayName": { 29 "type": "string", 30 "maxLength": 640, 31 "maxGraphemes": 64 32 }, 33 "handle": { 34 "type": "string", 35 "format": "handle" 36 }, 37 "labels": { 38 "type": "array", 39 "items": { 40 "type": "ref", 41 "ref": "com.atproto.label.defs#label" 42 } 43 }, 44 "verification": { 45 "type": "ref", 46 "ref": "app.bsky.actor.defs#verificationState" 47 }, 48 "viewer": { 49 "type": "ref", 50 "ref": "app.bsky.actor.defs#viewerState" 51 } 52 } 53 } 54 } 55}