OBJECT

ObservablePhenomenon

Possible qualitative assessment of an ObservableProperty. (eg. property "contamination" may have phenomenon like "high", "some", "none")

link GraphQL Schema definition

  • type ObservablePhenomenon {
  • # What observable property does this assessment apply to?
  • choiceOf: ObservableProperty
  • # A numerical representation of this phenomenon, to be used when automatic
  • # analysis is needed (like value calculation formulas).
  • formulaQuantifier: Float
  • id: ID!
  • # A name for this phenomenon (eg. high, ripe, organic). Unique to each
  • # ObservableProperty.
  • label: String!
  • # A textual description or comment.
  • note: String
  • }