Skip to content

Commit

Permalink
docs: validate all examples from readme and fix them
Browse files Browse the repository at this point in the history
  • Loading branch information
ruscoder committed Jun 7, 2024
1 parent 18b2b51 commit c56aff5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Let's say we have a QuestionnaireResponse describing a patient:
"status": "completed",
"item": [
{
"Text name",
"text": "Name",
"linkId": "1",
"answer": [
{
Expand All @@ -54,7 +54,7 @@ Let's say we have a QuestionnaireResponse describing a patient:
]
},
{
"text": "gender"
"text": "gender",
"linkId": "4.1",
"answer": [
{
Expand All @@ -67,7 +67,7 @@ Let's say we have a QuestionnaireResponse describing a patient:
]
},
{
"text": "Phone"
"text": "Phone",
"linkId": "phone",
"answer": [
{
Expand Down Expand Up @@ -440,7 +440,7 @@ that will be transformed into
```json
{
"{% for index, item in QuestionnaireResponse.item %}": {
"index": "{{ %index }}"
"index": "{{ %index }}",
"linkId": "{{ %item.linkId }}"
}
}
Expand Down

0 comments on commit c56aff5

Please sign in to comment.