Current section
Files
Jump to
Current section
Files
schema/ContactDetail.schema.json
{
"schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://hl7.erp.uno/schema/ContactDetail.schema.json",
"$ref": "#/definitions/ContactDetail",
"description": "see https://hl7.org/fhir/R5/json.html for information about the FHIR Json Schemas",
"definitions": {
"ContactDetail": {
"allOf": [
{
"description": "Specifies contact information for a person or organization.",
"properties": {
"name": {
"description": "The name of an individual to contact.",
"type": "string"
},
"telecom": {
"description": "The contact details for the individual (if a name was provided) or the organization.",
"type": "array",
"items": {
"$ref": "ContactPoint.schema.json#/definitions/ContactPoint"
}
}
}
}
]
}
}
}