Skip to content

Commit

Permalink
Allow multiple organizer entities per party
Browse files Browse the repository at this point in the history
  • Loading branch information
homeworkprod committed Feb 14, 2024
1 parent 5e87dde commit 2324fe7
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion schemas/party.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,19 @@
"type": "string"
},
"organizer_entity": {
"type": "string"
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"uniqueItems": true
}
]
},
"start_on": {
"type": "string"
Expand Down

0 comments on commit 2324fe7

Please sign in to comment.