You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why worry about such a minor thing like this?
Because a) consistency, and b) following standards is generally a good thing and c) quicker parsing, easier access to values, and the unhampered ability to use JSON-specific features of your coding language, database, etc on these values should you wish to do so.
The text was updated successfully, but these errors were encountered:
One more for the bikeshed!
Syntax for tags on incidents is currently defined as
"tag":
key is superfluous here (the parent array is already named "tags"), so using a string arraydoes suffice.
Still,
=
is not a structural character in JSON (see https://tools.ietf.org/html/rfc7159#page-5).So, splitting the strings up into string-value members, I'm inclined to conclude that
is the most JSON-y way of representing incident tags.
Note that JSON arrays are not type-specific, so the ability to have simple strings as tags is not getting lost here.
Why worry about such a minor thing like this?
Because a) consistency, and b) following standards is generally a good thing and c) quicker parsing, easier access to values, and the unhampered ability to use JSON-specific features of your coding language, database, etc on these values should you wish to do so.
The text was updated successfully, but these errors were encountered: