Introducing self-describing JSONs
Initial self-describing JSON draft. Date: 14 May 2014. Draft authors: Alexander Dean, Frederick Blundun.
Updated 10 June 2014. Changed iglu://
references to iglu:
as these resource identifiers do not point to specific hosts.
At Snowplow we have been thinking a lot about how to add schemas to our data models, in place of the implicit data models and wiki-based tracker protocols that we have today. Crucially, whatever we come up with must also work for Snowplow users, who want to be able to add schemas to their own unstructured events and custom contexts in Snowplow.
In Tuesday’s blog post, we introduced a key building block for our data modelling efforts: SchemaVer, a way of semantically versioning schema definitions. In this blog post, Fred and I will introduce another building block, which we are calling self-describing JSONs. But first, we’ll explain what the problem is that self-describing JSONs solves.
In the rest of the post, we will cover:
- The problem
- Self-describing JSON Schemas
- Self-describing JSONs
- Putting all this into practice
- Prior art
- Next steps
- Call for feedback
Let’s get started.
1. The problem
Let’s say we have a JSON which looks like this:
{ "bannerId": "4732ce23d345" }
And let’s say that we know that this JSON conforms to this schema:
{ "$schema": "http://json-schema.org/schema#", "type": "object", "properties": { "bannerId": { "type": "string" } }, "required": ["bannerId"], "additionalProperties": false }
And, finally, we know a few things about this schema:
- This is a JSON Schema
- It was created by us (Snowplow Analytics)
- It is version 1-0-0 as per SchemaVer
- It describes an ad click
So far, so good. But we now have a few serious gaps in our knowledge:
- All our knowledge about the schema is implicit knowledge - it’s not written down anywhere
- The JSON Schema itself does not know these four key facts about itself
- The individual JSON has no direct association with its schema
Combined, these knowledge gaps leave us in a tight spot: when we come back to a folder full of our JSONs, how will we know how to validate them? This is where self-describing JSON comes in:
- We want the JSON Schema to contain a description of itself
- We want the individual JSONs to record which JSON Schema they are associated with
Let’s discuss each of these points next.
2. Self-describing JSON Schemas
Let’s add a new property, self
, to describe our JSON Schema:
{ "$schema": "http://json-schema.org/schema#", "self": { "vendor": "com.snowplowanalytics", "name": "ad_click", "format": "jsonschema", "version": "1-0-0" }, "type": "object", "properties": { "bannerId": { "type": "string" } }, "required": ["bannerId"], "additionalProperties": false }
We have now managed to detail everything we know about this JSON Schema:
vendor
tells us who created this JSON Schemaname
tells us the type of object described in this JSON Schemaformat
tells us that this is a JSON Schema (versus some other schema approach)version
tells us the version of this JSON Schema (using SchemaVer)
This is a good start: our implicit knowledge about this JSON Schema is now captured against the JSON Schema itself. Anywhere the JSON Schema goes, this all-important information about the JSON Schema goes too.
But we still don’t have an association between the individual JSON objects and the JSON Schema - let’s fix this next.
3. Self-describing JSONs
How can we associate an individual JSON with its JSON Schema? Let’s try a slightly modified JSON format:
{ "schema": "iglu:com.snowplowanalytics/ad_click/jsonschema/1-0-0", "data": { "bannerId": "4732ce23d345" } }
We have made a couple of important changes here:
- We have added a new top-level field,
schema
, which contains (in a space-efficient format) all the information required to uniquely identify the associated JSON Schema - We have moved the JSON’s original property inside a
data
field. This sandboxing will prevent any accidental collisions should the JSON already have aschema
field
Don’t worry about the iglu:
protocol for now - we will come back to this in a future blog post.
Between our self-describing JSON Schemas and our self-describing JSONs, we have joined up all of our implicit knowledge about this JSON instance and its JSON Schema. This should make schema evolution and working with historical data much simpler.
4. Putting all this into practice
If this is the theory, how do we put this into practice? Firstly, we should abide by the JSON Schema 04 specification:
5.6. Extending JSON Schema
Implementations MAY choose to define additional keywords to JSON
Schema. Save for explicit agreement, schema authors SHALL NOT expect
these additional keywords to be supported by peer implementations.
Implementations SHOULD ignore keywords they do not support.
And then:
6. The "$schema" keyword
6.1. Purpose
The "$schema" keyword is both used as a JSON Schema version
identifier and the location of a resource which is itself a JSON
Schema, which describes any schema written for this particular
version.
This keyword MUST be located at the root of a JSON Schema. The value
of this keyword MUST be a URI [RFC3986] and a valid JSON Reference
[json-reference]; this URI MUST be both absolute and normalized. The
resource located at this URI MUST successfully describe itself. It
is RECOMMENDED that schema authors include this keyword in their
schemas.
And finally:
6.2. Customization
When extending JSON Schema with custom keywords, schema authors
SHOULD define a custom URI for "$schema". This custom URI MUST NOT
be one of the predefined values.
Phew! What this means in short is that we should create a JSON Schema document defining our self
extension to JSON Schema. This will become the new master JSON Schema (indicated with $schema
) for all self-describing JSON Schemas.
We have done this and made this available at this URI:
http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#
Don’t worry about that URI for now - we will return to Iglu and the proposed path structure in a future blog post. For now, just notice that the URI’s path structure matches our space-efficient schema
field format above.
The JSON Schema enforces a few formatting rules for the self
fields:
name
andformat
must consist of only letters, numbers, underscores (_
s) and hyphens (-
s)vendor
supports the same characters plus periods (.
)version
must be in SchemaVer
Next, we can revise our JSON Schema to flag that this is a self-describing JSON Schema - note the updated $schema
field:
{ "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#", "self": { "vendor": "com.snowplowanalytics", "name": "ad_click", "format": "jsonschema", "version": "1-0-0" }, "type": "object", "properties": { "bannerId": { "type": "string" } }, "required": ["bannerId"], "additionalProperties": false }
As per the self-desc
JSON Schema definition, note that:
- The four fields
vendor
,name
,format
,version
are all required strings - No additional fields are allowed within
self
And how do we now validate a self-describing JSON against its JSON Schema? To recap, our JSON instance looks like this:
{ "schema": "iglu:com.snowplowanalytics/ad_click/jsonschema/1-0-0", "data": { "bannerId": "4732ce23d345" } }
We can validate this in a two-pass fashion:
- First pass: validate that the JSON is self-describing
- Second pass: take the
data
field from the JSON, and validate it against the JSON Schema identified by theschema
field
How do we validate that the JSON is self-describing? We have created a simple JSON Schema for that very purpose:
http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/instance/jsonschema/1-0-0
So there we go: this two-step approach lets you validate any self-describing JSON against the schema it claims to adhere to.
5. Prior art
We were surprised not to find much existing discussion around self-description of schemas and objects in the JSON community. The JSON Schema 04 specification does have a section on what it calls “correlating” JSON instances with their respective JSON Schemas:
8. Recommended correlation mechanisms for use with the HTTP protocol
It is acknowledged by this specification that the majority of
interactive JSON Schema processing will be over HTTP. This section
therefore gives recommendations for materializing an instance/schema
correlation using mechanisms currently available for this protocol.
An instance is said to be described by one (or more) schema(s).
8.1. Correlation by means of the "Content-Type" header
It is RECOMMENDED that a MIME type parameter by the name of "profile"
be appended to the "Content-Type" header of the instance being
processed. If present, the value of this parameter MUST be a valid
URI, and this URI SHOULD resolve to a valid JSON Schema. The MIME
type MUST be "application/json", or any other subtype.
An example of such a header would be:
Content-Type: application/my-media-type+json;
profile=http://example.com/my-hyper-schema#
The idea of appending the JSON Schema to the content-type as a profile
is an interesting one, but it has a few major drawbacks:
- It is limited to HTTP-based interactions
- On receipt, the user will have to create some bespoke data structure to record the
profile
alongside the data - Recording the full URI to the schema is brittle - what if the location of the JSON Schema changes?
We found more discussion of self-describing objects with their schemas (or at least schema versions) in the Avro community, including this from Martin Kleppmann’s excellent article, Schema evolution in Avro, Protocol Buffers and Thrift:
"If you’re storing records in a database one-by-one, you may end up with different schema versions written at different times, and so you have to annotate each record with its schema version. If storing the schema itself is too much overhead, you can use a hash of the schema, or a sequential schema version number. You then need a schema registry where you can look up the exact schema definition for a given version number."
We also found something a little similar to self-describing JSON in the Kiji project, which uses Avro heavily:
Kiji uses something we call protocol versioning to get around this issue. Each record type that we intend to operate on has a field named version which is a string. The Kiji TableLayoutDesc Avro record (what your JSON table layout files interact with) includes a version field which today you should set to "layout-1.1".
In Kiji, a protocol version includes a protocol name and a version number in major.minor.revision format. The protocol name is a sanity check on what kind of record this version pertains to. For example, Kiji table layouts all contain a protocol name of “layout”; this prevents the most basic error of trying to parse a similar but unrelated JSON record object in a place where it shouldn’t be.
The version number is a standard version number that follows semantic versioning: the major version changes when an incompatible change is introduced; the minor version for a compatible new feature; and the revision for a bug fix.
The Kiji project uses Semantic Versioning rather than our just-released SchemaVer - it’s not clear what their “bug fix” is in the context of a schema definition.
6. Next steps
We are hugely excited about the potential for self-describing JSONs at Snowplow. Specifically, we think they will bring significant benefits for Snowplow users in terms of:
- Documenting what types of unstructured events and custom contexts you are sending into Snowplow
- Enabling Snowplow to validate that your unstructured events and custom contexts conform to your schemas
- Providing ways of programmatically generating other database and schema objects (e.g. Redshift table definitions, Avro objects) from the JSON Schemas
As well as making it easy for Snowplow users to use this new functionality, we intend to “dogfood” self-describing JSONs, for example by replacing our wiki-based Tracker Protocol with a self-describing JSON Schema equivalent.
Now that we have a format for self-describing JSONs, the next step is to come up with some form of “schema registry” or repository to hold them in. Stay tuned for a blog post on this coming soon!
7. Call for feedback
Above all, we would like to stress that this is a draft proposal, and we would love to get feedback from the Snowplow community and beyond on self-describing JSONs and JSON Schemas. Now is the best time for us to get feedback - before we have started to formalize this into the coming Snowplow releases.