diff --git a/README.md b/README.md index 292a4f3..482c364 100644 --- a/README.md +++ b/README.md @@ -20,3 +20,4 @@ specific issue: * [API Discoverability](discoverability.md) * [Compatibility](compatibility.md) * [API Extensions](extensions.md) +* [Pagination and Filtering](pagination_filtering.md) diff --git a/pagination_filtering.md b/pagination_filtering.md new file mode 100644 index 0000000..eed0ca7 --- /dev/null +++ b/pagination_filtering.md @@ -0,0 +1,20 @@ +Pagination and Filtering +======================== + +This topic document serves to provide guidance on how to handle the pagination of large result sets and the best ways to provide filtering capabilities in a project's public REST API. + +Pagination +---------- + +**TODO** Discuss the methods currently used to paginate in OpenStack APIs. + +**TODO** Make a proposal/decision on the recommended way to implement +pagination. + +Filtering +--------- + +**TODO** Discuss the methods currently used to filter in OpenStack APIs. + +**TODO** Make a proposal/decision on the recommended way to implement +filtering.