From fd9f4dc8ff7b1ab63803033b63e2a456908875de Mon Sep 17 00:00:00 2001 From: Jethro Nederhof Date: Wed, 11 Dec 2024 15:42:50 +1100 Subject: [PATCH] Add com.snowplowanalytics.snowplow/obscure_element/jsonschema/1-0-0 --- .../obscure_element/jsonschema/1-0-0 | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 schemas/com.snowplowanalytics.snowplow/obscure_element/jsonschema/1-0-0 diff --git a/schemas/com.snowplowanalytics.snowplow/obscure_element/jsonschema/1-0-0 b/schemas/com.snowplowanalytics.snowplow/obscure_element/jsonschema/1-0-0 new file mode 100644 index 00000000..f48844db --- /dev/null +++ b/schemas/com.snowplowanalytics.snowplow/obscure_element/jsonschema/1-0-0 @@ -0,0 +1,20 @@ +{ + "description": "Event that fires when an element matching a named configuration is detected as becoming hidden from a user or moving out of the viewport.", + "properties": { + "element_name": { + "description": "The name of the element that was obscured. Should match the element name field in entities that describe this particular element.", + "type": "string", + "maxLength": 255 + } + }, + "additionalProperties": false, + "type": "object", + "required": ["element_name"], + "self": { + "vendor": "com.snowplowanalytics.snowplow", + "name": "obscure_element", + "format": "jsonschema", + "version": "1-0-0" + }, + "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#" +}