{
  "$schema": "http://json-schema.org/schema",
  "type": "object",
  "description": "A canonical song",
  "properties": {
    "title":  { "type": "string" },
    "artist": { "type": "string" }
  },
  "required": [ "title", "artist" ]
}