{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "description": "Version v6",
    "properties": {
        "user_id": {
            "type": "string"
        },
        "first_name": {
            "type": "string"
        },
        "last_name": {
            "type": "string"
        },
        "avatar_url": {
            "type": "string"
        },
        "is_dormant": {
            "type": "boolean"
        },
        "contacts": {
            "items": {
                "$ref": "/resources/schema/user/v6/ContactEntry.json"
            },
            "type": "array"
        }
    },
    "required": [
        "user_id",
        "first_name",
        "last_name",
        "is_dormant"
    ],
    "title": "UserEntry",
    "type": "object"
}