# HG changeset patch # User Chris Cannam # Date 1478082987 0 # Node ID 0c7b6db47bb9aa190de7242d689379c35009cb95 # Parent 729645a0e0cef014e24caf7ac14fd3200101dd94 Add "from" parameter to list request diff -r 729645a0e0ce -r 0c7b6db47bb9 capnp/piper.capnp --- a/capnp/piper.capnp Wed Oct 12 12:52:14 2016 +0100 +++ b/capnp/piper.capnp Wed Nov 02 10:36:27 2016 +0000 @@ -119,6 +119,7 @@ [ adaptInputDomain, adaptChannelCount, adaptBufferSize ]; struct ListRequest { + from @0 :List(Text); } struct ListResponse { diff -r 729645a0e0ce -r 0c7b6db47bb9 json/schema/listrequest.json --- a/json/schema/listrequest.json Wed Oct 12 12:52:14 2016 +0100 +++ b/json/schema/listrequest.json Wed Nov 02 10:36:27 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 }