atproto blogging
at main 27 lines 540 B view raw
1{ 2 "lexicon": 1, 3 "id": "chat.bsky.actor.declaration", 4 "defs": { 5 "main": { 6 "type": "record", 7 "description": "A declaration of a Bluesky chat account.", 8 "key": "literal:self", 9 "record": { 10 "type": "object", 11 "required": [ 12 "allowIncoming" 13 ], 14 "properties": { 15 "allowIncoming": { 16 "type": "string", 17 "knownValues": [ 18 "all", 19 "none", 20 "following" 21 ] 22 } 23 } 24 } 25 } 26 } 27}