ObservationListItem Data Type

A JSON friendly, public representation of the Observation

Implemented Interfaces
Comparable
Properties
name data type description
observationId number the observationId
observerId number The ID of the observer
observerName string The full name of the observer
observationTimeSeriesId number the observationTimeSeriesId
timeOfObservation number the timeOfObservation
organismName string the organismName
cropOrganismName string the cropOrganismName
observationTimeSeriesLabel string
locationPointOfInterestId number
locationPointOfInterestName string
geoInfo string the geoInfo
observationHeading string the observationHeading
observationText string the observation text
organismId number the organismId
cropOrganismId number the cropOrganismId
broadcastMessage boolean the broadcastMessage
locationIsPrivate boolean the locationIsPrivate
observationDataSchema ObservationDataSchema the observationDataSchema
observationData string the observationData
isPositive boolean

Example

{
  "observationId" : 12345,
  "observerId" : 12345,
  "observerName" : "...",
  "observationTimeSeriesId" : 12345,
  "timeOfObservation" : 12345,
  "organismName" : "...",
  "cropOrganismName" : "...",
  "observationTimeSeriesLabel" : "...",
  "locationPointOfInterestId" : 12345,
  "locationPointOfInterestName" : "...",
  "geoInfo" : "...",
  "observationHeading" : "...",
  "observationText" : "...",
  "organismId" : 12345,
  "cropOrganismId" : 12345,
  "broadcastMessage" : true,
  "locationIsPrivate" : true,
  "observationDataSchema" : {
    "observationDataSchemaPK" : {
      "organizationId" : 12345,
      "organismId" : 12345
    },
    "dataSchema" : "...",
    "dataModel" : "..."
  },
  "observationData" : "...",
  "isPositive" : true
}