annotate schema/basic.json @ 51:944a65cd4314 outputid-string-in-featureset

Make RequestResponse types more consistent by adding plugin to ConfigurationResponse and introducing a FinishRequest
author Chris Cannam
date Mon, 19 Sep 2016 13:35:56 +0100
parents 4c3ac59c9089
children 0c8629d9855d
rev   line source
Chris@23 1 {
Chris@23 2 "id": "http://vamp-plugins.org/json/schema/basic#",
Chris@23 3 "$schema": "http://json-schema.org/draft-04/schema#",
Chris@23 4 "description": "schema for the basic part of various Vamp descriptors",
Chris@23 5 "type": "object",
Chris@23 6 "properties": {
Chris@28 7 "identifier": {
Chris@28 8 "type": "string",
Chris@28 9 "pattern": "^[a-zA-Z0-9_-]+$"
Chris@28 10 },
Chris@28 11 "name": {
Chris@28 12 "type": "string"
Chris@28 13 },
Chris@28 14 "description": {
Chris@28 15 "type": "string"
Chris@28 16 }
Chris@23 17 },
Chris@23 18 "required": [ "identifier" ],
Chris@23 19 "additionalProperties": false
Chris@23 20 }