What I would really like to do is report on the value for qemux86-64 but it returns no value for that. It doesnât seem to like the - in the string. What is the correct syntax for that?
Itâs because when you call out an object, it expects a full object. This is a byproduct of coding. In coding, you are not alloud to use characters for variable/object names. Your object name is 'value_json.homeassistant.qemux86-64'. Well, code doesnât like the -, because that means subtract. So the template is trying to subtract 64 from value_json.homeassistant.qemux86. In order to use special characters with objects, you need to use a method that works on a dictionary (because this json object is a dictionary). So these methods should work:
Thanks to you both. Of course it was the only thing I never tried! I must have googled like mad and I did try and quotes and everything under the sun but never cracked it. Thanks also to @tom_l