{
    "title": "Get report request v1",
    "description": "Fetch a stored diagnostic report.",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "id": "https://api.nextpertise.nl/schemas/broadband/diagnostics/get_report_reply_v1.json",
    "type": "object",
    "properties": {
        "report": {
            "status": {
                "type": "string",
                "enum": [
                    "new",
                    "pending",
                    "complete",
                    "error"
                ]
            },
            "error_details": {
                "type": [
                    "string",
                    "null"
                ]
            }
        }
    },
    "additionalProperties": true,
    "required": [
        "report"
    ]
}