{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "description": "Version 7",
    "properties": {
        "phone": {
            "items": {
                "type": "string",
                "pattern": "^\\+?\\d+$"
            },
            "type": "array"
        },
        "email": {
            "items": {
                "type": "string",
                "format": "email"
            },
            "type": "array"
        },
        "facebook_user_id": {
            "items": {
                "type": "string",
                "minLength": 1
            },
            "type": "array"
        },
        "googleplus_user_id": {
            "items": {
                "type": "string",
                "minLength": 1
            },
            "type": "array"
        }
    },
    "title": "ContactInfo",
    "type": "object"
}