{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "id": "GtwUserResponse",
  "title": "GtwUserResponse",
  "type": "object",
  "additionalProperties": false,
  "required": ["name", "username", "email", "address"],
  "properties": {
    "name": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "address": {
      "type": "object",
      "required": ["street", "city"],
      "properties": {
        "street": {
          "type": "string"
        },
        "city": {
          "type": "string"
        }
      }
    }
  }
}
