Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add issuer_type=network #867

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion METADATA.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
| `label` | A representative label for the issuer. Used when issuer name may be too long, misrepresentative, or provides more common nomenclature. |
| `currently_issuing` | Boolean variable that indicates if an issuer is currently issuing. It is assumed an issuer is actively issuing if not included in metadata. |
| `locations` | A list of locations (see below for details) that the issuer is associated with |
| `network_participants` | A list of participants. Populated when `issuer_type` is `network.health_system` (see below for details). |

## Issuer Type Representation

Expand All @@ -31,10 +32,12 @@ A simple hierarchy provides an easier means to segregate government and non-gove
| `governmental.city_county` | A city, county or governmental agency issuing for a city |
| `governmental.health_jurisdiction` | A jurisdiction or governmental agency issuing for a jurisdiction |
| `governmental.agency` | A governmental agency |
| `network.health_system` | A group of distinct clinical health systems or hospital sharing a single issuer. |


## Location Representation

In order to best represent the reality of a SHC issuer issuing SHCs in multiple locations, an issuer can be associated to multiple country-state locations.
In order to best represent the reality of a SHC issuer issuing SHCs in multiple locations, an issuer can be associated to multiple country-state locations. In the case of network issuers, `locations` is a comprehensive list of locations of its network participants.

This location representation is heavily inspired by the [FHIR `Address` type][fhir-address-type].

Expand All @@ -55,6 +58,27 @@ locations: [
]
```

## Health Sytem Network issuer type

Specific clinical health systems or hospitals that share a `network.health_system` issuer may be grouped together within a single `network.health_system` entry in the metadata file. Each `network_participant` must have a label, an issuer_type, and should include a list of locations. (The meaning and value sets of `label`, `issuer-type`, and `locations` are defined above).

```json
"network_participants":[{
"label":"Clinic",
"issuer_type":"organization.health_system",
"locations":[
{
"state":"NY",
"country":"US"
},
{
"state":"NJ",
"country":"US"
}
]
}]
```

[example-metadata.json](example-metadata.json) shows basic example representing what an entry in the metadata file would look like.

[fhir-address-type]:https://www.hl7.org/fhir/datatypes.html#Address
55 changes: 43 additions & 12 deletions example-metadata.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,48 @@
"issuer_metadata": [{
"canonical_iss":"https://simple.example.com",
"website":"https://simple.example.com/portal",
"help_line":"(555) 867-5309",
"issuer_type":[
"governmental.state_province_territory"
],
"label":"California",
"currently_issuing":false,
"locations":[
{
"state":"CA",
"country":"US"
}
]
},
{
"issuer_metadata": [
"canonical_iss":"https://network.example.com",
"website":"https://network.example.com/portal",
"help_line":"(555) 623-5250",
"issuer_type":[
"network"
],
"label":"Network of SHC issuers",
"currently_issuing":true,
"network_participants":[
{
"label":"Coal Miner's Clinic",
"issuer_type":"organization.health_system",
"locations":[
{
"state":"KY",
"country":"US"
}
]
},
{
"canonical_iss": "https://simple.example.com",
"website": "https://simple.example.com/portal",
"help_line": "(555) 867-5309",
"issuer_type": [
"governmental.state_province_territory"
],
"label": "California",
"currently_issuing": false,
"locations": [
{ "state": "CA", "country": "US" }
"label":"Citrix Workers of Northern California Clinic ",
"issuer_type":"organization.health_system",
"locations":[
{
"state":"CA",
"country":"US"
}
]
}
]
}
}]