com.snowplowanalytics.snowplow.analytics.scalasdk.json

JsonShredder

Related Doc: package json

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: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. def clone(): AnyRef

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  15. 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

  16. 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

  17. val schemaPattern: Regex

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

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

    Definition Classes
    AnyRef
  19. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped