Skip to content

Schema version 9.0.0

Compare
Choose a tag to compare
@FloEdelmann FloEdelmann released this 07 Aug 13:29
· 2100 commits to master since this release
bf3d776

View schemas

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 the links object.

Backwards-compatible schema changes

None.

Bugfixes

None.

Commits since last release