{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "description": "Gives details of where media connected to an Input came from",
    "properties": {
        "id": {
            "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$",
            "type": [
                "string",
                "null"
            ]
        },
        "type": {
            "enum": [
                "source",
                "receiver",
                null
            ],
            "type": [
                "string",
                "null"
            ]
        }
    },
    "required": [
        "id",
        "type"
    ],
    "title": "Input Parent Resource",
    "type": "object"
}
