public async Task InvokeAsync(
            HttpContext context,
            IContentStorage contentStore)
        {
            Guid   contentId = Guid.Parse((string)context.GetRouteValue("id"));
            string schema    = (string)context.GetRouteValue("schema");

            await contentStore.DeleteAsync(schema, contentId);
        }