{
    "type": "object",
    "title": "Create Hook Request",
    "description": "The hook to create",
    "required": ["hookUrl", "apis"],
    "properties": {
        "hookUrl": {
            "type": "string",
            "description": "The URL of the hook."
        },
        "apis": {
            "type": "object",
            "description": "An object with properties that correspond to API subscriptions.",
            "properties": {
                "vehicle": {
                    "type": "boolean",
                    "description": "Optional. Indicates whether to enable storage for the Vehicle API."
                },
                "transport": {
                    "type": "boolean",
                    "description": "Optional. Indicates whether to enable storage for the Transport API."
                }
            }
        }
    }
}
