{
    "$schema": "http://json-schema.org/schema#",
    "$id": "https://ris-live.ripe.net/schemas/v1/ris_message-RIS_PEER_STATE.schema.json",
    "type": "object",
    "required": [
        "type", "state"
    ],
    "examples": [
	{
	    "timestamp": 1568365292.84,
	    "peer": "192.0.2.1",
	    "peer_asn": "64496",
	    "id": "00-192-0-2-0-180513",
	    "host": "rrc00",
	    "type": "RIS_PEER_STATE",
	    "state": "connected"
	}        
    ],
    "properties": {
        "type": {
            "const": "RIS_PEER_STATE",
            "type": "string"
        },
        "state": {
            "type": "string",
            "enum": [
                "connected",
                "up",
                "down"
            ]
        }
    },
    "title": "RIS Peer State Change Message"
}
