TaxonBase Data Type

Subtypes
Taxon
Properties
name data type constraints description
name string   The name of the taxon.
authority string  
group string   The species group this taxon belongs to.
taxaList TaxaList   The taxa list for the taxon.
externalKey string   The key in an external reference list.
defaultSettlementStatusFukarek SettlementStatusFukarek  
preferred boolean required Indicates weather this taxon is the preferred one or a synonym / common name.
Properties inherited from BaseInt
id number   The id of the entity.
Properties inherited from Base
createdBy string   The id of the user who created this entity.

This entity is read only and populated by the service. It is ignored when saving entities.

creationDate string   The timestamp of the cration of this entity. The timestamp is in the timezone Europe/Berlin by default.

This entity is read only and populated by the service. It is ignored when saving entities.

links array of Link   A collection of Links related to this entity.

This entity is read only and populated by the service. It is ignored when saving entities.

modifiedBy string   The id of the user who changed this entity last.

This entity is read only and populated by the service. It is ignored when saving entities.

modificationDate string   The timestamp of the last modification on this entity. The timestamp is in the timezone Europe/Berlin by default.

This entity is read only and populated by the service. It is ignored when saving entities.

userAlloewdToEdit boolean required Indicates weather the user who made the request is allowed to edit this entity or not.

This entity is read only and populated by the service. It is ignored when saving entities.

obfuscated boolean required Indicate weather the data is obfuscated

This entity is read only and populated by the service. It is ignored when saving entities.

allowedOperations array of Operation  

Example

{
  "name" : "...",
  "authority" : "...",
  "group" : "...",
  "taxaList" : {
    "name" : "...",
    "description" : "...",
    "taxaGroups" : [ "...", "..." ],
    "id" : 12345,
    "createdBy" : "...",
    "creationDate" : "...",
    "links" : [ {
      "href" : "...",
      "rel" : "..."
    }, {
      "href" : "...",
      "rel" : "..."
    } ],
    "modifiedBy" : "...",
    "modificationDate" : "...",
    "userAlloewdToEdit" : true,
    "obfuscated" : true,
    "allowedOperations" : [ "DELETE", "CREATE" ]
  },
  "externalKey" : "...",
  "defaultSettlementStatusFukarek" : "ANGESIEDELT",
  "preferred" : true,
  "id" : 12345,
  "createdBy" : "...",
  "creationDate" : "...",
  "links" : [ {
    "href" : "...",
    "rel" : "..."
  }, {
    "href" : "...",
    "rel" : "..."
  } ],
  "modifiedBy" : "...",
  "modificationDate" : "...",
  "userAlloewdToEdit" : true,
  "obfuscated" : true,
  "allowedOperations" : [ "DELETE", "READ" ]
}