Skip to content

Commit

Permalink
fix: invalid nesting of required properties in schema 1-4-0 (#151)
Browse files Browse the repository at this point in the history
* fix: hardware and controller properties required field

* The "required" field for controller and hardware properties were
incorrectly nested _under_ the properties, not below them, causing
an accidental breaking change to the schema

* fix: patch deployed 1-4-0 schema
  • Loading branch information
eeberhard authored Apr 23, 2024
1 parent 013c048 commit 84031d8
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
22 changes: 11 additions & 11 deletions docs/static/schemas/1-4-0/application.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -450,19 +450,19 @@
"$ref": "#/properties/sequences/$defs/timeout/properties/events"
}
}
},
"required": [
"plugin"
]
}
}
},
"required": [
"plugin"
]
}
}
},
"required": [
"urdf",
"rate"
]
}
}
},
"required": [
"urdf",
"rate"
]
}
}
},
Expand Down
22 changes: 11 additions & 11 deletions schemas/applications/schema/hardware.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,19 +82,19 @@
"$ref": "events.schema.json"
}
}
},
"required": [
"plugin"
]
}
}
},
"required": [
"plugin"
]
}
}
},
"required": [
"urdf",
"rate"
]
}
}
},
"required": [
"urdf",
"rate"
]
}
}
}

0 comments on commit 84031d8

Please sign in to comment.