# Problem section (/entries required) (/V3) OID: 2.16.840.1.113883.10.20.22.2.5.1 LOINCs: #{"11450-4"} Alias: problems Entries Required: true Internal ID: ProblemSectionentriesrequiredV3 [IG Link](https://www.hl7.org/ccdasearch/templates/2.16.840.1.113883.10.20.22.2.5.1.html) ## Condition to Observation section example. The main idea that each Condition resource is related to nested Observation in Problems section (i.e. Act.ProblemObservation). ```json { "onset" : { "dateTime" : "2014-03-02T12:45:36-05:00" }, "category" : [ { "coding" : [ { "system" : "http://terminology.hl7.org/CodeSystem/condition-category", "code" : "problem-list-item", "display" : "Problem List Item" } ] } ], "clinicalStatus" : { "coding" : [ { "code" : "active", "system" : "http://terminology.hl7.org/CodeSystem/condition-clinical" } ] }, "meta" : { "profile" : [ "http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-problems-health-concerns" ] }, "abatement" : { "dateTime" : "2014-04-02T12:45:36-05:05" }, "resourceType" : "Condition", "recordedDate" : "2014-03-02T12:45:36Z", "id" : "SOME-STRING", "recorder" : { "practitioner" : { "name" : [ { "given" : [ "Heartly" ], "family" : "Sixer", "use" : "official", "suffix" : [ "MD" ] } ], "address" : [ { "line" : [ "6666 StreetName St." ], "use" : null, "city" : "Silver Spring", "state" : "MD", "postalCode" : "20901", "country" : "US" } ], "telecom" : [ { "system" : "phone", "value" : "+1(301)666-6666", "use" : "work" } ], "id" : "SOME-STRING", "resourceType" : "Practitioner" }, "specialty" : [ { "text" : "Cardiovascular Disease", "coding" : [ { "code" : "207RC0000X", "display" : "Cardiovascular Disease", "system" : "http://hl7.org/fhir/ValueSet/provider-taxonomy" } ] } ], "resourceType" : "PractitionerRole", "id" : "4b309dce-a2a7-576a-4520-98f92c510568" }, "code" : { "text" : "Community Acquired Pneumonia", "coding" : [ { "code" : "385093006", "display" : "Community Acquired Pneumonia", "system" : "http://snomed.info/sct" } ] }, "subject" : { "id" : "patient", "resourceType" : "Patient" } } ``` The section contains an Act.entryRelationship.Observation entry converted from the input Condition resource. ```xml
Problem Section (entries required) (V3)
Active Problems
Problem Noted Date Diagnosed Date
Community Acquired Pneumonia 03/02/2014 5:45PM UTC 03/02/2014 12:45PM UTC
Resolved Problems
Problem Noted Date Diagnosed Date Resolved Date
No records
Community Acquired Pneumonia
``` ## sample1 ```json [ { "onset" : { "dateTime" : "2014-03-02T12:45:36-05:00" }, "category" : [ { "coding" : [ { "system" : "http://terminology.hl7.org/CodeSystem/condition-category", "code" : "problem-list-item", "display" : "Problem List Item" } ] } ], "clinicalStatus" : { "coding" : [ { "code" : "active", "system" : "http://terminology.hl7.org/CodeSystem/condition-clinical" } ] }, "meta" : { "profile" : [ "http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition-problems-health-concerns" ] }, "abatement" : { "dateTime" : "2014-04-02T12:45:36-05:05" }, "resourceType" : "Condition", "recordedDate" : "2014-03-02T12:45:36Z", "id" : "102ca2e9-884c-4523-a2b4-1b6c3469c397", "recorder" : { "resourceType" : "PractitionerRole", "id" : "abfba15e-d567-4173-b522-80e40d8b2321", "specialty" : [ { "text" : "Cardiovascular Disease", "coding" : [ { "code" : "207RC0000X", "display" : "Cardiovascular Disease", "system" : "http://hl7.org/fhir/ValueSet/provider-taxonomy" } ] } ], "practitioner" : { "name" : [ { "given" : [ "Heartly" ], "family" : "Sixer", "use" : "official", "suffix" : [ "MD" ] } ], "address" : [ { "line" : [ "6666 StreetName St." ], "use" : null, "city" : "Silver Spring", "state" : "MD", "postalCode" : "20901", "country" : "US" } ], "telecom" : [ { "system" : "phone", "value" : "+1(301)666-6666", "use" : "work" } ], "id" : "86f71898-e94e-469f-8851-00193b48ea85", "identifier" : [ { "value" : "66666", "system" : "http://hl7.org/fhir/sid/us-npi" } ], "resourceType" : "Practitioner" } }, "code" : { "text" : "Community Acquired Pneumonia", "coding" : [ { "code" : "385093006", "display" : "Community Acquired Pneumonia", "system" : "http://snomed.info/sct" } ] }, "subject" : { "id" : "patient", "resourceType" : "Patient" } } ] ``` C-CDA Equivalent: ```xml
Problem Section (entries required) (V3)
Active Problems
Problem Noted Date Diagnosed Date
Community Acquired Pneumonia 03/02/2014 5:45PM UTC 03/02/2014 12:45PM UTC
Resolved Problems
Problem Noted Date Diagnosed Date Resolved Date
No records
Community Acquired Pneumonia
```