cardSetsInList - How to use? #74
-
Heyo, how do I use "cardSetsInList"? In AllCards.json I have:
And I have set Thanks for any help :-) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
It sounds like you're using it correctly, but maybe the duplicates are being hidden? |
Beta Was this translation helpful? Give feedback.
-
Hey there, I finally got it right.
I think there already is a default property named "set", but you can't use that because it doesn't have the right type. The assignment won't work and the set will be the default set. Thanks @davidmfinol for the support. 👍 |
Beta Was this translation helpful? Give feedback.
Hey there,
I finally got it right.
Here's a recap what I needed in case someone else comes looking:
"set": [{"code":"crewT1","name":"Crew"}, {"code":"crewT2","name":"Crew"}, {"code":"crewT3","name":"Crew"}]}
"cardSetsInList": true
"cardSetsInList": true
{ "name": "set", "display": "Set", "type": "objectList" }
"cardSetIdentifier": "set"
I think there already is a default property named "set", but you can't use that because it doesn't have the right type. The assignment won't work and the set will be the default set.
Also, making "set" of type "stringList" s…