Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
jsonrpc: fix JSON schema description for List.Limits properties
  • Loading branch information
Montellese committed Sep 3, 2012
1 parent e13dcf3 commit 0e62ff8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions xbmc/interfaces/json-rpc/ServiceDescription.h
Expand Up @@ -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"
"}",
Expand Down
4 changes: 2 additions & 2 deletions xbmc/interfaces/json-rpc/types.json
Expand Up @@ -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
},
Expand Down

0 comments on commit 0e62ff8

Please sign in to comment.