Release 4 5

This page is part of the FHIR Specification (v4.0.1: R4 (v5.0.0: R5 - Mixed Normative and STU ) ). This is the current published version in it's permanent home (it will always be available at this URL). The current version which supercedes this version is 5.0.0 . For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3

Capabilitystatement-messagedefinition.json

Example CapabilityStatement/messagedefinition (JSON)

FHIR Infrastructure Work Group Maturity Level : N/A Standards Status : Informative Compartments : Not linked to any No defined compartments

Raw JSON ( canonical form + also see JSON Format Specification )

Showing new message definition structure

{
  "resourceType": "CapabilityStatement",
  "id": "messagedefinition",
  "text": {
    "status": "generated",
    "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n      <h2/>\n      <div>\n        <p>Sample capability statement showing new MessageDefinition structure</p>\n\n      </div>\n    </div>"
  },
  "status": "draft",
  "experimental": true,
  "date": "2012-01-04",
  "publisher": "ACME Corporation",
  "contact": [
    {
      "name": "System Administrator",
      "telecom": [
        {
          "system": "email",
          "value": "wile@acme.org"
        }
      ]
    }
  ],
  "description": "Sample capability statement showing new MessageDefinition structure",
  "kind": "instance",
  "software": {
    "name": "EHR"

  "resourceType" : "CapabilityStatement",
  "id" : "messagedefinition",
  "status" : "draft",
  "experimental" : true,
  "date" : "2012-01-04",
  "publisher" : "ACME Corporation",
  "contact" : [{
    "name" : "System Administrator",
    "telecom" : [{
      "system" : "email",
      "value" : "wile@acme.org"
    }]
  }],
  "description" : "Sample capability statement showing new MessageDefinition structure",
  "kind" : "instance",
  "software" : {
    "name" : "EHR"

  },
  "implementation": {
    "description": "Acme Message endpoint",
    "url": "http://acem.com/fhir/message-drop"

  "implementation" : {
    "description" : "Acme Message endpoint",
    "url" : "http://acem.com/fhir/message-drop"

  },
  "fhirVersion": "4.0.1",
  "format": [
    "xml",
    "json"
  ],
  "messaging": [
    {
      "endpoint": [
        {
          "protocol": {
            "system": "http://terminology.hl7.org/CodeSystem/message-transport",
            "code": "mllp"
          },
          "address": "mllp:10.1.1.10:9234"
        }
      ],
      "reliableCache": 30,
      "documentation": "ADT A08 equivalent for external system notifications",
      "supportedMessage": [
        {
          "mode": "receiver",
          "definition": "MessageDefinition/example"
        }
      ]
    }
  ]

  "fhirVersion" : "5.0.0",
  "format" : ["xml",
  "json"],
  "messaging" : [{
    "endpoint" : [{
      "protocol" : {
        "system" : "http://hl7.org/fhir/message-transport",
        "code" : "mllp"
      },
      "address" : "mllp:10.1.1.10:9234"
    }],
    "reliableCache" : 30,
    "documentation" : "ADT A08 equivalent for external system notifications",
    "supportedMessage" : [{
      "mode" : "receiver",
      "definition" : "http://hl7.org/fhir/MessageDefinition/example"
    }]
  }]

}

Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.