Skip to content

Commit 9cb1f22

Browse files
committed
allow x-id to be an array or just a single string.
1 parent 9c6ea2d commit 9cb1f22

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

schemas/smartapi_schema.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,17 @@
153153
"description": "The role of the contact person. Values can be: responsible organization,responsible developer,contributor,support."
154154
},
155155
"x-id": {
156-
"type": "string",
156+
"oneOf": [
157+
{
158+
"type": "array",
159+
"item": {
160+
"type": "string"
161+
}
162+
},
163+
{
164+
"type": "string"
165+
}
166+
],
157167
"description": "The identifier of of the contact person (e.g. orchid Id)"
158168
}
159169
}

0 commit comments

Comments
 (0)