Namespaces in JSON

16,995

Solution 1

JSON-LD might help :

"JSON-LD (JavaScript Object Notation for Linking Data) is a lightweight Linked Data format that gives your data context."

Solution 2

JSON Schema might be the right thing for this:

http://json-schema.org/

Althought I don't know how well it's implemented.

Share:
16,995
Jerome
Author by

Jerome

Updated on July 28, 2022

Comments

  • Jerome
    Jerome almost 2 years

    Is there such a thing as JSON namespaces, just like XML namespaces? Has anyone created a spec or libraries for this? Is this a good or a terrible idea?

    I want to make a data spec that can be represented in XML as well as JSON. However I also need the namespace concept, that the data can be extended by annotations in different vocabularies.

    To be more specific, this is about representing events. My schema will describe the event in basic terms (time and location), though if you think about it, events can be annotated with different information e.g. attendees or image URLs which I don't want to specify in my schema.