Schema version 9.0.0
FloEdelmann
released this
07 Aug 13:29
·
2100 commits
to master
since this release
Fixtures can now contain more links than just one to the manual (see #559):
- "manualURL": "https://www.manufacturer.com/fixture/manual.pdf",
+ "links": {
+ "manual": [
+ "https://www.manufacturer.com/fixture/manual.pdf",
+ "http://www.manufacturer.com/old-version/manual-with-important-information.pdf"
+ ],
+ "productPage": [
+ "https://www.manufacturer.com/products/fixture/"
+ ],
+ "video": [
+ "https://www.youtube.com/watch?v=abcdef123456"
+ ],
+ "other": [
+ "https://someforum.org/fixture-discussion"
+ ]
+ },
Incompatible schema changes
manualURL
is not allowed anymore. It is replaced by thelinks
object.
Backwards-compatible schema changes
None.
Bugfixes
None.