{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "description": "schema for the fully native mobile endpoint",
  "id": "/quiz",
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "enum": ["quiz"]
        },
        "attributes": {
          "type": "object",
          "properties": {
            "title": {
              "type": "string"
            }
          }
        }
      },
      "required": [
        "type",
        "attributes"
      ]
    }
  },
  "required": [
    "data"
  ]
}