In XML and JSON we may have namespaces in property/element names like so:
<system:example>test</system:example>
or
{ "system:example" : test }
In general, does it violate some rules or conventions to have "multi-nested" namespaces like the following?
<myapp:sys:authorization>...</myapp:sys:authorization>
or
{ "myapp:sys:authorization" : { ... } }