Last active
March 29, 2017 17:10
-
-
Save georgeportillo/1611b5ce3803a50e0d467acb4cc904ef 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
// From: | |
{ | |
"output": [{ | |
"type": "text", | |
"template": "text", | |
"text": "" | |
}, { | |
"type": "card", | |
"template": "card", | |
"title": "Card #1", | |
"image_url": "foo", | |
"subtitle": "bar", | |
"buttons": ["baz"] | |
}, { | |
"type": "card", | |
"template": "card", | |
"title": "Card #2", | |
"image_url": "foo", | |
"subtitle": "bar", | |
"buttons": ["baz"] | |
}, { | |
"type": "card", | |
"template": "card", | |
"title": "Card #3", | |
"image_url": "foo", | |
"subtitle": "bar", | |
"buttons": ["baz"] | |
}, { | |
"type": "text", | |
"template": "text", | |
"text": "" | |
}, { | |
"type": "text", | |
"template": "text", | |
"text": "" | |
}, { | |
"type": "card", | |
"template": "card", | |
"title": "Card #4", | |
"image_url": "foo", | |
"subtitle": "bar", | |
"buttons": ["baz"] | |
}, { | |
"type": "card", | |
"template": "card", | |
"title": "Card #5", | |
"image_url": "foo", | |
"subtitle": "bar", | |
"buttons": ["baz"] | |
}, { | |
"type": "card", | |
"template": "card", | |
"title": "Card #6", | |
"image_url": "foo", | |
"subtitle": "bar", | |
"buttons": ["baz"] | |
}] | |
} | |
// Into: | |
{ | |
"output": [{ | |
"type": "text", | |
"template": "text", | |
"text": "" | |
}, | |
[{ | |
"type": "card", | |
"template": "card", | |
"title": "Card #1", | |
"image_url": "foo", | |
"subtitle": "bar", | |
"buttons": ["baz"] | |
}, { | |
"type": "card", | |
"template": "card", | |
"title": "Card #2", | |
"image_url": "foo", | |
"subtitle": "bar", | |
"buttons": ["baz"] | |
}, { | |
"type": "card", | |
"template": "card", | |
"title": "Card #3", | |
"image_url": "foo", | |
"subtitle": "bar", | |
"buttons": ["baz"] | |
}], { | |
"type": "text", | |
"template": "text", | |
"text": "" | |
}, { | |
"type": "text", | |
"template": "text", | |
"text": "" | |
}, | |
[{ | |
"type": "card", | |
"template": "card", | |
"title": "Card #4", | |
"image_url": "foo", | |
"subtitle": "bar", | |
"buttons": ["baz"] | |
}, { | |
"type": "card", | |
"template": "card", | |
"title": "Card #5", | |
"image_url": "foo", | |
"subtitle": "bar", | |
"buttons": ["baz"] | |
}, { | |
"type": "card", | |
"template": "card", | |
"title": "Card #6", | |
"image_url": "foo", | |
"subtitle": "bar", | |
"buttons": ["baz"] | |
}] | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment