Created
January 15, 2018 00:35
-
-
Save EdMan1022/2a1ec2af2f1b0cb141b21971bc0d99ae to your computer and use it in GitHub Desktop.
form json example
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
{ | |
"specifications": | |
{ | |
"age": [ | |
{ | |
"min_age": "20", | |
"max_age": "25", | |
"sample_size": "20" | |
}, | |
{ | |
"min_age": "26", | |
"max_age": "28", | |
"sample_size": "20" | |
} | |
], | |
"gender": [ | |
{ | |
"label": "male", | |
"sample_size": 20 | |
}, | |
{ | |
"label": "female", | |
"sample_size": 20 | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment