I have a JSON object:
{
"name" : "car",
"color" : "blue"
}
And a JSON Schema which is used to validate it (not specified here).
XML allows you to include a reference to an extern XML Schema Definition for validation in the XML document itself via "xsi:schemaLocation" (the namespace prefix might be different).
Is there an equivalent way to include a reference to a JSON Schema in a JSON object?