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