bio.cuanto.protocolTarget

cuanto.bio

Documentation

Subject for surveys following a Protocol.

main record

Subject for surveys following a Protocol.

Record Key tid Timestamp-based ID

Properties

protocol string at-uri Required

Protocol this target belongs to.

scope array of union Required

One or more scope criteria defining what this target is.

minLength: 1 items
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "protocol",
      "scope"
    ],
    "properties": {
      "scope": {
        "type": "array",
        "items": {
          "refs": [
            "#taxonScope",
            "#verbatimScope"
          ],
          "type": "union"
        },
        "minLength": 1,
        "description": "One or more scope criteria defining what this target is."
      },
      "protocol": {
        "type": "string",
        "format": "at-uri",
        "description": "Protocol this target belongs to."
      }
    }
  },
  "description": "Subject for surveys following a Protocol."
}
taxonScope object

A taxonomic criterion for a survey target.

Properties

kingdom string Optional

Taxonomic kingdom. Combined with scientificName and taxonRank, provides disambiguation for most homonyms.

scientificName string Required

Full scientific name without rank modifiers.

taxonID string uri Optional

Identifier for the target taxon, preferably a stable URI, e.g. https://www.gbif.org/species/102151594.

taxonRank string Required

Taxonomic rank, e.g. family, genus, subspecies, variety.

vernacularName string Optional

Common or vernacular name for the taxon, following dwc:vernacularName. Set by the protocol author as the preferred label shown to surveyors.

View raw schema
{
  "type": "object",
  "required": [
    "scientificName",
    "taxonRank"
  ],
  "properties": {
    "kingdom": {
      "type": "string",
      "description": "Taxonomic kingdom. Combined with scientificName and taxonRank, provides disambiguation for most homonyms."
    },
    "taxonID": {
      "type": "string",
      "format": "uri",
      "description": "Identifier for the target taxon, preferably a stable URI, e.g. https://www.gbif.org/species/102151594."
    },
    "taxonRank": {
      "type": "string",
      "description": "Taxonomic rank, e.g. family, genus, subspecies, variety."
    },
    "scientificName": {
      "type": "string",
      "description": "Full scientific name without rank modifiers."
    },
    "vernacularName": {
      "type": "string",
      "description": "Common or vernacular name for the taxon, following dwc:vernacularName. Set by the protocol author as the preferred label shown to surveyors."
    }
  },
  "description": "A taxonomic criterion for a survey target."
}
verbatimScope object

A free-text criterion for cases not covered by structured types (sensu Humboldt eco:verbatimTargetScope).

Properties

verbatimTargetScope string Required

Free-text description of what is being targeted, e.g. 'trees > 10 cm DBH'.

View raw schema
{
  "type": "object",
  "required": [
    "verbatimTargetScope"
  ],
  "properties": {
    "verbatimTargetScope": {
      "type": "string",
      "description": "Free-text description of what is being targeted, e.g. 'trees > 10 cm DBH'."
    }
  },
  "description": "A free-text criterion for cases not covered by structured types (sensu Humboldt eco:verbatimTargetScope)."
}

Lexicon Garden

@