{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "$id": "user",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "name": {
      "type": [
        "string",
        "null"
      ]
    },
    "gravatar_uid": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "id",
    "username",
    "name",
    "gravatar_uid"
  ]
}
