c@171: { c@178: "id": "http://vamp-plugins.org/piper/json/schema/basic#", c@171: "$schema": "http://json-schema.org/draft-04/schema#", c@171: "description": "schema for a common unit of basic metadata", c@171: "type": "object", c@171: "properties": { c@171: "identifier": { c@171: "type": "string", c@171: "pattern": "^[a-zA-Z0-9_-]+$" c@171: }, c@171: "name": { c@171: "type": "string" c@171: }, c@171: "description": { c@171: "type": "string" c@171: } c@171: }, c@171: "required": [ "identifier" ], c@171: "additionalProperties": false c@171: }