amida-tech / cda-fhir

CDA to FHIR converter
Apache License 2.0
12 stars 5 forks source link

Claim.item.type does not have a "coding" child element #6

Closed mhiner closed 9 years ago

mhiner commented 9 years ago

For Claim.item.type do not wrap in coding element:

should be like:

             "item": [
          {
            "sequence": 1,
            "type": {
                  "system": "http://snomed.info/sct",
                  "code": "73761001",
                  "display": "Colonoscopy"
                }
          }
        ]

not

        "item": [
          {
            "sequence": 1,
            "type": {
              "coding": [
                {
                  "system": "http://snomed.info/sct",
                  "code": "73761001",
                  "display": "Colonoscopy"
                }
              ]
            }
          }
        ]