I'm new to JSON and I'm curious if it's possible to have a name/value pair with multiple names. Essentially, I want to be able to search for either name and retrieve the same value without having to update the value in two different places.
Here is an example of what I am looking for:
{"someName & someOtherName" : "singleValue"}
If there isn't a built-in way to accomplish this, are there any JSON preprocessors available? Similar to SASS where I can define a variable and use that variable to assign a single value throughout the file.
$singleValue: true;
something: $singleValue;
somethingElse: $singleValue