{ "name": "taxonomy", "path": "taxonomies.csv", "description": "The taxonomies from which taxonomy terms are taken.", "datapackage_metadata": { "format": "csv", "mediatype": "text/csv", "profile": "tabular-data-resource", "order": 21 }, "type": "object", "properties": { "id": { "name": "id", "type": "string", "title": "Identifier", "description": "The identifier of the taxonomy. Each entry must have a unique identifier", "format": "uuid", "constraints": { "unique": true }, "example": "5c4d79d7-cc55-470e-9f1f-8cad074e4892" }, "name": { "name": "name", "type": "string", "title": "Name", "description": "The name of the taxonomy from which terms are sourced.", "constraints": { "unique": false }, "example": "name" }, "description": { "name": "description", "type": "string", "title": "Description", "description": "A free text description of the taxonomy.", "constraints": { "unique": false }, "example": "description" }, "uri": { "name": "uri", "type": "string", "title": "URI", "description": "The URI of the taxonomy.", "format": "uri", "constraints": { "unique": false }, "example": "http://example.com" }, "version": { "name": "version", "type": "string", "title": "Version", "description": "The version of the taxonomy.", "constraints": { "unique": false }, "example": "version" }, "metadata": { "name": "metadata", "type": "array", "title": "Metadata", "description": "A record of the changes that have been made to the data in order to maintain provenance information.", "items": { "$ref": "metadata.json" } } }, "required": [ "id", "name", "description" ] }