adiwg-mdjson_schemas 2.0.0.pre.alpha.10 → 2.0.0.pre.alpha.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/examples/contact.json +8 -0
- data/lib/adiwg/mdjson_schemas/version.rb +1 -1
- data/schema/contact.json +1 -3
- data/schema/schema.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d076633b870b17386b809abf754c6a06a1519816
|
4
|
+
data.tar.gz: eb796d5ec7d875d5630885d580381a90a377ccd4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7df1d88a39a859f55ca13e4eeae2da21d4959f467f89e5777dbdd46d7f6a213db8dbc3be343a414d5d3267a865daba3683bd3c47cc6cb5d56f2bc5695e95c0f3
|
7
|
+
data.tar.gz: 28d255a3a726615c5a1b59c77711401be6f114be6dc3ca2816779059e7f93053eccdaac1e2356168ab7d4559ed6855ba8c00914efdaed7464914c94b4491c86f
|
data/examples/contact.json
CHANGED
@@ -41,4 +41,12 @@
|
|
41
41
|
],
|
42
42
|
"contactInstructions": "contactInstructions",
|
43
43
|
"contactType": "contactType"
|
44
|
+
}, {
|
45
|
+
"contactId": "contactId",
|
46
|
+
"isOrganization": true,
|
47
|
+
"name": "name",
|
48
|
+
"memberOfOrganization": [
|
49
|
+
"memberOfOrganization0",
|
50
|
+
"memberOfOrganization1"
|
51
|
+
]
|
44
52
|
}]
|
data/schema/contact.json
CHANGED
@@ -123,13 +123,11 @@
|
|
123
123
|
}
|
124
124
|
},
|
125
125
|
"not": {
|
126
|
+
"required":["isOrganization","positionName"],
|
126
127
|
"properties": {
|
127
128
|
"isOrganization": {
|
128
129
|
"type": "boolean",
|
129
130
|
"enum": [true]
|
130
|
-
},
|
131
|
-
"positionName": {
|
132
|
-
"type": "string"
|
133
131
|
}
|
134
132
|
}
|
135
133
|
},
|
data/schema/schema.json
CHANGED