# HG changeset patch # User Chris Cannam # Date 1478083800 0 # Node ID 24cc4c04d4003bf95cd8d812f4858ead9b6ae3c4 # Parent e8d6e39faaecf1c2076cdaad0946e1b02bf19c6f# Parent 1f4ed70d8f1efe022bb80345585367c77bce714b Merge from branch piperurl diff -r 1f4ed70d8f1e -r 24cc4c04d400 capnp/piper.capnp --- 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 { diff -r 1f4ed70d8f1e -r 24cc4c04d400 json/schema/listrequest.json --- 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 }