@metalabel/dfos-protocol 0.13.1 → 0.13.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schemas/profile.v1.json +25 -35
package/package.json
CHANGED
package/schemas/profile.v1.json
CHANGED
|
@@ -17,41 +17,31 @@
|
|
|
17
17
|
"type": "string",
|
|
18
18
|
"description": "Short bio or description."
|
|
19
19
|
},
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"type": "object",
|
|
42
|
-
"required": ["id"],
|
|
43
|
-
"properties": {
|
|
44
|
-
"id": {
|
|
45
|
-
"type": "string",
|
|
46
|
-
"description": "Opaque media object identifier."
|
|
20
|
+
"links": {
|
|
21
|
+
"type": "array",
|
|
22
|
+
"maxItems": 20,
|
|
23
|
+
"description": "External links — websites, social profiles, and other URIs.",
|
|
24
|
+
"items": {
|
|
25
|
+
"type": "object",
|
|
26
|
+
"required": ["uri"],
|
|
27
|
+
"properties": {
|
|
28
|
+
"uri": {
|
|
29
|
+
"type": "string",
|
|
30
|
+
"format": "uri",
|
|
31
|
+
"description": "Link target URI."
|
|
32
|
+
},
|
|
33
|
+
"label": {
|
|
34
|
+
"type": "string",
|
|
35
|
+
"description": "Optional short display label for the link."
|
|
36
|
+
},
|
|
37
|
+
"description": {
|
|
38
|
+
"type": "string",
|
|
39
|
+
"description": "Optional longer description of the link."
|
|
40
|
+
}
|
|
47
41
|
},
|
|
48
|
-
"
|
|
49
|
-
|
|
50
|
-
"format": "uri",
|
|
51
|
-
"description": "Optional URI for the media object."
|
|
52
|
-
}
|
|
53
|
-
},
|
|
54
|
-
"additionalProperties": false
|
|
42
|
+
"additionalProperties": false
|
|
43
|
+
}
|
|
55
44
|
}
|
|
56
|
-
}
|
|
45
|
+
},
|
|
46
|
+
"additionalProperties": false
|
|
57
47
|
}
|