Skip to content

Commit

Permalink
Funke vct schema
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderPostma committed Dec 6, 2024
1 parent 4e20ba1 commit 9ac8927
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions funke/vct/age-group.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"vct": {
"type": "string"
},
"ageGroup": {
"type": "object",
"properties": {
"ageOver": {
"type": "number"
}
},
"required": [
"ageOver"
]
},
"exp": {
"type": "number"
},
"disclosureFrame": {
"type": "object",
"properties": {
"ageGroup": {
"type": "object",
"properties": {
"_sd": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"required": [
"_sd"
]
}
},
"required": [
"ageGroup"
]
},
"required": [
"vct",
"ageGroup",
"exp",
"disclosureFrame"
]
}

0 comments on commit 9ac8927

Please sign in to comment.