Sha256: 398ad5c13e6d85c869b7256a31bf4102595d1eb4ddfb278d28b176b09cb4579d

Contents?: true

Size: 1.34 KB

Versions: 6

Compression:

Stored size: 1.34 KB

Contents

{
  "id": "taxonomy.json#",
  "$schema": "http://json-schema.org/draft-04/schema#",
  "description": "schema for taxonomy",
  "type": "object",
  "required": ["classificationSystem", "taxonomicProcedure", "taxonClass"],
  "additionalProperties": false,
  "properties": {
    "classificationSystem": {
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "citation.json"
      }
    },
    "taxonGeneralScope": {
      "type": "string"
    },
    "observer": {
      "type": "array",
      "items": {
        "$ref": "contact.json#/definitions/contactRef"
      }
    },
    "taxonomicProcedure": {
      "type": "string"
    },
    "voucher": {
      "type": "object",
      "required": ["specimen", "repository"],
      "properties": {
        "specimen": {
          "type": "string"
        },
        "repository": {
          "$ref": "contact.json#/definitions/contactRef"
        }
      }
    },
    "taxonClass": {
      "type": "array",
      "minItems": 1,
      "items": {
        "type": "object",
        "required": ["taxonRank", "taxonValue"],
        "additionalProperties": false,
        "properties": {
          "taxonRank": {
            "type": "string"
          },
          "taxonValue": {
            "type": "string"
          },
          "common": {
            "type": "string"
          }
        }
      }
    }
  }
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
adiwg-json_schemas-0.8.1 schema/schema/taxonomy.json
adiwg-json_schemas-0.8.0 schema/schema/taxonomy.json
adiwg-json_schemas-0.7.0 schema/schema/taxonomy.json
adiwg-json_schemas-0.5.2 schema/schema/taxonomy.json
adiwg-json_schemas-0.5.0 schema/schema/taxonomy.json
adiwg-json_schemas-0.4.0 schema/schema/taxonomy.json