locales
Synopsis
Section titled “Synopsis”fhir-test-data locales [options]Options
Section titled “Options”Options: --pretty pretty-print JSON (default for stdout) (default: true) --no-pretty compact JSON output -h, --help display help for commandDescription
Section titled “Description”Prints a JSON array of all supported locales. Each entry contains:
code— the locale code passed to--localename— country display namepatientIdentifiers— identifier definitions available for Patient resourcespractitionerIdentifiers— identifier definitions for Practitioner resourcesorganizationIdentifiers— identifier definitions for Organization resources
Each identifier definition includes name, system (FHIR NamingSystem URI), and algorithm when a check-digit algorithm is applied.
Example
Section titled “Example”fhir-test-data locales [
{
"code": "us",
"name": "United States",
"patientIdentifiers": [
{ "name": "Social Security Number (SSN)", "system": "http://hl7.org/fhir/sid/us-ssn" },
{ "name": "Medical Record Number (MRN)", "system": "http://hospital.example.org/fhir/mrn" }
],
"practitionerIdentifiers": [
{ "name": "National Provider Identifier (NPI)", "system": "http://hl7.org/fhir/sid/us-npi", "algorithm": "Luhn" }
],
"organizationIdentifiers": [
{ "name": "National Provider Identifier (NPI)", "system": "http://hl7.org/fhir/sid/us-npi", "algorithm": "Luhn" }
]
},
...
] See Locales reference for the complete table.