Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Real-time Example Primitive


Image Modified

...


Warning







Real-time Example List





Info


Example Missing for story telling

Any Ideas?

...

Event schema; describes each individual attributes of an event. The three most important and required fields are:

SP CassAttributeType
Descibtion
Description
Class EventPropertyruntimeNameStringname of the attribute for unique identification

runtimeTypeStringprimitive data type of the attribute
Class EventPropertydomainProperty
ArrayList < String
ArrayList<String URI>semantic description of the attribute


  • Runtime Name. The runtime name indicates the key of the property at runtime, e.g., if our JSON message contains a structure such as {"plateNumber" : "KA-F 123"}, the runtime name must be plateNumber.

  • Runtime Type. An event property must have a primitive type (we will later see how to model more complex properties such as lists and nested properties). The type must be an instance of XMLSchema primitives, however, the SDK provides convenience methods to provide the property type.

  • Domain Property. The domain property indicates the semantics of the event property. For instance, the latitude property is linked to the http://www.w3.org/2003/01/geo/wgs84_pos#lat property of the WGS84 vocabulary. The domain property should be an URI as part of an existing or domain-specific vocabulary. The SDK provides convenience methods for popular vocabularies (e.g., Schema.org, Dolce or WGS84).

...

...


SP ClassTypeTypeDescription
Class EventPropertylabelString
Class EventPropertydescriptionString

measurementUnitString

String valuesSpeciticationString
Class EventPropertyboolean requiredboolean
Class EventPropertyeventPropertyQualitiesArrayList
Class EventPropertyrequiresEventPropertyQualitiesArrayList
Class EventPropertypropertyScopeString
Class EventPropertyindexint
Class EventPropertyruntimeIDString



Warning

Why

 runtimeType => not Part of Class EvbentProperty Class

 measurementUnit => not Part of Class EvbentProperty Class

 valuesSpecitication =>  not Part of Class EvbentProperty Class 


Image Added

Image Added

Image Added



Event Property Types


TypeDescription
EventPropertiyPrimitiveflat single value
EventPropertyListList of flat single values
EventPropertyNestedDeprecated?


Read Event Property

It can be called in the required Section via

Read WayDescription
EpRequirements


Warning

How to read List?


Write

Write WayDescription
EventPropertiyPrimitiveBuilder
EpProperty
Arrays.asList(EpProperties... , EpProperties... )

EventPropertiyPrimitiveBuilder


This is used to build a complex Event Schema with the runtimeName, runtimeType and domainProperty and also optional attributes.

RequiredMethodDescription
yes.create(Datatypes datatype, String runtimeName)
yes.domainProperty(String domainProperty)
yes.build()



optional.description(String description)
optional.label(String label)
optional.scope(PropertyScope propertyScope)
optional.measrumentUnit(URI measurementUnit)
optional.resolution(Float resolution)
optional.valueSpecification(Float min, Float max, Float step)
optional.valueSpecification( String label, String description, List< String> allowedValues)


Warning

Why is domainProperty not an Array List?


EpProperty

this is used to build a basic Event Schema with
the method also defines the runtimeType

Time

MethodDescription
timestampProperty(String runtimeName)

String

MethodDescription
stringEp(Label label, String runtimeName, String domainProperty, Enumeration enumeration)
stringEp(Label label, String runtimeName, String domainProperty, PropertyScope propertyScope)
stringEp(Label label, String runtimeName, String domainProperty)
stringEp(Label label, String runtimeName, List <Uri> domainProperties)

Double

MethodDescription
doubleEp(Label label, String runtimeName, String domainProperty)
doubleEp(Label label, String runtimeName, String domainProperty, Float minValue, Float maxValue, Float step)

Integer

MethodDescription
integerEp(Label label, String runtimeName, List < Uri> domainProperties)
integerEp(Label label, String runtimeName, String domainProperty, QuantitativeValue valueSpecification)
integerEp(Label label, String runtimeName, String domainProperty, Float minValue, Float maxValue, Float step)

Number

MethodDescription
numberEp(Label label, String runtimeName, String domainProperty)

General

MethodDescription
ep(Label label, String runtimeType, String runtimeName, String domainProperty)

Boolean

MethodDescription
booleanEp(Label label, String runtimeName, String domainProperty)

Long

MethodDescription
longEp(Label label, String runtimeName, String domainProperty)
longEp(Label label, String runtimeName, List< URI> domainProperty)

Image

MethodDescription
imageProperty(String runtimeName)

List

General

MethodDescription
listEp(Label label, String runtimeName, Datatypes runtimeType, String domainProperty)
listEp(Label label, String runtimeName, EventPropety eventProperty, String domainProperty)
listEp(Label label, String runtimeName, EventProperty eventProperty)

String

MethodDescription
ListStringEp(Label label, String runtimeName, String domainProperty)

Double

MethodDescription
listDoupleEp(Label label, String runtimeName, String domainProperty)

Boolean

MethodDescription
listBoolean(Label label, String runtimeName, String domainProperty))

Integer

MethodDescription
listIntegerEp(Label label, String runtimeName, String domainProperty)

Long

MethodDescription
listLongEp(Label label, String runtimeName, String domainProperty)

Nested

MethodDescription
listNestedEp(Label label, String runtimeName, List<EventProperty... eventProperties)
listNestedEp(Label label, String runtimeName, String domainProperty, List<Eventproperty> listItemProperties)

Scope

There are 4 types of scope

Why needs scope to be mentioned in requiredEvent?

TypeDescription
HEADER_PROPERTYA property that defines meta-information about the event, for instance its occurrence time
DIMENSION_PROPERTYA property that describes the context of a measurement, e.g., the ID of a machine or a thing.
MEASUREMENT_PROPERTYA property that contains (often quantitative) measurement values
NONEThe property scope is not further described. Use this scope for defining property requirements where the data processor's functionality does not require any specific property scope (e.g., a text filter that can filter any text-based property)

Quality


Image Added

DomainProperty

You can either use an own URI Link
or use a variety of StreamPipes implemented vocabularies.
A full list can be found under the vocabulary package:


https://github.com/apache/streampipes/tree/dev/streampipes-vocabulary/src/main/java/org/apache/streampipes/vocabulary



Image Added

Labels

Code Block

Labels.withID(String internalID)
Labels.empty()


Code Block
Deprecated:

Labels.from(String internalID, String label, String description)
Labels.withTitle(String label, String desciption)
Labels.fromResourcess(String resourceIdentifier, String resourceName) Class            | Type                           | Type      | Descibtion |
| ------------------- | ------------------------------ | --------- | ---------- |
| Class EventProperty | label                          | String    |            |
| Class EventProperty | description                    | String    |            |
|                     | measurementUnit                | String    |            |
|                     | String valuesSpecitication     | String    |            |
| Class EventProperty | boolean required               | boolean   |            |
| Class EventProperty | eventPropertyQualities         | ArrayList |            |
| Class EventProperty | requiresEventPropertyQualities | ArrayList |            |
| Class EventProperty | propertyScope                  | String    |            |
| Class EventProperty | index                          | int       |            |
| Class EventProperty | runtimeID                      | String    |            |