I would like to output the first FamilyJudgement from my xml document. How do I do it?
Expected output
xml document
Expected output
XML:
<FamilyJudgment judgmentKey="3928551">
<JudgmentEventTypeText>Custody order</JudgmentEventTypeText>
</FamilyJudgment>
xml document
XML:
<?xml version="1.0" encoding="UTF-8"?>
<CaseNotification>
<CourtDecisionNotification>
<TriggeredDateTime>2016-07-12T15:05:45-05:00</TriggeredDateTime>
<NotificationEvent>CourtDecisionModified</NotificationEvent>
<FamilyJudgment judgmentKey="3928551">
<JudgmentEventTypeText>Custody order</JudgmentEventTypeText>
<JudgmentEventDate>2016-07-12</JudgmentEventDate>
<Custody>
<CustodyDescriptionText>Legal custody</CustodyDescriptionText>
</Custody>
</FamilyJudgment>
<FamilyJudgment judgmentKey="3928551">
<JudgmentEventTypeText>Custody order</JudgmentEventTypeText>
<JudgmentEventDate>2016-07-12</JudgmentEventDate>
<Custody>
<CustodyDescriptionText>Legal custody</CustodyDescriptionText>
</Custody>
</FamilyJudgment>
</CourtDecisionNotification>
</CaseNotification>