UNPKG

fhir-schemas

Version:

Schemas for Fast Healthcare Interoperability Resources.

35 lines 1.19 kB
{ "schema": "http://json-schema.org/draft-04/schema#", "$id": "http://hl7.org/fhir/json-schema/ContactDetail", "$ref": "#/definitions/ContactDetail", "description": "see http://hl7.org/fhir/json.html#schema for information about the FHIR Json Schemas", "definitions": { "ContactDetail": { "allOf": [ { "$ref": "Element#/definitions/Element" }, { "description": "Specifies contact information for a person or organization.", "properties": { "name": { "description": "The name of an individual to contact.", "type": "string" }, "_name": { "description": "Extensions for name", "$ref": "http://hl7.org/fhir/json-schema/Element#/definitions/Element" }, "telecom": { "description": "The contact details for the individual (if a name was provided) or the organization.", "type": "array", "items": { "$ref": "http://hl7.org/fhir/json-schema/ContactPoint#/definitions/ContactPoint" } } } } ] } } }