Last active
August 11, 2020 00:52
-
-
Save drusepth/9947b3df84379dc93c0fec8ae44da560 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Categories returned as a keyed hash, making for fast reference (e.g. response.categories.Overview) | |
"categories": { | |
"Overview": { | |
"fields": [ | |
{ | |
"id": 123, | |
"label": "Description", | |
"value": "Some Description" | |
}, | |
{ | |
"id": 124, | |
"label": "Another Field", | |
"value": "Some other value" | |
}, | |
... | |
], | |
}, | |
... | |
}, | |
### or | |
# Categories as an array, making for easier iteration and less chance of name collisions | |
"categories": [ | |
{ | |
"label": "Overview", | |
"fields": [ | |
{ | |
"id": 123, | |
"label": "Description", | |
"value": "Some Description" | |
}, | |
{ | |
"id": 124, | |
"label": "Another Field", | |
"value": "Some other value" | |
}, | |
... | |
], | |
}, | |
... | |
], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment