Skip to content

Commit

Permalink
Additional properties swagger correctness fix (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
vaishnavi-janardhan authored Oct 11, 2021
1 parent dacabd6 commit 026d5b8
Showing 1 changed file with 25 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2443,7 +2443,16 @@
},
"managementRpDetails": {
"$ref": "#/definitions/ResourceProviderDetails",
"description": "parent RP details",
"description": "Parent RP details - this returns only the first or default parent RP from the entire list",
"readOnly": true
},
"managementRpDetailsList": {
"description": "List of parent RP details supported for configuration.",
"uniqueItems": false,
"type": "array",
"items": {
"$ref": "#/definitions/ResourceProviderDetails"
},
"readOnly": true
},
"error": {
Expand Down Expand Up @@ -2915,6 +2924,14 @@
"$ref": "#/definitions/ProductLine"
},
"readOnly": true
},
"resourceProviderDetails": {
"description": "Contains details related to resource provider",
"uniqueItems": false,
"type": "array",
"items": {
"$ref": "#/definitions/ResourceProviderDetails"
}
}
}
},
Expand Down Expand Up @@ -3023,7 +3040,13 @@
"ResourceProviderDetails": {
"description": "Management RP details",
"type": "object",
"properties": {}
"properties": {
"resourceProviderNamespace": {
"description": "Resource provider namespace",
"type": "string",
"readOnly": true
}
}
},
"ReturnOrderItemDetails": {
"description": "Return order item request body",
Expand Down

0 comments on commit 026d5b8

Please sign in to comment.