From 6422cbb83a0ade839d04c541a922282134e31aed Mon Sep 17 00:00:00 2001 From: Daria Kiritseva Date: Tue, 2 Jun 2020 11:47:46 -0700 Subject: [PATCH] fixed blobstorage contract (#595) Co-authored-by: Young Bu Park Co-authored-by: Aman Bhardwaj --- reference/specs/bindings/blobstorage.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/reference/specs/bindings/blobstorage.md b/reference/specs/bindings/blobstorage.md index c0946d336..83492d407 100644 --- a/reference/specs/bindings/blobstorage.md +++ b/reference/specs/bindings/blobstorage.md @@ -30,9 +30,7 @@ By default the Azure Blob Storage output binding will auto generate a UUID as bl Applications publishing to an Azure Blob Storage output binding should send a message with the following contract: ```json { - "data": { - "message": "Hi" - }, + "data": "file content", "metadata": { "blobName" : "filename.txt", "ContentType" : "text/plain", @@ -44,4 +42,4 @@ Applications publishing to an Azure Blob Storage output binding should send a me "Custom" : "hello-world", } } -``` \ No newline at end of file +```