Skip to content

Commit

Permalink
Fix invalid JSON (FHIR#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
axelv authored Dec 12, 2024
1 parent 53c1913 commit 5311b83
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions input/pagecontent/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,17 @@ structure:
{"name": "gender", "path": "gender"},
{"name": "dob", "path": "birthDate"}
],
{
"forEach": "name.where(use = 'official').first()",
"column": [
{"path": "given.join(' ')", "name": "given_name",},
{"path": "family", "name": "family_name"}
]
}

},
{
"forEach": "name.where(use = 'official').first()",
"column": [
{"path": "given.join(' ')", "name": "given_name"},
{"path": "family", "name": "family_name"}
]
}
]}
]
}
```


Expand Down

0 comments on commit 5311b83

Please sign in to comment.