diff --git a/xbmc/interfaces/json-rpc/ServiceDescription.h b/xbmc/interfaces/json-rpc/ServiceDescription.h index 682d4d5971723..a10443451a5f0 100644 --- a/xbmc/interfaces/json-rpc/ServiceDescription.h +++ b/xbmc/interfaces/json-rpc/ServiceDescription.h @@ -683,8 +683,8 @@ namespace JSONRPC "\"List.Limits\": {" "\"type\": \"object\"," "\"properties\": {" - "\"start\": { \"type\": \"integer\", \"minimum\": 0, \"default\": 0 }," - "\"end\": { \"type\": \"integer\", \"minimum\": 0, \"default\": -1, \"description\": \"The number of items in the list being returned\" }" + "\"start\": { \"type\": \"integer\", \"minimum\": 0, \"default\": 0, \"description\": \"Index of the first item to return\" }," + "\"end\": { \"type\": \"integer\", \"minimum\": 0, \"default\": -1, \"description\": \"Index of the last item to return\" }" "}," "\"additionalProperties\": false" "}", diff --git a/xbmc/interfaces/json-rpc/types.json b/xbmc/interfaces/json-rpc/types.json index 9ab1917f67ebb..b688c7d8fe1a1 100644 --- a/xbmc/interfaces/json-rpc/types.json +++ b/xbmc/interfaces/json-rpc/types.json @@ -655,8 +655,8 @@ "List.Limits": { "type": "object", "properties": { - "start": { "type": "integer", "minimum": 0, "default": 0 }, - "end": { "type": "integer", "minimum": 0, "default": -1, "description": "The number of items in the list being returned" } + "start": { "type": "integer", "minimum": 0, "default": 0, "description": "Index of the first item to return" }, + "end": { "type": "integer", "minimum": 0, "default": -1, "description": "Index of the last item to return" } }, "additionalProperties": false },