com.snowplowanalytics.snowplow.analytics.scalasdk.json

JsonShredder

object JsonShredder

Converts unstructured events and custom contexts to a format which the Elasticsearch mapper can understand

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JsonShredder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  17. def parseContexts(contextsType: ContextsType)(contexts: String): Validated[ContextsOutput]

    Convert a contexts JSON to an Elasticsearch-compatible JObject enveloped in ContextOutput For example, the JSON

    Convert a contexts JSON to an Elasticsearch-compatible JObject enveloped in ContextOutput For example, the JSON

    { "schema": "iglu:com.snowplowanalytics.snowplow/contexts/jsonschema/1-0-0", "data": [ { "schema": "iglu:com.acme/unduplicated/jsonschema/1-0-0", "data": { "unique": true } }, { "schema": "iglu:com.acme/duplicated/jsonschema/1-0-0", "data": { "value": 1 } }, { "schema": "iglu:com.acme/duplicated/jsonschema/1-0-0", "data": { "value": 2 } }, { "schema": "iglu:com.acme/duplicated/jsonschema/1-0-1", "data": { "value": 3 } } ] }

    would become

    { "iglu:com.acme/duplicated/jsonschema/1-0-0": [{"value": 1}, {"value": 2}], "iglu:com.acme/duplicated/jsonschema/1-0-1": [{"value": 3}], "iglu:com.acme/unduplicated/jsonschema/1-0-0": [{"unique": true}] }

    NOTE: it does not merge contexts on per-model basis (as we can see from 1st and 2nd items above)

    contextsType

    contexts flavor (derived or custom)

    contexts

    Contexts JSON

    returns

    Contexts JSON in an Elasticsearch-compatible format

  18. def parseUnstruct(unstruct: String): Validated[UnstructEventOutput]

    Convert an unstructured event JSON to an Elasticsearch-compatible JObject For example, the JSON

    Convert an unstructured event JSON to an Elasticsearch-compatible JObject For example, the JSON

    { "schema": "iglu:com.snowplowanalytics.snowplow/unstruct_event/jsonschema/1-0-0", "data": { "schema": "iglu:com.snowplowanalytics.snowplow/link_click/jsonschema/1-0-1", "data": { "key": "value" } } }

    would become

    { "iglu:com.snowplowanalytics.snowplow/link_click/jsonschema/1-0-1": {"key": "value"} }

    unstruct

    Unstructured event JSON

    returns

    Unstructured event JSON in an Elasticsearch-compatible format

  19. val schemaPattern: Regex

    Canonical Iglu Schema URI regex TODO: replace with Iglu core: https://github.

    Canonical Iglu Schema URI regex TODO: replace with Iglu core: https://github.com/snowplow/snowplow-scala-analytics-sdk/issues/38

  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  21. def toString(): String

    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped