OBJECT

Observation

An observation event that records the measurement or assessement of an economic resource.

link GraphQL Schema definition

  • type Observation {
  • # The place where an observation occured. Usually mappable.
  • atLocation: SpatialThing
  • # Thing that was observed (like `EconomicResource` or `Agent`)
  • hasFeatureOfInterest: ObservableObject!
  • # The result of the observation, which can be one of:
  • # - Unit and measurement of what was observed (in the case of quantitative
  • # measurements)
  • # - Name and other information (using `ObservablePhenomenon`) about what was
  • # observed (in the case of qualitative measurements)
  • hasResult: ObservableResult!
  • id: ID!
  • # Grouping around something to create a boundary or context, used for documenting,
  • # accounting, planning.
  • inScopeOf: [AccountingScope!]
  • # The person (`Agent`) or a machine like a sensor (`EconomicResource` or
  • # `ResourceSpecification`) who actually conducted the observation
  • madeBySensor: Observer!
  • # A textual description or comment.
  • note: String
  • # Optionally defines the economic process during which this event occured
  • observedDuring: Process
  • # Type of measurement (eg, temperature, weight...).
  • observedProperty: ObservableProperty!
  • # The agent who is providing the observation
  • provider: Agent!
  • # The date and time at which the observation event.
  • resultTime: DateTime!
  • }