ObservationTimeSeries Data Type

Properties
name data type description
observationTimeSeriesId number the id of the observation time series
cropOrganism Organism the crop organism
cropOrganismId number the crop organism id
organism Organism the organism
organismId number the organism id
year number the year of the observation time series
name string the name of the observation time series
label string This logic if also implemented in the observation app, see the function timeSeriesLabel in CommonUtil.vue
description string the description of the observation time series
created number the creation date of the observation time series
lastModified number
userId number the userId
source string from where the observation time series originally was created, either WEB or APP
lastModifiedBy number
locationPointOfInterestId number the locationPointOfInterestId
locationPointOfInterest PointOfInterest the location
geoInfo string
locationIsPrivate boolean the locationIsPrivate
polygonService PolygonService the polygon service

Example

{
  "observationTimeSeriesId" : 12345,
  "cropOrganism" : {
    "organismId" : 12345,
    "latinName" : "...",
    "tradeName" : "...",
    "logicallyDeleted" : true,
    "organismLocaleSet" : [ {
      "organismLocalePK" : { },
      "localName" : "..."
    }, {
      "organismLocalePK" : { },
      "localName" : "..."
    } ],
    "organismExternalResourceSet" : [ {
      "organismExternalResourcePK" : { },
      "resourceIdentifier" : "...",
      "organism" : { },
      "externalResource" : { },
      "resourceUrl" : "..."
    }, {
      "organismExternalResourcePK" : { },
      "resourceIdentifier" : "...",
      "organism" : { },
      "externalResource" : { },
      "resourceUrl" : "..."
    } ],
    "parentOrganismId" : 12345,
    "hierarchyCategoryId" : 12345,
    "childOrganisms" : [ { }, { } ],
    "isPest" : true,
    "isCrop" : true,
    "extraProperties" : {
      "property1" : { },
      "property2" : { }
    },
    "observationDataSchema" : "...",
    "observationData" : "..."
  },
  "cropOrganismId" : 12345,
  "organism" : {
    "organismId" : 12345,
    "latinName" : "...",
    "tradeName" : "...",
    "logicallyDeleted" : true,
    "organismLocaleSet" : [ {
      "organismLocalePK" : { },
      "localName" : "..."
    }, {
      "organismLocalePK" : { },
      "localName" : "..."
    } ],
    "organismExternalResourceSet" : [ {
      "organismExternalResourcePK" : { },
      "resourceIdentifier" : "...",
      "organism" : { },
      "externalResource" : { },
      "resourceUrl" : "..."
    }, {
      "organismExternalResourcePK" : { },
      "resourceIdentifier" : "...",
      "organism" : { },
      "externalResource" : { },
      "resourceUrl" : "..."
    } ],
    "parentOrganismId" : 12345,
    "hierarchyCategoryId" : 12345,
    "childOrganisms" : [ { }, { } ],
    "isPest" : true,
    "isCrop" : true,
    "extraProperties" : {
      "property1" : { },
      "property2" : { }
    },
    "observationDataSchema" : "...",
    "observationData" : "..."
  },
  "organismId" : 12345,
  "year" : 12345,
  "name" : "...",
  "label" : "...",
  "description" : "...",
  "created" : 12345,
  "lastModified" : 12345,
  "userId" : 12345,
  "source" : "...",
  "lastModifiedBy" : 12345,
  "locationPointOfInterestId" : 12345,
  "locationPointOfInterest" : {
    "isPrivate" : true,
    "pointOfInterestId" : 12345,
    "name" : "...",
    "longitude" : 12345.0,
    "latitude" : 12345.0,
    "altitude" : 12345.0,
    "countryCode" : {
      "countryCode" : "...",
      "phoneCode" : "..."
    },
    "timeZone" : "...",
    "properties" : {
      "property1" : { },
      "property2" : { }
    },
    "userId" : 12345,
    "weatherForecastProviderId" : {
      "weatherForecastProviderId" : 12345,
      "name" : "...",
      "description" : "...",
      "infoUrl" : "..."
    },
    "pointOfInterestExternalResourceSet" : [ {
      "pointOfInterestExternalResourcePK" : { },
      "resourceIdentifier" : "...",
      "externalResource" : { },
      "externalResourceUrl" : "..."
    }, {
      "pointOfInterestExternalResourcePK" : { },
      "resourceIdentifier" : "...",
      "externalResource" : { },
      "externalResourceUrl" : "..."
    } ],
    "pointOfInterestTypeId" : 12345,
    "gisGeom" : {
      "area" : 12345.0,
      "SRID" : 12345,
      "userData" : { },
      "envelope" : { },
      "simple" : true,
      "factory" : { },
      "length" : 12345.0,
      "interiorPoint" : { },
      "empty" : true,
      "precisionModel" : { },
      "numGeometries" : 12345,
      "geometryType" : "...",
      "rectangle" : true,
      "boundary" : { },
      "envelopeInternal" : { },
      "numPoints" : 12345,
      "valid" : true,
      "dimension" : 12345,
      "centroid" : { },
      "coordinates" : [ { }, { } ],
      "coordinate" : { },
      "boundaryDimension" : 12345
    },
    "geoJSON" : "...",
    "isForecastLocation" : true,
    "lastEditedTime" : 12345
  },
  "geoInfo" : "...",
  "locationIsPrivate" : true,
  "polygonService" : {
    "polygonServiceId" : 12345,
    "polygonServiceName" : "...",
    "description" : "...",
    "gisSearchUrlTemplate" : "...",
    "epsg" : 12345
  }
}