Skip to content

Commit

Permalink
fix(schema): allow unexpanded form in schema
Browse files Browse the repository at this point in the history
  • Loading branch information
vringar committed Feb 6, 2024
1 parent 6edaa4e commit cac2fa9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions schemas/js_instrument_settings.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"title": "Properties to instrument",
"description": "An array of properties to instrument on this object. If array is empty, then all properties are instrumented.",
"type": ["array", "null"],
"items":
{
"items": {
"anyOf": [{
"type": "object",
"properties": {
"depth": {
Expand All @@ -45,6 +45,11 @@
}
}
},
{
"type": "string"
}]
}
,
"default": []
},
"nonExistingPropertiesToInstrument": {
Expand Down

0 comments on commit cac2fa9

Please sign in to comment.