{
    "type": "object",
    "title": "Storage Status Response",
    "description": "An object with the list of APIs where event storage is currently enabled.",
    "properties": {
        "enabledApis": {
            "type": "object",
            "description": "An object indicating whether storage is enabled for the APIs included.",
            "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."
                }
            }
        },
        "topicArn": {
            "description": "The ARN of the SNS topic hook requests are sent from. The value is `null` if storage is disabled.",
            "type": ["string", "null"]
        }
    },
    "required": [
        "enabledApis",
        "topicArn"
    ]
}
