OBJECT

DERIVEDFEATURE

link GraphQL Schema definition

  • type DERIVEDFEATURE implements FEATURE {
  • # The maximum age for the value of the feature (Format: e.g.
  • # "7Y,6M,5W,4D,3H,2min,1sec", "2M", "1Y,5D")
  • maximumDataAge: Period
  • name: String
  • dataType: DataType
  • # The owning class of the feature in case it is a dynamic type
  • dynamicType: CUSTOMTYPEDEFINITION
  • # Feature that is used as weight for grouping strategies
  • groupingWeightReference: FEATURE
  • owningDomainClass: DOMAINCLASS
  • required: Boolean
  • description: String
  • # Whether the feature is changeable
  • changeable: Boolean
  • # The maximum length of the text in case the feature is a text feature
  • maxLength: Long
  • # Whether the feature is unique
  • unique: Boolean
  • many: Boolean
  • # Whether the feature has a derived unit
  • derivedUnit: Boolean
  • id: Long
  • # The type of the feature in case it is an enumeration
  • enumerationType: String
  • # Strategy that is used for grouping (average, sum)
  • groupingStrategy: FeatureGroupingStrategy
  • # The custom enum that defines the literals in case the feature is a reference to
  • # a custom enum literal
  • customEnum: CUSTOMENUM
  • # Arguments
  • # orderBy: [Not documented]
  • dataProvisions(orderBy: [OrderBy]): [DATAPROVISION]
  • # The domain type of the feature in case it is a reference
  • domainType: Type
  • computable: Boolean
  • version: Long
  • }