Skip to content

Commit

Permalink
add description to Address
Browse files Browse the repository at this point in the history
  • Loading branch information
odscjen committed Aug 28, 2023
1 parent c550433 commit d2f43c5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -46,7 +46,8 @@ Below is an example of a geolocated item in the `tender` section:
"countryName": "United Kingdom",
"streetAddress": "Town Hall, St Aldate's",
"region": "Oxfordshire",
"locality": "Oxford"
"locality": "Oxford",
"description": "The old town hall"
}
],
"unit": {
Expand Down Expand Up @@ -125,6 +126,7 @@ Report issues for this extension in the [ocds-extensions repository](https://git
* Deprecate the `Item.deliveryLocation` field in favor of the new `Item.deliveryLocations` field, to support items with multiple delivery locations
* Add "format": "uri" to `Location.uri`
* Update field descriptions to allow location objects to be used in other contexts than deliveries
* Add `Address.description`

### v1.1.5

Expand Down
12 changes: 12 additions & 0 deletions release-schema.json
Expand Up @@ -159,6 +159,18 @@
"format": "uri"
}
}
},
"Address": {
"properties": {
"description": {
"title": "Description",
"description": "A name or description of this address. This might include the name(s) of the address(s), or might provide a human-readable description of the address to be covered.",
"type": [
"string",
"null"
]
}
}
}
}
}

0 comments on commit d2f43c5

Please sign in to comment.