this string has no description
badge.json
edited
1{
2 "lexicon": 1,
3 "id": "one.eightyeightthirty.badge",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "A standard-format web badge for collecting and sharing.",
8 "key": "any",
9 "record": {
10 "type": "object",
11 "properties": {
12 "image": {
13 "type": "blob",
14 "description": "The image displayed for the badge, traditionally either 88x31 or 80x15.",
15 "accept": [
16 "image/*"
17 ],
18 "maxSize": 8000000
19 },
20 "address": {
21 "type": "string",
22 "description": "The location the badge links to. May fall back to the user's handle domain if empty and rkey is `self`.",
23 "format": "uri"
24 },
25 "alt": {
26 "type": "string",
27 "description": "Alt text description of the badge, for accessibility.",
28 "maxLength": 20000,
29 "maxGraphemes": 2000
30 }
31 },
32 "required": [ "image", "alt" ]
33 }
34 }
35 }
36}