Skip to content

Commit

Permalink
schema: fix missed []-Rules description
Browse files Browse the repository at this point in the history
  • Loading branch information
black-sliver committed Dec 3, 2023
1 parent 0eda2e6 commit cf5c4d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions schema/packs/locations.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,11 +155,11 @@
"type": "array",
"anyOf": [
{
"description": "Access rules for the location. Location will be marked reachable (green) if all rules are matched. If rules in [] are matched, the location will be marked as reachable with glitches (yellow). If rules in {} are matched, the location will be marked as checkable (blue). Children/sections will always inherit rules from parents. Each entry will be OR-ed together, comma sperated rules will be AND-ed.",
"description": "Access rules for the location. Location will be marked reachable (green) if all rules are matched. Rules inside [] are optional (i.e. glitches work around this rule; marked as yellow). If rules in {} are matched, the location will be marked as checkable (blue). Children/sections will always inherit rules from parents. Each entry will be OR-ed together, comma sperated rules will be AND-ed.",
"$ref": "#/$defs/rules_string"
},
{
"description": "Access rules for the location. Location will be marked reachable (green) if all rules are matched. If rules in [] are matched, the location will be marked as reachable with glitches (yellow). If rules in {} are matched, the location will be marked as checkable (blue). Children/sections will always inherit rules from parents. 2-Dimensional array of rules, first dimenstion will be OR-ed together, second will be AND-ed.",
"description": "Access rules for the location. Location will be marked reachable (green) if all rules are matched. Rules inside [] are optional (i.e. glitches work around this rule; marked as yellow). If rules in {} are matched, the location will be marked as checkable (blue). Children/sections will always inherit rules from parents. 2-Dimensional array of rules, first dimenstion will be OR-ed together, second will be AND-ed.",
"$ref": "#/$defs/rules_array"
}
]
Expand Down
4 changes: 2 additions & 2 deletions schema/packs/strict/locations.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,11 @@
"type": "array",
"anyOf": [
{
"description": "Access rules for the location. Location will be marked reachable (green) if all rules are matched. If rules in [] are matched, the location will be marked as reachable with glitches (yellow). If rules in {} are matched, the location will be marked as checkable (blue). Children/sections will always inherit rules from parents. Each entry will be OR-ed together, comma sperated rules will be AND-ed.",
"description": "Access rules for the location. Location will be marked reachable (green) if all rules are matched. Rules inside [] are optional (i.e. glitches work around this rule; marked as yellow). If rules in {} are matched, the location will be marked as checkable (blue). Children/sections will always inherit rules from parents. Each entry will be OR-ed together, comma sperated rules will be AND-ed.",
"$ref": "#/$defs/rules_string"
},
{
"description": "Access rules for the location. Location will be marked reachable (green) if all rules are matched. If rules in [] are matched, the location will be marked as reachable with glitches (yellow). If rules in {} are matched, the location will be marked as checkable (blue). Children/sections will always inherit rules from parents. 2-Dimensional array of rules, first dimenstion will be OR-ed together, second will be AND-ed.",
"description": "Access rules for the location. Location will be marked reachable (green) if all rules are matched. Rules inside [] are optional (i.e. glitches work around this rule; marked as yellow). If rules in {} are matched, the location will be marked as checkable (blue). Children/sections will always inherit rules from parents. 2-Dimensional array of rules, first dimenstion will be OR-ed together, second will be AND-ed.",
"$ref": "#/$defs/rules_array"
}
]
Expand Down

0 comments on commit cf5c4d9

Please sign in to comment.