[3020] add sample response in documentation

This commit is contained in:
katie_smilecdr 2021-09-27 15:09:44 -04:00
parent c5cacacb23
commit b86f596c80
2 changed files with 32 additions and 1 deletions

View File

@ -1,4 +1,5 @@
---
type: add
issue: 3020
jira: SMILE-685,SMILE-3146
title: "Added documentation for `$partition-management-read-partition`. Added `$partition-management-list-partitions` operation and documentation."

View File

@ -243,5 +243,35 @@ An HTTP POST to the following URL would be used to invoke this operation:
http://example.com/DEFAULT/$partition-management-list-partitions
```
This operation returns a `Parameters` resource that looks like the following:
```json
{
"resourceType": "Parameters",
"parameter": [ {
"name": "partition",
"part": [ {
"name": "id",
"valueInteger": 1
}, {
"name": "name",
"valueCode": "PARTITION-1"
}, {
"name": "description",
"valueString": "a description1"
} ]
}, {
"name": "partition",
"part": [ {
"name": "id",
"valueInteger": 2
}, {
"name": "name",
"valueCode": "PARTITION-2"
}, {
"name": "description",
"valueString": "a description2"
} ]
} ]
}
```