Skip to content

Commit

Permalink
typo and json indent
Browse files Browse the repository at this point in the history
  • Loading branch information
matdillen committed Aug 11, 2022
1 parent 8f8bd8d commit 2088c1c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ For more details: https://github.com/tdwg/mids
The MIDSCalculator is a Shiny app which allows users to calculate MIDS scores for each record in a submitted dataset, and explore the results.

* [How to install](/help/howtoinstall.md)
* [Using the app](/help/howtorun.md)
* [Using the app](/help/howtouse.md)
* [Additional info about the code](/help/codeinfo.md)
* [Create a new installer](/help/rinno_installer.md).

Expand Down
33 changes: 17 additions & 16 deletions help/jsonschema.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,22 @@ The four levels have their own section each. Each level should have at least one

Within an element, the mappings for this element are listed. Mappings to multiple properties in the data source are possible, and requirements of `OR` or `AND` can be set to specify the logic of the mapping. The operator `NOT` is also supported, but currently not part of the schema (anymore) and it is not implemented in the interface that enables interactive schema editing. Example of a more complex mapping for a Location term (note that this particular mapping is a suggestion, not currently agreed in the latest official MIDS draft):

```"Location": [
{
"property": [
"decimalLatitude",
"decimalLongitude"
],
"operator": "AND"
},
{
"property": [
"locality",
"county",
"verbatimLocality"
],
"operator": "OR"
}
```
"Location": [
{
"property": [
"decimalLatitude",
"decimalLongitude"
],
"operator": "AND"
},
{
"property": [
"locality",
"county",
"verbatimLocality"
],
"operator": "OR"
}
]
```

0 comments on commit 2088c1c

Please sign in to comment.