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.
- SpatialThing :
- # Thing that was observed (like `EconomicResource` or `Agent`)
- 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)
- ObservableResult! :
- ID! :
- # Grouping around something to create a boundary or context, used for documenting,
- # accounting, planning.
- AccountingScope!] : [
- # The person (`Agent`) or a machine like a sensor (`EconomicResource` or
- # `ResourceSpecification`) who actually conducted the observation
- Observer! :
- # A textual description or comment.
- String :
- # Optionally defines the economic process during which this event occured
- Process :
- # Type of measurement (eg, temperature, weight...).
- ObservableProperty! :
- # The agent who is providing the observation
- Agent! :
- # The date and time at which the observation event.
- DateTime! :
- }