Page Status: Updated 2022-10-21

NAAT 2, person without a personal identity no

Scenario

  • Negative test result
  • Test type:NAAT
  • The tested person does not have a personal identity number. Name and brithdate shall be provided.
  • Performer (Organization name) shall be provided (mandatory for NAAT)
  • Device is optional for NAAT and is provided in this example. NB! If device is provided for a NAAT, then the device id shall not be used and the name should be provided instead.

Link to the example file: https://simplifier.net/EUDCCSweden/NAAT2NOPNR

Example in json

{
    "resourceType": "Observation",
    "id": "NAAT2NOPNR",
    "contained":  [
        {
            "resourceType": "Patient",
            "id": "1",
            "meta": {
                "profile": "http://electronichealth.se/fhir/StructureDefinition/CovidBevisPatientNoId"
            },
            "name":  [
                {
                    "family": "Smith",
                    "given":  [
                        "Peter",
                        "John",
                        "David"
                    ]
                }
            ],
            "birthDate": "1974-12-25"
        },
        {
            "resourceType": "Organization",
            "id": "2",
            "meta": {
                "profile": "http://electronichealth.se/fhir/StructureDefinition/CovidBevisOrganizationNegTest"
            },
            "name": "Testaren i staden"
        },
        {
            "resourceType": "Device",
            "id": "3",
            "meta": {
                "profile": "http://electronichealth.se/fhir/StructureDefinition/CovidBevisDeviceNegTestNAAT"
            },
            "deviceName":  [
                {
                    "name": "Manufacturer name, NAAT test device",
                    "type": "manufacturer-name"
                }
            ]
        }
    ],
    "meta": {
        "profile": "http://electronichealth.se/fhir/StructureDefinition/CovidBevisObservationNegTest"
    },
    "identifier":  [
        {
            "use": "temp",
            "value": "NAAT2NOPNR"
        }
    ],
    "status": "final",
    "code": {
        "coding":  [
            {
                "system": "http://loinc.org",
                "code": "LP6464-4"
            },
            {
                "system": "http://snomed.info/sct",
                "code": "840539006"
            }
        ]
    },
    "subject": {
        "reference": "#1"
    },
    "effectiveDateTime": "2021-07-21T10:28:00-01:00",
    "performer":  [
        {
            "reference": "#2"
        }
    ],
    "valueCodeableConcept": {
        "coding":  [
            {
                "system": "http://snomed.info/sct",
                "code": "260415000"
            }
        ]
    },
    "device": {
        "reference": "#3"
    }
}