annotate schema/enums.json @ 75:6b6668cdb016 jsonrpc

Remove the term "plugin" in various places
author Chris Cannam
date Thu, 06 Oct 2016 13:38:16 +0100
parents 0c8629d9855d
children
rev   line source
Chris@23 1 {
Chris@23 2 "id": "http://vamp-plugins.org/json/schema/enums#",
Chris@23 3 "$schema": "http://json-schema.org/draft-04/schema#",
Chris@74 4 "description": "schema for common feature extractor enum types",
Chris@23 5 "definitions": {
Chris@23 6 "input_domain": {
Chris@55 7 "type": "string",
Chris@23 8 "enum": [ "TimeDomain", "FrequencyDomain" ]
Chris@23 9 },
Chris@23 10 "sample_type": {
Chris@55 11 "type": "string",
Chris@23 12 "enum": [ "OneSamplePerStep", "FixedSampleRate", "VariableSampleRate" ]
Chris@23 13 },
Chris@23 14 "adapter_flags": {
Chris@55 15 "type": "string",
Chris@23 16 "enum": [ "AdaptNone", "AdaptInputDomain", "AdaptChannelCount",
Chris@23 17 "AdaptBufferSize", "AdaptAllSafe", "AdaptAll" ]
Chris@23 18 }
Chris@23 19 }
Chris@23 20 }