{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "description": "Version v7",
    "properties": {
        "user_id": {
            "type": "string"
        },
        "first_name": {
            "type": "string"
        },
        "last_name": {
            "type": "string"
        },
        "avatar_url": {
            "type": "string"
        },
        "is_dormant": {
            "type": "boolean"
        },
        "contact_info": {
            "$ref": "/resources/schema/user/v7/ContactInfo.json"
        },
        "connection_type": {
            "$ref": "/resources/schema/user/v7/ConnectionType.json"
        },
        "metadata": {
            "type": "string"
        }
    },
    "required": [
        "user_id",
        "first_name",
        "last_name",
        "is_dormant"
    ],
    "title": "ConnectionEntry",
    "type": "object"
}