{
    "title": "List available diagnostics reply v1",
    "description": "Produce a list of available diagnostic tests.",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "id": "https://api.nextpertise.nl/schemas/broadband/diagnostics/list_available_diagnostics_reply_v1.json",
    "type": "object",
    "properties": {
        "provider": {
            "type": "string"
        },
        "available_diagnostics": {
            "type": "array",
            "items": {
                "type": "string",
                "enum": [
                    "authentication_log",
                    "delt",
                    "selt",
                    "fiber-check",
                    "ont-check",
                    "ont-lan-check"
                ],
                "description": "Enum options:<pre class=\"empty-params-pre\">authentication_log|delt|selt|fiber-check|ont-check|ont-lan-check</pre>. undefined"
            }
        },
        "number_of_tests": {
            "type": "integer"
        }
    },
    "additionalProperties": false,
    "required": [
        "available_diagnostics"
    ]
}