All Downloads are FREE. Search and download functionalities are using the official Maven repository.

json.schema.analytics.webAnalyticEventData.json Maven / Gradle / Ivy

There is a newer version: 1.6.0-rc1
Show newest version
{
  "$id": "https://open-metadata.org/schema/analytics/webAnalyticEventData.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "webAnalyticEventData",
  "description": "web analytics event data",
  "type": "object",
  "javaType": "org.openmetadata.schema.analytics.WebAnalyticEventData",
  "properties": {
      "eventId": {
        "description": "Unique identifier of the report.",
        "$ref": "../type/basic.json#/definitions/uuid"
      },
      "timestamp": {
        "description": "event timestamp",
        "$ref": "../type/basic.json#/definitions/timestamp"
      },
      "eventType": {
        "description": "event type",
        "$ref": "./basic.json#/definitions/webAnalyticEventType"
      },
      "eventData": {
        "description": "Web analytic data captured",
        "oneOf": [
          {"$ref": "webAnalyticEventType/pageViewEvent.json"},
          {"$ref": "webAnalyticEventType/customEvent.json"}
        ]
      }
    },
  "required": ["eventType", "timestamp"],
  "additionalProperties": false
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy