Replies: 1 comment
-
Solved with this:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to adjust the way this map is written in json. It seems like this kind of format change is not supported. I tried a bunch of things and unfortunately it doesn't appear straightforward due to the enum serialization. Any suggestions?
"hardware": [
[
"card 1",
"type 1"
],
[
"card 2",
"type 2"
]
]
What would be preferred for clarity:
"hardware": {
"card 1": "type 1",
"card 2": "type 2"
}
Beta Was this translation helpful? Give feedback.
All reactions