MII-Initiative

[EN] Module Person - Version 1.0 - IG

ResearchSubject (ResearchSubject)

This profile describes a Research Subject in the Medical Informatics Initiative.

When including a person in a study (also in a MII use case), a ResearchSubject resource must be created for this person. There are the following variations:

  • Inclusion is by specific Informed Consent for a study.

  • Inclusion is based on Broad Informed Consent.

  • Inclusion is based on a specific legal basis (special law such as State Hospital Act, Infection Protection Act or Cancer Registry Act). This applies equally to the individuals in the study group, the control group and any form of reference population for which personal (or person-related) individual data are included in calculations.

The creation of the resource must occur at the time the data are retrieved for the study. Additional obligations and adjustments must be considered for each use case.

Name: ProfileResearchSubjectProbandIn (Simplifier Link)

Canonical: https://www.medizininformatik-initiative.de/fhir/core/modul-person/StructureDefinition/ResearchSubject

Differential

idS Σ0..1string
id0..1string
extensionI0..*Extension
versionIdΣ0..1id
lastUpdatedΣ0..1instant
sourceS Σ0..1uri
profileS Σ0..*canonical(StructureDefinition)
securityΣ0..*CodingBinding
tagΣ0..*Coding
implicitRulesΣ ?!0..1uri
language0..1codeBinding
text0..1Narrative
contained0..*Resource
extensionI0..*Extension
modifierExtension?! I0..*Extension
id0..1string
extensionI0..*Extension
useΣ ?!0..1codeBinding
typeS Σ0..1CodeableConceptBindingPattern
systemS Σ1..1uri
valueS Σ1..1string
periodΣ I0..1Period
assignerΣ I0..1Reference(Organization)
statusS Σ ?!1..1codeBinding
id0..1string
extensionI0..*Extension
startS Σ I1..1dateTime
endS Σ I0..1dateTime
studyS Σ I1..1MII-Reference(ResearchStudy)
individualS Σ I1..1MII-Reference(Patient)
assignedArm0..1string
actualArm0..1string
consentS I1..1MII-Reference(Consent)


FHIR-Element Explanation
Patient.id Must-support, but optional
Patient.meta Must-support, but optional
Patient.identifier:subjectIdentificationCode Fixed naming system for uniform, cross-site query of the identifier (for evaluations)
Patient.period.start Start date (inclusion of the patient in the study)
Patient.period.end End date (completion of the study or exclusion of the patient)
Patient.study Reference to the metadata of the study in which the patient is participating. For further specifications, see the STUDIENDATEN extension module.
Patient.individual Each Research Subject must be assigned to a Patient.
Patient.consent Consent to the study or regulatory basis must be available. Further specifications for the modeling of consent may arise from other extension modules.

FHIR-Element Logical Data Set
ResearchSubject.identifier:subjectIdentificationCode Person.Studienteilnehmer.SubjektIdentifizierungscode
ResearchSubject.status Person.Studienteilnehmer.StatusDerTeilnahme
ResearchSubject.period.start Person.Studienteilnehmer.BeginnTeilnahme
ResearchSubject.period.end Person.Studienteilnehmer.EndeTeilnahme
ResearchSubject.consent Person.Studienteilnehmer.Rechtsgrundlage

Snapshot

idS Σ0..1string
id0..1string
extensionI0..*Extension
versionIdΣ0..1id
lastUpdatedΣ0..1instant
sourceS Σ0..1uri
profileS Σ0..*canonical(StructureDefinition)
securityΣ0..*CodingBinding
tagΣ0..*Coding
implicitRulesΣ ?!0..1uri
language0..1codeBinding
text0..1Narrative
contained0..*Resource
extensionI0..*Extension
modifierExtension?! I0..*Extension
id0..1string
extensionI0..*Extension
useΣ ?!0..1codeBinding
typeS Σ0..1CodeableConceptBindingPattern
systemS Σ1..1uri
valueS Σ1..1string
periodΣ I0..1Period
assignerΣ I0..1Reference(Organization)
statusS Σ ?!1..1codeBinding
id0..1string
extensionI0..*Extension
startS Σ I1..1dateTime
endS Σ I0..1dateTime
studyS Σ I1..1MII-Reference(ResearchStudy)
individualS Σ I1..1MII-Reference(Patient)
assignedArm0..1string
actualArm0..1string
consentS I1..1MII-Reference(Consent)


Examples

Example (complete):

{
    "resourceType": "ResearchSubject",
    "id": "ExampleResearchSubjectStudienteilnehmer",
    "meta": {
        "profile":  [
            "https://www.medizininformatik-initiative.de/fhir/core/modul-person/StructureDefinition/ResearchSubject"
        ]
    },
    "identifier":  [
        {
            "type": {
                "coding":  [
                    {
                        "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                        "code": "ANON"
                    }
                ]
            },
            "system": "https://www.example.org/fhir/core/sid/SubjectIdentificationCode",
            "value": "12345"
        }
    ],
    "status": "candidate",
    "period": {
        "start": "2019-09-06"
    },
    "study": {
        "reference": "ResearchStudy/MII-Beispielstudie"
    },
    "individual": {
        "reference": "Patient/MII-Patient"
    },
    "consent": {
        "reference": "Consent/MII-Consent"
    }
}