Skip to content

Commit

Permalink
adding the field on which on which summary is done in the response (#…
Browse files Browse the repository at this point in the history
…11383)

Co-authored-by: Durgesh Kumar <[email protected]>
  • Loading branch information
dukum and Durgesh Kumar authored Dec 7, 2020
1 parent 0c56ec5 commit 0d41369
Showing 1 changed file with 21 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1271,7 +1271,7 @@
}
}
},
"SummaryItem": {
"Summary": {
"description": "Summary item.",
"type": "object",
"properties": {
Expand All @@ -1286,6 +1286,23 @@
}
}
},
"SummaryCollection": {
"description": "Summary Collection.",
"type": "object",
"properties": {
"fieldName": {
"description": "Gets or sets the field name on which summary is done.",
"type": "string"
},
"summary": {
"description": "Gets or sets the list of summary items.",
"type": "array",
"items": {
"$ref": "#/definitions/Summary"
}
}
}
},
"MoveCollectionProperties": {
"description": "Defines the move collection properties.",
"type": "object",
Expand Down Expand Up @@ -1514,12 +1531,9 @@
"description": "Gets the value of next link.",
"type": "string"
},
"summary": {
"description": "Gets or the list of summary items.",
"type": "array",
"items": {
"$ref": "#/definitions/SummaryItem"
}
"summaryCollection": {
"description": "Gets or sets the list of summary items and the field on which summary is done.",
"$ref": "#/definitions/SummaryCollection"
}
}
},
Expand Down

0 comments on commit 0d41369

Please sign in to comment.