Skip to content

Commit

Permalink
Narrow down RDM ID range in schema (#3621)
Browse files Browse the repository at this point in the history
  • Loading branch information
kengruven committed Nov 17, 2023
1 parent e58e475 commit 8d00d5b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion plugins/plugins.json
Expand Up @@ -73,7 +73,7 @@
},
"ofl": {
"name": "Open Fixture Library JSON",
"exportPluginVersion": "12.4.0",
"exportPluginVersion": "12.4.1",
"exportTests": []
},
"op-z": {
Expand Down
2 changes: 1 addition & 1 deletion schemas/fixture-redirect.json
Expand Up @@ -2,7 +2,7 @@
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture-redirect.json",

"version": "12.4.0",
"version": "12.4.1",

"type": "object",
"properties": {
Expand Down
2 changes: 1 addition & 1 deletion schemas/fixture.json
Expand Up @@ -2,7 +2,7 @@
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",

"version": "12.4.0",
"version": "12.4.1",

"type": "object",
"properties": {
Expand Down
2 changes: 1 addition & 1 deletion schemas/gobo.json
Expand Up @@ -2,7 +2,7 @@
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/gobo.json",

"version": "12.4.0",
"version": "12.4.1",

"type": "object",
"properties": {
Expand Down
6 changes: 3 additions & 3 deletions schemas/manufacturers.json
Expand Up @@ -2,7 +2,7 @@
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/manufacturers.json",

"version": "12.4.0",
"version": "12.4.1",

"type": "object",
"properties": {
Expand All @@ -24,8 +24,8 @@
"website": { "$ref": "definitions.json#/urlString" },
"rdmId": {
"type": "integer",
"minimum": 0,
"maximum": 65536
"minimum": 1,
"maximum": 32767
}
},
"required": ["name"],
Expand Down

0 comments on commit 8d00d5b

Please sign in to comment.