Created
October 19, 2016 04:30
-
-
Save CodySwannGT/63588ed957b31170e9b214bc73da2b71 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
parts: [ | |
{ | |
title: "Folder", | |
documents: [ | |
{ | |
id: "some-generated-id", | |
title: "Doctor Information", | |
documentType: "questionaire", | |
completed: false, | |
sections: [ | |
{ | |
id: "some-generated-id", | |
title: "Primary Care Doctor", | |
repeatable: false, | |
responses: [ | |
{ | |
id: "some-generated-id", | |
label: "Name", | |
responseType: "shortText", | |
repeatable: false | |
}, | |
] | |
}, | |
{ | |
title: "Specialist Doctor", | |
repeatable: true, | |
responses: [ | |
{ | |
id: "some-generated-id", | |
label: "Name", | |
responseType: "shortText", | |
repeatable: false | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
email: "[email protected]", | |
encryptedPassword: "", | |
responses: [ | |
{ | |
responseId: "matches-generated-id", | |
value: "blah blah blah" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment