UNPKG

fhir-schemas

Version:

Schemas for Fast Healthcare Interoperability Resources.

49 lines 1.72 kB
{ "schema": "http://json-schema.org/draft-04/schema#", "$id": "http://hl7.org/fhir/json-schema/Contributor", "$ref": "#/definitions/Contributor", "description": "see http://hl7.org/fhir/json.html#schema for information about the FHIR Json Schemas", "definitions": { "Contributor": { "allOf": [ { "$ref": "Element#/definitions/Element" }, { "description": "A contributor to the content of a knowledge asset, including authors, editors, reviewers, and endorsers.", "properties": { "type": { "description": "The type of contributor.", "enum": [ "author", "editor", "reviewer", "endorser" ], "type": "string" }, "_type": { "description": "Extensions for type", "$ref": "http://hl7.org/fhir/json-schema/Element#/definitions/Element" }, "name": { "description": "The name of the individual or organization responsible for the contribution.", "type": "string" }, "_name": { "description": "Extensions for name", "$ref": "http://hl7.org/fhir/json-schema/Element#/definitions/Element" }, "contact": { "description": "Contact details to assist a user in finding and communicating with the contributor.", "type": "array", "items": { "$ref": "http://hl7.org/fhir/json-schema/ContactDetail#/definitions/ContactDetail" } } } } ] } } }