changeset 87:24cc4c04d400 listargs

Merge from branch piperurl
author Chris Cannam
date Wed, 02 Nov 2016 10:50:00 +0000
parents e8d6e39faaec (diff) 1f4ed70d8f1e (current diff)
children 7913455c77da 2d4caf268062
files json/schema/listrequest.json
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/capnp/piper.capnp	Wed Nov 02 10:49:45 2016 +0000
+++ b/capnp/piper.capnp	Wed Nov 02 10:50:00 2016 +0000
@@ -119,6 +119,7 @@
       [ adaptInputDomain, adaptChannelCount, adaptBufferSize ];
 
 struct ListRequest {
+    from               @0  :List(Text);
 }
 
 struct ListResponse {
--- a/json/schema/listrequest.json	Wed Nov 02 10:49:45 2016 +0000
+++ b/json/schema/listrequest.json	Wed Nov 02 10:50:00 2016 +0000
@@ -4,6 +4,11 @@
     "description": "schema for a list request for feature extractors; may be served in the params field of a list-method rpcrequest",
     "type": "object",
     "properties": {
+        "from": {
+            "type": "array",
+            "items": { "type": "string" }
+        }
     },
+    "required": [],
     "additionalProperties": false
 }