Skip to content

Commit

Permalink
Fix schemas (#600)
Browse files Browse the repository at this point in the history
Few fixes for profile and scenario schema
  • Loading branch information
Guts authored Dec 13, 2024
2 parents c4245b1 + 7fd10db commit a96826b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
9 changes: 4 additions & 5 deletions docs/schemas/profile/rules.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
],
"properties": {
"any": {
"$ref": "#/definitions/conditionArray"
"$ref": "#/defs/conditionArray"
},
"all": {
"$ref": "#/definitions/conditionArray"
"$ref": "#/defs/conditionArray"
}
}
},
Expand All @@ -67,10 +67,10 @@
"items": {
"anyOf": [
{
"$ref": "#/definitions/conditions"
"$ref": "#/defs/condition"
},
{
"$ref": "#/definitions/condition"
"$ref": "#/defs/condition"
}
]
}
Expand Down Expand Up @@ -107,7 +107,6 @@
],
"properties": {
"operator": {
"required": true,
"type": "string",
"anyOf": [
{
Expand Down
3 changes: 1 addition & 2 deletions docs/schemas/scenario/jobs/qgis-installation-finder.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
"$id": "https://github.com/qgis-deployment/qgis-deployment-toolbelt-cli/raw/main/docs/schemas/scenario/jobs/qgis-installation-finder.json",
"description": "Job in charge of findind installed QGIS version on computer.",
"title": "QGIS installation finder",
"type": "array",
"type": "object",
"items": {
"type": "object",
"properties": {
"version_priority": {
"default": "",
Expand Down

0 comments on commit a96826b

Please sign in to comment.