Subject for surveys following a Protocol.
Record Key
tid
Timestamp-based ID
Properties
Protocol this target belongs to.
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."
}
A taxonomic criterion for a survey target.
Properties
Taxonomic kingdom. Combined with scientificName and taxonRank, provides disambiguation for most homonyms.
Full scientific name without rank modifiers.
Identifier for the target taxon, preferably a stable URI, e.g. https://www.gbif.org/species/102151594.
Taxonomic rank, e.g. family, genus, subspecies, variety.
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."
}
A free-text criterion for cases not covered by structured types (sensu Humboldt eco:verbatimTargetScope).
Properties
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)."
}