Skip to content

Commit

Permalink
Disallow Location.geometry and Location.gazetteer from being null (bu…
Browse files Browse the repository at this point in the history
…g introduced in v1.1.3)
  • Loading branch information
jpmckinney committed Mar 20, 2019
1 parent ae34e77 commit 6d91b2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ Report issues for this extension in the [ocds-extensions repository](https://git

### v1.1.4

* Disallow `Location.geometry` and `Location.gazetteer` from being null (bug introduced in v1.1.3)
* Correct the order of longitude and latitude in field descriptions to match the GeoJSON specification
* Describe elevation or altitude values
* Remove Sphinx directives from readme
Expand Down
10 changes: 2 additions & 8 deletions release-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,7 @@
]
},
"geometry": {
"type": [
"object",
"null"
],
"type": "object",
"title": "Geometry",
"description": "We follow the [GeoJSON standard](http://geojson.org/) to express basic location information, using longitude, latitude, and (optionally) elevation values in the [WGS84](https://en.wikipedia.org/wiki/World_Geodetic_System) (EPSG:4326) projection. A point location can be identified by geocoding a delivery address. For concession licenses, or other contracts covering a polygon location which is not contained in a known gazetteer, polygon and multi-polygon can be used.",
"properties": {
Expand Down Expand Up @@ -71,10 +68,7 @@
}
},
"gazetteer": {
"type": [
"object",
"null"
],
"type": "object",
"title": "Gazetteer",
"description": "A gazetteer is a geographical index or directory. The specific gazetteer used should be specified in scheme, and one or more codes from that gazetteer used in identifier.",
"properties": {
Expand Down

0 comments on commit 6d91b2f

Please sign in to comment.