SDK Warning
ARM and Data plane OpenAPI(swagger) specs
Based on the response model schema, operation '${operationId}' might be pageable. Consider adding the x-ms-pageable extension.
This rule was introduced to check if a pageable operation has x-ms-pageable enabled.
Having the x-ms-pageable enabled if the operation is pageable. Eg:
......
......
"get": {
"operationId": "Foo_List",
"responses": {
"200": {
"description": ". ",
"schema": {
"$ref": "#/definitions/ant"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
......
......