Skip to content

Commit 8d00d5b

Browse files
authored
Narrow down RDM ID range in schema (#3621)
1 parent e58e475 commit 8d00d5b

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

plugins/plugins.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
},
7474
"ofl": {
7575
"name": "Open Fixture Library JSON",
76-
"exportPluginVersion": "12.4.0",
76+
"exportPluginVersion": "12.4.1",
7777
"exportTests": []
7878
},
7979
"op-z": {

schemas/fixture-redirect.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "http://json-schema.org/draft-07/schema#",
33
"$id": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture-redirect.json",
44

5-
"version": "12.4.0",
5+
"version": "12.4.1",
66

77
"type": "object",
88
"properties": {

schemas/fixture.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "http://json-schema.org/draft-07/schema#",
33
"$id": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
44

5-
"version": "12.4.0",
5+
"version": "12.4.1",
66

77
"type": "object",
88
"properties": {

schemas/gobo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "http://json-schema.org/draft-07/schema#",
33
"$id": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/gobo.json",
44

5-
"version": "12.4.0",
5+
"version": "12.4.1",
66

77
"type": "object",
88
"properties": {

schemas/manufacturers.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "http://json-schema.org/draft-07/schema#",
33
"$id": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/manufacturers.json",
44

5-
"version": "12.4.0",
5+
"version": "12.4.1",
66

77
"type": "object",
88
"properties": {
@@ -24,8 +24,8 @@
2424
"website": { "$ref": "definitions.json#/urlString" },
2525
"rdmId": {
2626
"type": "integer",
27-
"minimum": 0,
28-
"maximum": 65536
27+
"minimum": 1,
28+
"maximum": 32767
2929
}
3030
},
3131
"required": ["name"],

0 commit comments

Comments
 (0)