Skip to content

Commit

Permalink
Merge pull request #175 from google/jt/fix-integer
Browse files Browse the repository at this point in the history
Change the max length extension values from string to integer
  • Loading branch information
jingtang10 committed Jan 25, 2021
2 parents f203dc7 + aeed647 commit 2e8f768
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions datacapturegallery/src/main/assets/patient-registration.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/questionnaire-maxLength",
"valueInteger": "8"
"valueInteger": 8
},
{
"url": "http://hl7.org/fhir/StructureDefinition/questionnaire-instruction",
Expand All @@ -33,7 +33,7 @@
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/questionnaire-maxLength",
"valueInteger": "30"
"valueInteger": 30
},
{
"url": "http://hl7.org/fhir/StructureDefinition/questionnaire-instruction",
Expand All @@ -49,7 +49,7 @@
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/questionnaire-maxLength",
"valueInteger": "50"
"valueInteger": 50
},
{
"url": "http://hl7.org/fhir/StructureDefinition/questionnaire-instruction",
Expand Down Expand Up @@ -90,7 +90,7 @@
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/questionnaire-maxLength",
"valueInteger": "8"
"valueInteger": 8
},
{
"url": "http://hl7.org/fhir/StructureDefinition/questionnaire-instruction",
Expand All @@ -117,7 +117,7 @@
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/questionnaire-maxLength",
"valueInteger": "50"
"valueInteger": 50
},
{
"url": "http://hl7.org/fhir/StructureDefinition/questionnaire-instruction",
Expand All @@ -132,7 +132,7 @@
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/questionnaire-maxLength",
"valueInteger": "8"
"valueInteger": 8
},
{
"url": "http://hl7.org/fhir/StructureDefinition/questionnaire-instruction",
Expand Down

0 comments on commit 2e8f768

Please sign in to comment.