Catnap is a framework for supporting partial JSON and JSONP responses in RESTful web services by allowing users to supply arbitrary queries in the URL.
Catnap supports partial responses in the following web frameworks:
By default, the server will send back the full representation of a rest resource for every request. Partial responses let you request only the elements you are interested in, instead of the full resource representation. This allows your client application to avoid transferring, parsing, and storing unneeded fields, so you can utilize network and memory resources more efficiently.
For example, take the two responses below. Both are requests for the same resource, but let's assume we are only interested in the following fields:
https://www.catnap.it/products/12345/details
{
"id": "12345",
"name": "Product 1",
"prices": {
"list": "$120.00",
"sale": "89.99"
},
"images": [
{
"sortOrder": 1,
"url": "https://catnap-springboot-sample.herokuapp.com\/12345-primary.png",
"alt": "Product 1",
"size": "primary"
},
{
"sortOrder": 2,
"url": "https://catnap-springboot-sample.herokuapp.com\/12345-thumbnail.png",
"alt": "Product 1",
"size": "thumbnail"
}
]
}
https://www.catnap.it/products/12345/details?fields=name,prices(list),images(url)[size=thumbnail]
{
"name" : "Product 1",
"prices" : {
"list" : "$120.00"
},
"images" : [ {
"url" : "https://catnap-springboot-sample.herokuapp.com/12345-thumbnail.png"
} ]
}
As you can see, the partial response is a significant reduction in payload size and message complexity. By allowing the consumer of the API to specify the fields they are interested in you can significantly reduce the complexity of response messages as well as improve performance over the wire.
Catnap libraries are available from JCenter.
Please see the wiki for detailed documentation on how to get started using Catnap.
For documentation on the Catnap Query Language, please consult the Catnap Query Language Reference.
Please see the included example projects for demonstrations on how to configure and use Catnap with your favorite web framework.
For bugs, questions and discussions please use the Github Issues.
Copyright 2016-2019 Greg Whitaker
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.