NamingSystem - FHIR Resource (dstu2)
This NamingSystem Resource uses the
FHIR API standard for access and structure.
Validate an NamingSystem FHIR Resource (dstu2)
Resource Attributes
Attribute | Field is list | Type | Description |
---|
contact | true | Data Type | # Contact details of the publisher
|
date | false | dateTime | # Publication Date(/time)
|
description | false | string | # What does naming system identify?
|
kind | false | code | # codesystem | identifier | root
|
name | false | string | # Human-readable label
|
publisher | false | string | # Name of the publisher (Organization or individual)
|
replacedBy | false | Reference | # C? Use this instead
|
responsible | false | string | # Who maintains system namespace?
|
status | false | code | # draft | active | retired
|
type | false | CodeableConcept | # e.g. driver, provider, patient, bank etc.
|
uniqueId | true | Data Type | # Unique identifiers used for system
|
usage | false | string | # How/where is it used
|
useContext | true | CodeableConcept | # Content intends to support these contexts
|
NamingSystem Structure
{
"resourceType" : "NamingSystem",
// from Resource: id, meta, implicitRules, and language
// from DomainResource: text, contained, extension, and modifierExtension
"name" : "<string>", // R! Human-readable label
"status" : "<code>", // R! draft | active | retired
"kind" : "<code>", // R! codesystem | identifier | root
"publisher" : "<string>", // Name of the publisher (Organization or individual)
"contact" : [{ // Contact details of the publisher
"name" : "<string>", // Name of a individual to contact
"telecom" : [{ ContactPoint }] // Contact details for individual or publisher
}],
"responsible" : "<string>", // Who maintains system namespace?
"date" : "<dateTime>", // R! Publication Date(/time)
"type" : { CodeableConcept }, // e.g. driver, provider, patient, bank etc.
"description" : "<string>", // What does naming system identify?
"useContext" : [{ CodeableConcept }], // Content intends to support these contexts
"usage" : "<string>", // How/where is it used
"uniqueId" : [{ // R! Unique identifiers used for system
"type" : "<code>", // R! oid | uuid | uri | other
"value" : "<string>", // R! The unique identifier
"preferred" : <boolean>, // Is this the id that should be used for this type
"period" : { Period } // When is identifier valid?
}],
"replacedBy" : { Reference(NamingSystem) } // C? Use this instead
}
NamingSystem Search Parameters
The following search parameters can be used to query NamingSystem resources. Just submit them like so:
https://api.1up.health/fhir/dstu2/NamingSystem?query-param=queryvalue
Search Parameter | Field Type | Resource Fields Searched |
---|
contact | text | contact.name |
context | text | useContext |
date | date | date |
id-type | text | uniqueId.type |
kind | text | kind |
name | text | name |
period | date | uniqueId.period |
publisher | text | publisher |
replaced-by | reference | replacedBy |
responsible | text | responsible |
status | text | status |
telecom | text | contact.telecom |
type | text | type |
value | text | uniqueId.value |