A website for the ATmosphereConf
at main 1.3 kB view raw
1{ 2 "lexicon": 1, 3 "id": "org.atmosphereconf.profile", 4 "defs": { 5 "main": { 6 "type": "record", 7 "description": "A conference attendee profile.", 8 "key": "literal:self", 9 "record": { 10 "type": "object", 11 "properties": { 12 "displayName": { 13 "type": "string", 14 "maxGraphemes": 64, 15 "maxLength": 640 16 }, 17 "description": { 18 "type": "string", 19 "description": "Free-form profile description text.", 20 "maxGraphemes": 256, 21 "maxLength": 2560 22 }, 23 "avatar": { 24 "type": "blob", 25 "description": "Profile picture for conference attendee", 26 "accept": ["image/png", "image/jpeg"], 27 "maxSize": 1000000 28 }, 29 "banner": { 30 "type": "blob", 31 "description": "Larger horizontal image to display behind profile view.", 32 "accept": ["image/png", "image/jpeg"], 33 "maxSize": 1000000 34 }, 35 "labels": { 36 "type": "union", 37 "description": "Self-label values for the conference profile.", 38 "refs": ["com.atproto.label.defs#selfLabels"] 39 }, 40 "createdAt": { "type": "string", "format": "datetime" } 41 } 42 } 43 } 44 } 45}