Stream: implementers
Topic: Address.district
Mattias Flodin (Apr 23 2018 at 08:22):
I'm confused by the comment on Address.district:
District is sometimes known as county, but in some regions 'county' is used in place of city (municipality), so county name should be conveyed in city instead.
Even if these terms can be interpreted differently, isn't there at least some explicit level of significance to these properties that remains consistent? It sounds as if "city" sometimes encompasses multiple districts, and sometimes vice versa?
In our case, we don't use city or county in addresses. We use the name of the municipality. So should I put that in district or city? Or neither?
Lloyd McKenzie (Apr 23 2018 at 15:20):
Municipality would go in city. "county" is only used if you need city but also need some larger region that's smaller than state/province/territory
AbdulMalik Shakir (Aug 16 2020 at 19:48):
I have a question about the use of address.district. The way I read the definition "District is sometimes known as county..." is an indication that district is not always county but is some recognized named subdivision of a country other than State. This subdivision is geographically bound and can be larger than or smaller than a State, perhaps even smaller than a city.
I'd like to use district to represent a public health reporting jurisdiction in the US, particularly vital records reporting jurisdictions. Is this an appropriate use of the district component of the address datatype? A public health reporting jurisdiction is a subdivision of a country (typically, but not exclusively, a State or City), subdivisions of the United States deemed by the CDC to be a public health reporting jurisdiction include states, territories, "districts" (the District of Columbia), cities, townships, municipalities, and Native American Reservations. A value set based primarily upon FIPS codes has been defined for each vital record reporting jurisdictional districts.
Michele Mottini (Aug 16 2020 at 20:33):
I'd say no: for a US address district
= county
AbdulMalik Shakir (Aug 16 2020 at 20:52):
Michele Mottini said:
I'd say no: for a US address
district
= county
Is there something in the standard that states that in the US district is equal to and limited to county? For the state of Louisiana, would county = parish? Are the boroughs of New York City counties?
Vassil Peytchev (Aug 17 2020 at 01:02):
The boroughs of NYC are counties.
Each borough is coextensive with a respective county of New York State.
From Wikipedia
AbdulMalik Shakir (Aug 17 2020 at 04:57):
@Vassil Peytchev Yes, I am aware that the boroughs of NYC are counties, just as the parishes of Louisiana are equivalent to counties. The point I was attempting to make is that district = county is not accurate. I think it appropriate to use district to represent a public health reporting jurisdiction in the US. How is district used outside of the US? Perhaps my first step should be to ask that the definition of district be modified to read "A political or administrative subdivision of a country. In the United States, this would include counties and county-equivalents (e.g.independent cities, parishes, boroughs) as defined by the Federal Information Processing System (FIPS) Codes for States and Counties."
René Spronk (Aug 17 2020 at 06:46):
District is any subdivision you may have between state/province and city, a subdivision used for postal addressing. Your use case is not related to postal addressing, it would not be appropriate if printed on an envelope. Yours is a characteristic of an address not covered by the standard data elements, so an extensions seems to be called for.
Vassil Peytchev (Aug 17 2020 at 13:27):
Location can be used to describe a public health reporting jurisdiction in the US.
Jurisdiction is explicitly listed in the examples for location, and CDC/FDA is shown as an example for business scope.
AbdulMalik Shakir (Aug 17 2020 at 17:48):
@René Spronk ** @Vassil Peytchev You make a good point. The address resource is not a location. It is a means of facilitating postal deliveries. I should be looking at the Location resource for my use case. Thanks.
Last updated: Apr 12 2022 at 19:14 UTC