-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove "value" as required element of address_level (#283)
* Allow address_levels to be null * Update doc * Refactor to remove "value" as required element of address level container * Update documentation description * Fix missing null level
- Loading branch information
Showing
3 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
examples/addresses/address_all_missing_address_levels.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
id: overture:addresses:addres:1 | ||
type: Feature | ||
geometry: | ||
type: Point | ||
coordinates: [-71.2086153, 42.3373725] | ||
properties: | ||
theme: addresses | ||
type: address | ||
version: 0 | ||
country: US | ||
address_levels: | ||
- {} | ||
- {} | ||
postcode: '02459' | ||
street: COMMONWEALTH AVE | ||
number: '1000' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
id: overture:addresses:addres:1 | ||
type: Feature | ||
geometry: | ||
type: Point | ||
coordinates: [-71.2086153, 42.3373725] | ||
properties: | ||
theme: addresses | ||
type: address | ||
version: 0 | ||
country: US | ||
address_levels: | ||
- value: MA | ||
- {} | ||
postcode: '02459' | ||
street: COMMONWEALTH AVE | ||
number: '1000' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters