{
    "$schema": "http://json-schema.org/draft-04/schema",
    "description": "Status of Receiver",
    "properties": {
        "debug": {
            "description": "Debug information which may give additional information on the state",
            "type": "string"
        },
        "state": {
            "enum": [
                "unknown",
                "compliant_stream",
                "non_compliant_stream"
            ],
            "type": "string"
        }
    },
    "required": [
        "state"
    ],
    "type": "object"
}
