Skip to content

Commit

Permalink
update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
briehl committed Dec 10, 2024
1 parent 90b209d commit 748380c
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion import_specifications/schema/dts_manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,20 @@
"type": "object",
"properties": {
"data_type": {"type": "string"},
"parameters": {"type": "object"}
"parameters": {
"type": "object",
"patternProperties": {
".*": {
"oneOf": [
{"type": "string"},
{"type": "number"},
{"type": "boolean"},
{"type": "null"}
]
}
},
"additionalProperties": false
}
},
"required": ["data_type", "parameters"]
}
Expand Down

0 comments on commit 748380c

Please sign in to comment.