@@ -500,7 +500,7 @@ For complex queries, use `QueryParametersTemplate`. This next example sends a `P
500500Example:
501501
502502``` json
503- request: {
503+ " request" : {
504504 "apiEndpoint" : " https://graph.microsoft.com/v1.0/me/messages" ,
505505 "httpMethod" : " POST" ,
506506 "queryTimeFormat" : " yyyy-MM-ddTHH:mm:ssZ" ,
@@ -546,7 +546,7 @@ A server response with JSON format is expected, with the requested data in the p
546546 "format" : " json" ,
547547 "SuccessStatusJsonPath" : " $.status" ,
548548 "SuccessStatusValue" : " success" ,
549- "IsGzipCompressed: true
549+ "IsGzipCompressed" : true
550550 }
551551```
552552
@@ -595,14 +595,14 @@ The most common paging type is when a server data source API provides URLs to th
595595Here are some examples:
596596
597597``` json
598- Paging : {
598+ "paging" : {
599599 "pagingType" : " LinkHeader" ,
600600 "linkHeaderTokenJsonPath" : " $.metadata.links.next"
601601}
602602```
603603
604604``` json
605- Paging : {
605+ "paging" : {
606606 "pagingType" : " PersistentLinkHeader" ,
607607 "pageSizeParameterName" : " limit" ,
608608 "pageSize" : 500
@@ -629,7 +629,7 @@ Paging: {
629629Example:
630630
631631``` json
632- Paging : {
632+ "paging" : {
633633 "pagingType" : " NextPageUrl" ,
634634 "nextPageTokenJsonPath" : " $.data.repository.pageInfo.endCursor" ,
635635 "hasNextFlagJsonPath" : " $.data.repository.pageInfo.hasNextPage" ,
@@ -659,15 +659,15 @@ Paging: {
659659Examples:
660660
661661``` json
662- Paging : {
662+ "paging" : {
663663 "pagingType" : " NextPageToken" ,
664664 "nextPageRequestHeader" : " ETag" ,
665665 "nextPageTokenResponseHeader" : " ETag"
666666}
667667```
668668
669669``` json
670- Paging : {
670+ "paging" : {
671671 "pagingType" : " PersistentToken" ,
672672 "nextPageParaName" : "gta",
673673 "nextPageTokenJsonPath" : "$.alerts[-1:]._id"
@@ -688,7 +688,7 @@ Paging: {
688688
689689Example:
690690``` json
691- Paging : {
691+ "paging" : {
692692 "pagingType" : " Offset" ,
693693 "offsetParaName" : " offset" ,
694694 "pageSize" : 50 ,
@@ -716,7 +716,7 @@ Paging: {
716716Example:
717717
718718``` json
719- Paging : {
719+ "paging" : {
720720 "pagingType" : " CountBasedPaging" ,
721721 "pageNumberParaName" : " page" ,
722722 "pageSize" : 10 ,
0 commit comments