Retrieve the available ExtensionPackages.
availability
created_at
display_name
name
platform
status
updated_at
version
There is a query parameter, max_availability
, that has a custom filter behavior.
Listing ExtensionPackages without this parameter, or with the max_availability=development
query component, will return the latest versions of ExtensionPackages that are owned by the user`s Org with development
, private
or public
availability, and the latest public
versions for the rest of the ExtensionPackages.
Listing ExtensionPackages with the max_availability=private
query component will return the latest versions of ExtensionPackages that are owned by the user`s Org with private
or public
availability, and the latest public
versions for the rest of the ExtensionPackages.
Listing ExtensionPackages with the max_availability=public
query component will return the latest public
versions of ExtensionPackages.
GET /extension_packages
curl https://reactor.adobe.io/extension_packages \
-H "Accept: application/vnd.api+json;revision=1" \
-H "Content-Type: application/vnd.api+json" \
-H "Authorization: Bearer [TOKEN]" \
-H "X-Api-Key: [KEY]" \
-H "X-Gw-Ims-Org-Id: [ORG_ID]" \
-X GET
{
"data": [
{
"id": "EP8451c63b3239426892f8cca940349990",
"type": "extension_packages",
"attributes": {
"actions": [
{
"id": "core::actions::custom-code",
"name": "custom-code",
"schema": {
"type": "object",
"oneOf": [
{
"required": [
"language",
"source"
],
"properties": {
"global": {
"type": "boolean"
},
"source": {
"type": "string",
"minLength": 1
},
"language": {
"enum": [
"javascript"
]
}
},
"additionalProperties": false
},
{
"required": [
"language",
"source"
],
"properties": {
"source": {
"type": "string",
"minLength": 1
},
"language": {
"enum": [
"html"
]
}
},
"additionalProperties": false
}
],
"$schema": "http://json-schema.org/draft-04/schema#"
},
"libPath": "src/lib/actions/customCode.js",
"viewPath": "actions/customCode.html",
"transforms": [
{
"type": "customCode",
"propertyPath": "source"
}
],
"displayName": "Custom Code"
},
{
"id": "core::actions::direct-call",
"name": "direct-call",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"identifier"
],
"properties": {
"detail": {
"type": "object",
"properties": {
"eventObjectEntries": {
"type": "array",
"items": {
"type": "object",
"required": [
"key"
],
"properties": {
"key": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
}
},
"additionalProperties": false
}
}
},
"additionalProperties": false
},
"identifier": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/actions/directCall.js",
"viewPath": "actions/directCall.html",
"displayName": "Trigger Direct Call"
}
],
"author": {
"url": "http://adobe.com",
"name": "Adobe",
"email": "reactor@adobe.com"
},
"availability": "public",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EP8451c63b3239426892f8cca940349990",
"conditions": [
{
"id": "core::conditions::browser",
"name": "browser",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"browsers"
],
"properties": {
"browsers": {
"type": "array",
"items": {
"enum": [
"Chrome",
"Firefox",
"IE",
"Edge",
"Safari",
"Mobile Safari"
],
"type": "string"
}
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/browser.js",
"viewPath": "conditions/browser.html",
"displayName": "Browser",
"categoryName": "Technology"
},
{
"id": "core::conditions::cookie",
"name": "cookie",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"name",
"value"
],
"properties": {
"name": {
"pattern": "^[A-Za-z0-9!#$%&'*+\-.^_|~]+$"
},
"value": {
"type": "string",
"minLength": 1
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/cookie.js",
"viewPath": "conditions/cookie.html",
"displayName": "Cookie",
"categoryName": "Data"
},
{
"id": "core::conditions::custom-code",
"name": "custom-code",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"source"
],
"properties": {
"source": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/customCode.js",
"viewPath": "conditions/customCode.html",
"transforms": [
{
"type": "function",
"parameters": [
"event",
"target"
],
"propertyPath": "source"
}
],
"displayName": "Custom Code",
"categoryName": "Data"
},
{
"id": "core::conditions::date-range",
"name": "date-range",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"end": {
"type": "string",
"format": "date-time"
},
"start": {
"type": "string",
"format": "date-time"
},
"timezone": {
"type": "string"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/dateRange.js",
"viewPath": "conditions/dateRange.html",
"transforms": [
{
"type": "remove",
"propertyPath": "timezone"
}
],
"displayName": "Date Range",
"categoryName": "Other"
},
{
"id": "core::conditions::device-type",
"name": "device-type",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"deviceTypes"
],
"properties": {
"deviceTypes": {
"type": "array",
"items": {
"enum": [
"Desktop",
"iPhone",
"iPad",
"iPod",
"Nokia",
"Windows Phone",
"Blackberry",
"Android"
],
"type": "string"
}
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/deviceType.js",
"viewPath": "conditions/deviceType.html",
"displayName": "Device Type",
"categoryName": "Technology"
},
{
"id": "core::conditions::domain",
"name": "domain",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"domains"
],
"properties": {
"domains": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/domain.js",
"viewPath": "conditions/domain.html",
"displayName": "Domain",
"categoryName": "URL"
},
{
"id": "core::conditions::hash",
"name": "hash",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"hashes"
],
"properties": {
"hashes": {
"type": "array",
"items": {
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"type": "string",
"minLength": 1
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
},
"minItems": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/hash.js",
"viewPath": "conditions/hash.html",
"displayName": "Hash",
"categoryName": "URL"
},
{
"id": "core::conditions::landing-page",
"name": "landing-page",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"page"
],
"properties": {
"page": {
"type": "string",
"minLength": 1
},
"pageIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/landingPage.js",
"viewPath": "conditions/landingPage.html",
"displayName": "Landing Page",
"categoryName": "Engagement"
},
{
"id": "core::conditions::max-frequency",
"name": "max-frequency",
"schema": {
"type": "object",
"oneOf": [
{
"required": [
"count",
"unit"
],
"properties": {
"unit": {
"enum": [
"pageView",
"session",
"visitor",
"second",
"minute",
"day",
"week",
"month"
],
"type": "string"
},
"count": {
"type": "number",
"minimum": 1
}
},
"additionalProperties": false
},
{
"required": [
"unit"
],
"properties": {
"unit": {
"enum": [
"visitor"
],
"type": "string"
}
},
"additionalProperties": false
}
],
"$schema": "http://json-schema.org/draft-04/schema#"
},
"libPath": "src/lib/conditions/maxFrequency.js",
"viewPath": "conditions/maxFrequency.html",
"displayName": "Max Frequency",
"categoryName": "Other"
},
{
"id": "core::conditions::new-returning-visitor",
"name": "new-returning-visitor",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"isNewVisitor"
],
"properties": {
"isNewVisitor": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/newReturningVisitor.js",
"viewPath": "conditions/newReturningVisitor.html",
"displayName": "New/Returning Visitor",
"categoryName": "Engagement"
},
{
"id": "core::conditions::operating-system",
"name": "operating-system",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"operatingSystems"
],
"properties": {
"operatingSystems": {
"type": "array",
"items": {
"enum": [
"Windows",
"MacOS",
"Linux",
"Unix",
"iOS",
"Android"
],
"type": "string"
}
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/operatingSystem.js",
"viewPath": "conditions/operatingSystem.html",
"displayName": "Operating System",
"categoryName": "Technology"
},
{
"id": "core::conditions::page-views",
"name": "page-views",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"operator",
"count",
"duration"
],
"properties": {
"count": {
"type": "number"
},
"duration": {
"enum": [
"lifetime",
"session"
],
"type": "string"
},
"operator": {
"enum": [
">",
"=",
"<"
],
"type": "string"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/pageViews.js",
"viewPath": "conditions/pageViews.html",
"displayName": "Page Views",
"categoryName": "Engagement"
},
{
"id": "core::conditions::path",
"name": "path",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"paths"
],
"properties": {
"paths": {
"type": "array",
"items": {
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"type": "string",
"minLength": 1
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
},
"minItems": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/path.js",
"viewPath": "conditions/path.html",
"displayName": "Path Without Query String",
"categoryName": "URL"
},
{
"id": "core::conditions::path-and-querystring",
"name": "path-and-querystring",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"paths"
],
"properties": {
"paths": {
"type": "array",
"items": {
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"type": "string",
"minLength": 1
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
},
"minItems": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/pathAndQuerystring.js",
"viewPath": "conditions/pathAndQuerystring.html",
"displayName": "Path And Query String",
"categoryName": "URL"
},
{
"id": "core::conditions::protocol",
"name": "protocol",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"protocol"
],
"properties": {
"protocol": {
"enum": [
"http:",
"https:"
],
"type": "string"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/protocol.js",
"viewPath": "conditions/protocol.html",
"displayName": "Protocol",
"categoryName": "URL"
},
{
"id": "core::conditions::screen-resolution",
"name": "screen-resolution",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"widthOperator",
"width",
"heightOperator",
"height"
],
"properties": {
"width": {
"type": "number"
},
"height": {
"type": "number"
},
"widthOperator": {
"enum": [
">",
"=",
"<"
],
"type": "string"
},
"heightOperator": {
"enum": [
">",
"=",
"<"
],
"type": "string"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/screenResolution.js",
"viewPath": "conditions/screenResolution.html",
"displayName": "Screen Resolution",
"categoryName": "Technology"
},
{
"id": "core::conditions::sampling",
"name": "sampling",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"rate"
],
"properties": {
"rate": {
"type": "number",
"maximum": 1,
"minimum": 0
},
"persistCohort": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/sampling.js",
"viewPath": "conditions/sampling.html",
"displayName": "Sampling",
"categoryName": "Other"
},
{
"id": "core::conditions::sessions",
"name": "sessions",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"operator",
"count"
],
"properties": {
"count": {
"type": "number"
},
"operator": {
"enum": [
">",
"=",
"<"
],
"type": "string"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/sessions.js",
"viewPath": "conditions/sessions.html",
"displayName": "Sessions",
"categoryName": "Engagement"
},
{
"id": "core::conditions::subdomain",
"name": "subdomain",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"subdomains"
],
"properties": {
"subdomains": {
"type": "array",
"items": {
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"type": "string",
"minLength": 1
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
},
"minItems": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/subdomain.js",
"viewPath": "conditions/subdomain.html",
"displayName": "Subdomain",
"categoryName": "URL"
},
{
"id": "core::conditions::time-on-site",
"name": "time-on-site",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"operator",
"minutes"
],
"properties": {
"minutes": {
"oneOf": [
{
"type": "number"
},
{
"type": "string",
"pattern": "^%([^%]+)%$"
}
]
},
"operator": {
"enum": [
">",
"=",
"<"
],
"type": "string"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/timeOnSite.js",
"viewPath": "conditions/timeOnSite.html",
"displayName": "Time On Site",
"categoryName": "Engagement"
},
{
"id": "core::conditions::traffic-source",
"name": "traffic-source",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"source"
],
"properties": {
"source": {
"type": "string",
"minLength": 1
},
"sourceIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/trafficSource.js",
"viewPath": "conditions/trafficSource.html",
"displayName": "Traffic Source",
"categoryName": "Engagement"
},
{
"id": "core::conditions::query-string-parameter",
"name": "query-string-parameter",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string",
"minLength": 1
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/queryStringParameter.js",
"viewPath": "conditions/queryStringParameter.html",
"displayName": "Query String Parameter",
"categoryName": "URL"
},
{
"id": "core::conditions::value-comparison",
"name": "value-comparison",
"schema": {
"type": "object",
"oneOf": [
{
"required": [
"leftOperand",
"comparison",
"rightOperand"
],
"properties": {
"comparison": {
"type": "object",
"required": [
"operator"
],
"properties": {
"operator": {
"enum": [
"equals",
"doesNotEqual"
],
"type": "string"
},
"caseInsensitive": {
"type": "boolean"
}
},
"additionalProperties": false
},
"leftOperand": {
"type": "string",
"pattern": "^%([^%]+)%$"
},
"rightOperand": {
"oneOf": [
{
"type": "number"
},
{
"type": "string"
}
]
}
},
"additionalProperties": false
},
{
"required": [
"leftOperand",
"comparison",
"rightOperand"
],
"properties": {
"comparison": {
"type": "object",
"required": [
"operator"
],
"properties": {
"operator": {
"enum": [
"contains",
"doesNotContain",
"startsWith",
"doesNotStartWith",
"endsWith",
"doesNotEndWith",
"matchesRegex",
"doesNotMatchRegex"
],
"type": "string"
},
"caseInsensitive": {
"type": "boolean"
}
},
"additionalProperties": false
},
"leftOperand": {
"type": "string",
"pattern": "^%([^%]+)%$"
},
"rightOperand": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
{
"required": [
"leftOperand",
"comparison",
"rightOperand"
],
"properties": {
"comparison": {
"type": "object",
"required": [
"operator"
],
"properties": {
"operator": {
"enum": [
"lessThan",
"lessThanOrEqual",
"greaterThan",
"greaterThanOrEqual"
],
"type": "string"
}
},
"additionalProperties": false
},
"leftOperand": {
"type": "string",
"pattern": "^%([^%]+)%$"
},
"rightOperand": {
"oneOf": [
{
"type": "number"
},
{
"type": "string",
"pattern": "^%([^%]+)%$"
}
]
}
},
"additionalProperties": false
},
{
"required": [
"leftOperand",
"comparison"
],
"properties": {
"comparison": {
"type": "object",
"required": [
"operator"
],
"properties": {
"operator": {
"enum": [
"isTrue",
"isTruthy",
"isFalse",
"isFalsy"
],
"type": "string"
}
},
"additionalProperties": false
},
"leftOperand": {
"type": "string",
"pattern": "^%([^%]+)%$"
}
},
"additionalProperties": false
}
],
"$schema": "http://json-schema.org/draft-04/schema#"
},
"libPath": "src/lib/conditions/valueComparison.js",
"viewPath": "conditions/valueComparison.html",
"displayName": "Value Comparison",
"categoryName": "Data"
},
{
"id": "core::conditions::variable",
"name": "variable",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string",
"minLength": 1
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/variable.js",
"viewPath": "conditions/variable.html",
"displayName": "Variable",
"categoryName": "Data"
},
{
"id": "core::conditions::window-size",
"name": "window-size",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"widthOperator",
"width",
"heightOperator",
"height"
],
"properties": {
"width": {
"type": "number"
},
"height": {
"type": "number"
},
"widthOperator": {
"enum": [
">",
"=",
"<"
],
"type": "string"
},
"heightOperator": {
"enum": [
">",
"=",
"<"
],
"type": "string"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/windowSize.js",
"viewPath": "conditions/windowSize.html",
"displayName": "Window Size",
"categoryName": "Technology"
}
],
"configuration": {
"id": "core::extensionConfiguration::config",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"cspNonce": {
"type": "string",
"pattern": "^%([^%]+)%$"
}
},
"additionalProperties": false
},
"viewPath": "configuration/configuration.html"
},
"created_at": "2022-06-28T20:13:10.558Z",
"data_elements": [
{
"id": "core::dataElements::conditional-value",
"name": "conditional-value",
"schema": {
"type": "object",
"$defs": {
"stringOrNumericField": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"oneOf": [
{
"required": [
"leftOperand",
"comparison",
"rightOperand"
],
"properties": {
"comparison": {
"type": "object",
"required": [
"operator"
],
"properties": {
"operator": {
"enum": [
"equals",
"doesNotEqual"
],
"type": "string"
},
"caseInsensitive": {
"type": "boolean"
}
},
"additionalProperties": false
},
"leftOperand": {
"type": "string",
"pattern": "^%([^%]+)%$"
},
"rightOperand": {
"oneOf": [
{
"type": "number"
},
{
"type": "string"
}
]
},
"fallbackValue": {
"$ref": "#/$defs/stringOrNumericField"
},
"conditionalValue": {
"$ref": "#/$defs/stringOrNumericField"
}
},
"additionalProperties": false
},
{
"required": [
"leftOperand",
"comparison",
"rightOperand"
],
"properties": {
"comparison": {
"type": "object",
"required": [
"operator"
],
"properties": {
"operator": {
"enum": [
"contains",
"doesNotContain",
"startsWith",
"doesNotStartWith",
"endsWith",
"doesNotEndWith",
"matchesRegex",
"doesNotMatchRegex"
],
"type": "string"
},
"caseInsensitive": {
"type": "boolean"
}
},
"additionalProperties": false
},
"leftOperand": {
"type": "string",
"pattern": "^%([^%]+)%$"
},
"rightOperand": {
"type": "string",
"minLength": 1
},
"fallbackValue": {
"$ref": "#/$defs/stringOrNumericField"
},
"conditionalValue": {
"$ref": "#/$defs/stringOrNumericField"
}
},
"additionalProperties": false
},
{
"required": [
"leftOperand",
"comparison",
"rightOperand"
],
"properties": {
"comparison": {
"type": "object",
"required": [
"operator"
],
"properties": {
"operator": {
"enum": [
"lessThan",
"lessThanOrEqual",
"greaterThan",
"greaterThanOrEqual"
],
"type": "string"
}
},
"additionalProperties": false
},
"leftOperand": {
"type": "string",
"pattern": "^%([^%]+)%$"
},
"rightOperand": {
"oneOf": [
{
"type": "number"
},
{
"type": "string",
"pattern": "^%([^%]+)%$"
}
]
},
"fallbackValue": {
"$ref": "#/$defs/stringOrNumericField"
},
"conditionalValue": {
"$ref": "#/$defs/stringOrNumericField"
}
},
"additionalProperties": false
},
{
"required": [
"leftOperand",
"comparison"
],
"properties": {
"comparison": {
"type": "object",
"required": [
"operator"
],
"properties": {
"operator": {
"enum": [
"isTrue",
"isTruthy",
"isFalse",
"isFalsy"
],
"type": "string"
}
},
"additionalProperties": false
},
"leftOperand": {
"type": "string",
"pattern": "^%([^%]+)%$"
},
"fallbackValue": {
"$ref": "#/$defs/stringOrNumericField"
},
"conditionalValue": {
"$ref": "#/$defs/stringOrNumericField"
}
},
"additionalProperties": false
}
],
"$schema": "http://json-schema.org/draft-04/schema#"
},
"libPath": "src/lib/dataElements/conditionalValue.js",
"viewPath": "dataElements/conditionalValue.html",
"displayName": "Conditional Value"
},
{
"id": "core::dataElements::constant",
"name": "constant",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"value"
],
"properties": {
"value": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/constant.js",
"viewPath": "dataElements/constant.html",
"displayName": "Constant"
},
{
"id": "core::dataElements::cookie",
"name": "cookie",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/cookie.js",
"viewPath": "dataElements/cookie.html",
"displayName": "Cookie"
},
{
"id": "core::dataElements::custom-code",
"name": "custom-code",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"source"
],
"properties": {
"source": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/customCode.js",
"viewPath": "dataElements/customCode.html",
"transforms": [
{
"type": "function",
"parameters": [
"event"
],
"propertyPath": "source"
}
],
"displayName": "Custom Code"
},
{
"id": "core::dataElements::dom-attribute",
"name": "dom-attribute",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"elementSelector",
"elementProperty"
],
"properties": {
"elementProperty": {
"type": "string",
"minLength": 1
},
"elementSelector": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/domAttribute.js",
"viewPath": "dataElements/domAttribute.html",
"displayName": "DOM Attribute"
},
{
"id": "core::dataElements::runtime-environment",
"name": "runtime-environment",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"attribute": {
"enum": [
"environmentStage",
"buildDate",
"propertyName",
"propertyId",
"ruleName",
"ruleId",
"eventType",
"eventDetail",
"DCRIdentifier"
]
}
}
},
"libPath": "src/lib/dataElements/runtimeEnvironment.js",
"viewPath": "dataElements/runtimeEnvironment.html",
"displayName": "Runtime Environment"
},
{
"id": "core::dataElements::local-storage",
"name": "local-storage",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/localStorage.js",
"viewPath": "dataElements/localStorage.html",
"displayName": "Local Storage"
},
{
"id": "core::dataElements::merged-objects",
"name": "merged-objects",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"objects"
],
"properties": {
"objects": {
"type": "array",
"items": {
"type": "string",
"pattern": "^%([^%]+)%$"
},
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/mergedObjects.js",
"viewPath": "dataElements/mergedObjects.html",
"displayName": "Merged Objects"
},
{
"id": "core::dataElements::page-info",
"name": "page-info",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"attribute"
],
"properties": {
"attribute": {
"enum": [
"url",
"hostname",
"pathname",
"protocol",
"referrer",
"title"
]
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/pageInfo.js",
"viewPath": "dataElements/pageInfo.html",
"displayName": "Page Info"
},
{
"id": "core::dataElements::query-string-parameter",
"name": "query-string-parameter",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"caseInsensitive": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/queryStringParameter.js",
"viewPath": "dataElements/queryStringParameter.html",
"displayName": "Query String Parameter"
},
{
"id": "core::dataElements::random-number",
"name": "random-number",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"min",
"max"
],
"properties": {
"max": {
"type": "integer"
},
"min": {
"type": "integer"
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/randomNumber.js",
"viewPath": "dataElements/randomNumber.html",
"displayName": "Random Number"
},
{
"id": "core::dataElements::session-storage",
"name": "session-storage",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/sessionStorage.js",
"viewPath": "dataElements/sessionStorage.html",
"displayName": "Session Storage"
},
{
"id": "core::dataElements::javascript-tools",
"name": "javascript-tools",
"schema": {
"type": "object",
"oneOf": [
{
"required": [
"sourceValue",
"operator",
"searchValue"
],
"properties": {
"operator": {
"enum": [
"simpleReplace"
]
},
"searchValue": {
"type": "string",
"minLength": 1
},
"sourceValue": {
"type": "string",
"pattern": "^%([^%]+)%$"
},
"replacementValue": {
"type": "string"
}
},
"additionalProperties": false
},
{
"required": [
"sourceValue",
"operator",
"regexInput"
],
"properties": {
"operator": {
"enum": [
"regexReplace"
]
},
"regexInput": {
"type": "string",
"minLength": 1
},
"replaceAll": {
"type": "boolean"
},
"sourceValue": {
"type": "string",
"pattern": "^%([^%]+)%$"
},
"caseInsensitive": {
"type": "boolean"
},
"replacementValue": {
"type": "string"
}
},
"additionalProperties": false
},
{
"required": [
"sourceValue",
"operator",
"start"
],
"properties": {
"end": {
"type": "number"
},
"start": {
"type": "number"
},
"operator": {
"enum": [
"substring",
"slice"
]
},
"sourceValue": {
"type": "string",
"pattern": "^%([^%]+)%$"
}
},
"additionalProperties": false
},
{
"required": [
"sourceValue",
"operator",
"regexInput"
],
"properties": {
"operator": {
"enum": [
"regexMatch"
]
},
"regexInput": {
"type": "string",
"minLength": 1
},
"sourceValue": {
"type": "string",
"pattern": "^%([^%]+)%$"
},
"caseInsensitive": {
"type": "boolean"
}
},
"additionalProperties": false
},
{
"required": [
"sourceValue",
"operator"
],
"properties": {
"operator": {
"enum": [
"length",
"arrayPop",
"arrayShift"
]
},
"sourceValue": {
"type": "string",
"pattern": "^%([^%]+)%$"
}
},
"additionalProperties": false
},
{
"required": [
"sourceValue",
"operator",
"searchValue"
],
"properties": {
"operator": {
"enum": [
"indexOf",
"lastIndexOf"
]
},
"searchValue": {
"type": "string",
"minLength": 1
},
"sourceValue": {
"type": "string",
"pattern": "^%([^%]+)%$"
}
},
"additionalProperties": false
},
{
"required": [
"sourceValue",
"operator",
"delimiter"
],
"properties": {
"operator": {
"enum": [
"join",
"split"
]
},
"delimiter": {
"type": "string",
"minLength": 1
},
"sourceValue": {
"type": "string",
"pattern": "^%([^%]+)%$"
}
},
"additionalProperties": false
}
],
"$schema": "http://json-schema.org/draft-04/schema#"
},
"libPath": "src/lib/dataElements/javascriptTools.js",
"viewPath": "dataElements/javascriptTools.html",
"displayName": "JavaScript Tools"
},
{
"id": "core::dataElements::javascript-variable",
"name": "javascript-variable",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"path"
],
"properties": {
"path": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/javascriptVariable.js",
"viewPath": "dataElements/javascriptVariable.html",
"displayName": "JavaScript Variable"
},
{
"id": "core::dataElements::device-attributes",
"name": "device-attributes",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"attribute": {
"enum": [
"windowSize",
"screenSize"
]
}
}
},
"libPath": "src/lib/dataElements/deviceAttributes.js",
"viewPath": "dataElements/deviceAttributes.html",
"displayName": "Device Attributes"
},
{
"id": "core::dataElements::visitor-behavior",
"name": "visitor-behavior",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"attribute"
],
"properties": {
"attribute": {
"enum": [
"landingPage",
"trafficSource",
"minutesOnSite",
"sessionCount",
"sessionPageViewCount",
"lifetimePageViewCount",
"isNewVisitor"
]
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/visitorBehavior.js",
"viewPath": "dataElements/visitorBehavior.html",
"displayName": "Visitor Behavior"
}
],
"description": "Provides default event, condition, and data element types available to all Launch properties.",
"discontinued": false,
"display_name": "Core",
"ecma_version": "es5",
"events": [
{
"id": "core::events::blur",
"name": "blur",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/blur.js",
"viewPath": "events/blur.html",
"displayName": "Blur",
"categoryName": "Form"
},
{
"id": "core::events::change",
"name": "change",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"value": {
"type": "string"
},
"bubbleStop": {
"type": "boolean"
},
"valueIsRegex": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/change.js",
"viewPath": "events/change.html",
"displayName": "Change",
"categoryName": "Form"
},
{
"id": "core::events::click",
"name": "click",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"anchorDelay": {
"oneOf": [
{
"type": "number",
"minimum": 1
},
{
"type": "string",
"pattern": "^%([^%]+)%$"
}
]
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/click.js",
"viewPath": "events/click.html",
"displayName": "Click",
"categoryName": "Mouse"
},
{
"id": "core::events::custom-code",
"name": "custom-code",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"source"
],
"properties": {
"source": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/customCode.js",
"viewPath": "events/customCode.html",
"transforms": [
{
"type": "function",
"parameters": [
"trigger"
],
"propertyPath": "source"
}
],
"displayName": "Custom Code",
"categoryName": "Other"
},
{
"id": "core::events::custom-event",
"name": "custom-event",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"type"
],
"properties": {
"type": {
"type": "string",
"minLength": 1
},
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/customEvent.js",
"viewPath": "events/customEvent.html",
"displayName": "Custom Event",
"categoryName": "Other"
},
{
"id": "core::events::data-element-change",
"name": "data-element-change",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/dataElementChange.js",
"viewPath": "events/dataElementChange.html",
"displayName": "Data Element Change",
"categoryName": "Other"
},
{
"id": "core::events::direct-call",
"name": "direct-call",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"identifier"
],
"properties": {
"identifier": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/directCall.js",
"viewPath": "events/directCall.html",
"displayName": "Direct Call",
"categoryName": "Other"
},
{
"id": "core::events::dom-ready",
"name": "dom-ready",
"schema": {
},
"libPath": "src/lib/events/domReady.js",
"displayName": "DOM Ready",
"categoryName": "Page Load"
},
{
"id": "core::events::element-exists",
"name": "element-exists",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"elementSelector"
],
"properties": {
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/elementExists.js",
"viewPath": "events/elementExists.html",
"displayName": "Element Exists",
"categoryName": "Other"
},
{
"id": "core::events::media-ended",
"name": "media-ended",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/mediaEnded.js",
"viewPath": "events/mediaEnded.html",
"displayName": "Media Ended",
"categoryName": "Media"
},
{
"id": "core::events::enters-viewport",
"name": "enters-viewport",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"elementSelector"
],
"properties": {
"delay": {
"oneOf": [
{
"type": "number",
"minimum": 1
},
{
"type": "string",
"pattern": "^%([^%]+)%$"
}
]
},
"frequency": {
"enum": [
"firstEntry",
"everyEntry"
],
"type": "string"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/entersViewport.js",
"viewPath": "events/entersViewport.html",
"displayName": "Enters Viewport",
"categoryName": "Other"
},
{
"id": "core::events::focus",
"name": "focus",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/focus.js",
"viewPath": "events/focus.html",
"displayName": "Focus",
"categoryName": "Form"
},
{
"id": "core::events::hover",
"name": "hover",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"elementSelector"
],
"properties": {
"delay": {
"oneOf": [
{
"type": "number",
"minimum": 1
},
{
"type": "string",
"pattern": "^%([^%]+)%$"
}
]
},
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/hover.js",
"viewPath": "events/hover.html",
"displayName": "Hover",
"categoryName": "Mouse"
},
{
"id": "core::events::key-press",
"name": "key-press",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/keyPress.js",
"viewPath": "events/keyPress.html",
"displayName": "Key Press",
"categoryName": "Keyboard"
},
{
"id": "core::events::media-loaded-data",
"name": "media-loaded-data",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/mediaLoadedData.js",
"viewPath": "events/mediaLoadedData.html",
"displayName": "Media Loaded Data",
"categoryName": "Media"
},
{
"id": "core::events::history-change",
"name": "history-change",
"schema": {
},
"libPath": "src/lib/events/historyChange.js",
"displayName": "History Change",
"categoryName": "Other"
},
{
"id": "core::events::mousedown",
"name": "mousedown",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/mousedown.js",
"viewPath": "events/mousedown.html",
"displayName": "Mousedown",
"categoryName": "Mouse"
},
{
"id": "core::events::window-loaded",
"name": "window-loaded",
"schema": {
},
"libPath": "src/lib/events/windowLoaded.js",
"displayName": "Window Loaded",
"categoryName": "Page Load"
},
{
"id": "core::events::orientation-change",
"name": "orientation-change",
"schema": {
},
"libPath": "src/lib/events/orientationChange.js",
"displayName": "Orientation Change",
"categoryName": "Mobile"
},
{
"id": "core::events::page-bottom",
"name": "page-bottom",
"schema": {
},
"libPath": "src/lib/events/pageBottom.js",
"displayName": "Page Bottom",
"categoryName": "Page Load"
},
{
"id": "core::events::library-loaded",
"name": "library-loaded",
"schema": {
},
"libPath": "src/lib/events/libraryLoaded.js",
"displayName": "Library Loaded (Page Top)",
"categoryName": "Page Load"
},
{
"id": "core::events::media-pause",
"name": "media-pause",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/mediaPause.js",
"viewPath": "events/mediaPause.html",
"displayName": "Media Pause",
"categoryName": "Media"
},
{
"id": "core::events::media-play",
"name": "media-play",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/mediaPlay.js",
"viewPath": "events/mediaPlay.html",
"displayName": "Media Play",
"categoryName": "Media"
},
{
"id": "core::events::media-stalled",
"name": "media-stalled",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/mediaStalled.js",
"viewPath": "events/mediaStalled.html",
"displayName": "Media Stalled",
"categoryName": "Media"
},
{
"id": "core::events::submit",
"name": "submit",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/submit.js",
"viewPath": "events/submit.html",
"displayName": "Submit",
"categoryName": "Form"
},
{
"id": "core::events::tab-blur",
"name": "tab-blur",
"schema": {
},
"libPath": "src/lib/events/tabBlur.js",
"displayName": "Tab Blur",
"categoryName": "Browser"
},
{
"id": "core::events::tab-focus",
"name": "tab-focus",
"schema": {
},
"libPath": "src/lib/events/tabFocus.js",
"displayName": "Tab Focus",
"categoryName": "Browser"
},
{
"id": "core::events::time-on-page",
"name": "time-on-page",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"timeOnPage"
],
"properties": {
"timeOnPage": {
"oneOf": [
{
"type": "number",
"minimum": 1
},
{
"type": "string",
"pattern": "^%([^%]+)%$"
}
]
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/timeOnPage.js",
"viewPath": "events/timeOnPage.html",
"displayName": "Time On Page",
"categoryName": "Other"
},
{
"id": "core::events::media-time-played",
"name": "media-time-played",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"amount",
"unit"
],
"properties": {
"unit": {
"enum": [
"percent",
"second"
],
"type": "string"
},
"amount": {
"oneOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "string",
"pattern": "^%([^%]+)%$"
}
]
},
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/mediaTimePlayed.js",
"viewPath": "events/mediaTimePlayed.html",
"displayName": "Media Time Played",
"categoryName": "Media"
},
{
"id": "core::events::media-volume-change",
"name": "media-volume-change",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/mediaVolumeChange.js",
"viewPath": "events/mediaVolumeChange.html",
"displayName": "Media Volume Change",
"categoryName": "Media"
},
{
"id": "core::events::zoom-change",
"name": "zoom-change",
"schema": {
},
"libPath": "src/lib/events/zoomChange.js",
"displayName": "Zoom Change",
"categoryName": "Mobile"
}
],
"exchange_url": "https://www.adobeexchange.com/experiencecloud.details.100223.adobe-launch-core-extension.html",
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "core",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2022-06-28T20:14:42.859Z",
"version": "3.3.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EP8451c63b3239426892f8cca940349990"
},
"meta": {
"archive_url": "https://assets.adobedtm.com/staging/extensions/archives/public/EP8451c63b3239426892f8cca940349990.zip"
}
},
{
"id": "EP3e96b796382e49a48d76a626395d8cab",
"type": "extension_packages",
"attributes": {
"actions": [
{
"id": "kessel-test::actions::custom-code",
"name": "custom-code",
"schema": {
"type": "object",
"oneOf": [
{
"required": [
"language",
"source"
],
"properties": {
"global": {
"type": "boolean"
},
"source": {
"type": "string",
"minLength": 1
},
"language": {
"enum": [
"javascript"
]
}
},
"additionalProperties": false
},
{
"required": [
"language",
"source"
],
"properties": {
"source": {
"type": "string",
"minLength": 1
},
"language": {
"enum": [
"html"
]
}
},
"additionalProperties": false
}
],
"$schema": "http://json-schema.org/draft-04/schema#"
},
"libPath": "src/lib/actions/customCode.js",
"viewPath": "actions/customCode.html",
"displayName": "Custom Code"
}
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "private",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EP3e96b796382e49a48d76a626395d8cab",
"conditions": [
{
"id": "kessel-test::conditions::browser",
"name": "browser",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"browsers"
],
"properties": {
"browsers": {
"type": "array",
"items": {
"enum": [
"Chrome",
"Firefox",
"IE",
"Edge",
"Safari",
"Mobile Safari"
],
"type": "string"
}
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/browser.js",
"viewPath": "conditions/browser.html",
"displayName": "Browser",
"categoryName": "Technology"
},
{
"id": "kessel-test::conditions::cookie",
"name": "cookie",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"name",
"value"
],
"properties": {
"name": {
"pattern": "^[A-Za-z0-9!#$%&'*+\-.^_|~]+$"
},
"value": {
"type": "string",
"minLength": 1
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/cookie.js",
"viewPath": "conditions/cookie.html",
"displayName": "Cookie",
"categoryName": "Data"
},
{
"id": "kessel-test::conditions::custom-code",
"name": "custom-code",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"source"
],
"properties": {
"source": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/customCode.js",
"viewPath": "conditions/customCode.html",
"displayName": "Custom Code",
"categoryName": "Data"
},
{
"id": "kessel-test::conditions::date-range",
"name": "date-range",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"end": {
"type": "string",
"format": "date-time"
},
"start": {
"type": "string",
"format": "date-time"
},
"timezone": {
"type": "string"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/dateRange.js",
"viewPath": "conditions/dateRange.html",
"displayName": "Date Range",
"categoryName": "Other"
},
{
"id": "kessel-test::conditions::device-type",
"name": "device-type",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"deviceTypes"
],
"properties": {
"deviceTypes": {
"type": "array",
"items": {
"enum": [
"Desktop",
"iPhone",
"iPad",
"iPod",
"Nokia",
"Windows Phone",
"Blackberry",
"Android"
],
"type": "string"
}
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/deviceType.js",
"viewPath": "conditions/deviceType.html",
"displayName": "Device Type",
"categoryName": "Technology"
},
{
"id": "kessel-test::conditions::domain",
"name": "domain",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"domains"
],
"properties": {
"domains": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/domain.js",
"viewPath": "conditions/domain.html",
"displayName": "Domain",
"categoryName": "URL"
},
{
"id": "kessel-test::conditions::hash",
"name": "hash",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"hashes"
],
"properties": {
"hashes": {
"type": "array",
"items": {
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"type": "string",
"minLength": 1
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
},
"minItems": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/hash.js",
"viewPath": "conditions/hash.html",
"displayName": "Hash",
"categoryName": "URL"
},
{
"id": "kessel-test::conditions::landing-page",
"name": "landing-page",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"page"
],
"properties": {
"page": {
"type": "string",
"minLength": 1
},
"pageIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/landingPage.js",
"viewPath": "conditions/landingPage.html",
"displayName": "Landing Page",
"categoryName": "Engagement"
},
{
"id": "kessel-test::conditions::max-frequency",
"name": "max-frequency",
"schema": {
"type": "object",
"oneOf": [
{
"required": [
"count",
"unit"
],
"properties": {
"unit": {
"enum": [
"pageView",
"session",
"visitor",
"second",
"minute",
"day",
"week",
"month"
],
"type": "string"
},
"count": {
"type": "number",
"minimum": 1
}
},
"additionalProperties": false
},
{
"required": [
"unit"
],
"properties": {
"unit": {
"enum": [
"visitor"
],
"type": "string"
}
},
"additionalProperties": false
}
],
"$schema": "http://json-schema.org/draft-04/schema#"
},
"libPath": "src/lib/conditions/maxFrequency.js",
"viewPath": "conditions/maxFrequency.html",
"displayName": "Max Frequency",
"categoryName": "Other"
},
{
"id": "kessel-test::conditions::new-returning-visitor",
"name": "new-returning-visitor",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"isNewVisitor"
],
"properties": {
"isNewVisitor": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/newReturningVisitor.js",
"viewPath": "conditions/newReturningVisitor.html",
"displayName": "New/Returning Visitor",
"categoryName": "Engagement"
},
{
"id": "kessel-test::conditions::operating-system",
"name": "operating-system",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"operatingSystems"
],
"properties": {
"operatingSystems": {
"type": "array",
"items": {
"enum": [
"Windows",
"MacOS",
"Linux",
"Unix",
"iOS",
"Android"
],
"type": "string"
}
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/operatingSystem.js",
"viewPath": "conditions/operatingSystem.html",
"displayName": "Operating System",
"categoryName": "Technology"
},
{
"id": "kessel-test::conditions::page-views",
"name": "page-views",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"operator",
"count",
"duration"
],
"properties": {
"count": {
"type": "number"
},
"duration": {
"enum": [
"lifetime",
"session"
],
"type": "string"
},
"operator": {
"enum": [
">",
"=",
"<"
],
"type": "string"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/pageViews.js",
"viewPath": "conditions/pageViews.html",
"displayName": "Page Views",
"categoryName": "Engagement"
},
{
"id": "kessel-test::conditions::path",
"name": "path",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"paths"
],
"properties": {
"paths": {
"type": "array",
"items": {
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"type": "string",
"minLength": 1
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
},
"minItems": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/path.js",
"viewPath": "conditions/path.html",
"displayName": "Path Without Query String",
"categoryName": "URL"
},
{
"id": "kessel-test::conditions::path-and-querystring",
"name": "path-and-querystring",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"paths"
],
"properties": {
"paths": {
"type": "array",
"items": {
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"type": "string",
"minLength": 1
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
},
"minItems": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/pathAndQuerystring.js",
"viewPath": "conditions/pathAndQuerystring.html",
"displayName": "Path And Query String",
"categoryName": "URL"
},
{
"id": "kessel-test::conditions::protocol",
"name": "protocol",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"protocol"
],
"properties": {
"protocol": {
"enum": [
"http:",
"https:"
],
"type": "string"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/protocol.js",
"viewPath": "conditions/protocol.html",
"displayName": "Protocol",
"categoryName": "URL"
},
{
"id": "kessel-test::conditions::screen-resolution",
"name": "screen-resolution",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"widthOperator",
"width",
"heightOperator",
"height"
],
"properties": {
"width": {
"type": "number"
},
"height": {
"type": "number"
},
"widthOperator": {
"enum": [
">",
"=",
"<"
],
"type": "string"
},
"heightOperator": {
"enum": [
">",
"=",
"<"
],
"type": "string"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/screenResolution.js",
"viewPath": "conditions/screenResolution.html",
"displayName": "Screen Resolution",
"categoryName": "Technology"
},
{
"id": "kessel-test::conditions::sampling",
"name": "sampling",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"rate"
],
"properties": {
"rate": {
"type": "number",
"maximum": 1,
"minimum": 0
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/sampling.js",
"viewPath": "conditions/sampling.html",
"displayName": "Sampling",
"categoryName": "Other"
},
{
"id": "kessel-test::conditions::sessions",
"name": "sessions",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"operator",
"count"
],
"properties": {
"count": {
"type": "number"
},
"operator": {
"enum": [
">",
"=",
"<"
],
"type": "string"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/sessions.js",
"viewPath": "conditions/sessions.html",
"displayName": "Sessions",
"categoryName": "Engagement"
},
{
"id": "kessel-test::conditions::subdomain",
"name": "subdomain",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"subdomains"
],
"properties": {
"subdomains": {
"type": "array",
"items": {
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"type": "string",
"minLength": 1
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
},
"minItems": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/subdomain.js",
"viewPath": "conditions/subdomain.html",
"displayName": "Subdomain",
"categoryName": "URL"
},
{
"id": "kessel-test::conditions::time-on-site",
"name": "time-on-site",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"operator",
"minutes"
],
"properties": {
"minutes": {
"type": "number"
},
"operator": {
"enum": [
">",
"=",
"<"
],
"type": "string"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/timeOnSite.js",
"viewPath": "conditions/timeOnSite.html",
"displayName": "Time On Site",
"categoryName": "Engagement"
},
{
"id": "kessel-test::conditions::traffic-source",
"name": "traffic-source",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"source"
],
"properties": {
"source": {
"type": "string",
"minLength": 1
},
"sourceIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/trafficSource.js",
"viewPath": "conditions/trafficSource.html",
"displayName": "Traffic Source",
"categoryName": "Engagement"
},
{
"id": "kessel-test::conditions::query-string-parameter",
"name": "query-string-parameter",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string",
"minLength": 1
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/queryStringParameter.js",
"viewPath": "conditions/queryStringParameter.html",
"displayName": "Query String Parameter",
"categoryName": "URL"
},
{
"id": "kessel-test::conditions::value-comparison",
"name": "value-comparison",
"schema": {
"type": "object",
"oneOf": [
{
"required": [
"leftOperand",
"comparison",
"rightOperand"
],
"properties": {
"comparison": {
"type": "object",
"required": [
"operator"
],
"properties": {
"operator": {
"enum": [
"equals",
"doesNotEqual"
],
"type": "string"
},
"caseInsensitive": {
"type": "boolean"
}
},
"additionalProperties": false
},
"leftOperand": {
"type": "string",
"pattern": "^%([^%]+)%$"
},
"rightOperand": {
"oneOf": [
{
"type": "number"
},
{
"type": "string"
}
]
}
},
"additionalProperties": false
},
{
"required": [
"leftOperand",
"comparison",
"rightOperand"
],
"properties": {
"comparison": {
"type": "object",
"required": [
"operator"
],
"properties": {
"operator": {
"enum": [
"contains",
"doesNotContain",
"startsWith",
"doesNotStartWith",
"endsWith",
"doesNotEndWith",
"matchesRegex",
"doesNotMatchRegex"
],
"type": "string"
},
"caseInsensitive": {
"type": "boolean"
}
},
"additionalProperties": false
},
"leftOperand": {
"type": "string",
"pattern": "^%([^%]+)%$"
},
"rightOperand": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
{
"required": [
"leftOperand",
"comparison",
"rightOperand"
],
"properties": {
"comparison": {
"type": "object",
"required": [
"operator"
],
"properties": {
"operator": {
"enum": [
"lessThan",
"lessThanOrEqual",
"greaterThan",
"greaterThanOrEqual"
],
"type": "string"
}
},
"additionalProperties": false
},
"leftOperand": {
"type": "string",
"pattern": "^%([^%]+)%$"
},
"rightOperand": {
"oneOf": [
{
"type": "number"
},
{
"type": "string",
"pattern": "^%([^%]+)%$"
}
]
}
},
"additionalProperties": false
},
{
"required": [
"leftOperand",
"comparison"
],
"properties": {
"comparison": {
"type": "object",
"required": [
"operator"
],
"properties": {
"operator": {
"enum": [
"isTrue",
"isTruthy",
"isFalse",
"isFalsy"
],
"type": "string"
}
},
"additionalProperties": false
},
"leftOperand": {
"type": "string",
"pattern": "^%([^%]+)%$"
}
},
"additionalProperties": false
}
],
"$schema": "http://json-schema.org/draft-04/schema#"
},
"libPath": "src/lib/conditions/valueComparison.js",
"viewPath": "conditions/valueComparison.html",
"displayName": "Value Comparison",
"categoryName": "Data"
},
{
"id": "kessel-test::conditions::variable",
"name": "variable",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string",
"minLength": 1
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/variable.js",
"viewPath": "conditions/variable.html",
"displayName": "Variable",
"categoryName": "Data"
},
{
"id": "kessel-test::conditions::window-size",
"name": "window-size",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"widthOperator",
"width",
"heightOperator",
"height"
],
"properties": {
"width": {
"type": "number"
},
"height": {
"type": "number"
},
"widthOperator": {
"enum": [
">",
"=",
"<"
],
"type": "string"
},
"heightOperator": {
"enum": [
">",
"=",
"<"
],
"type": "string"
}
},
"additionalProperties": false
},
"libPath": "src/lib/conditions/windowSize.js",
"viewPath": "conditions/windowSize.html",
"displayName": "Window Size",
"categoryName": "Technology"
}
],
"configuration": null,
"created_at": "2022-06-29T17:54:00.388Z",
"data_elements": [
{
"id": "kessel-test::dataElements::cookie",
"name": "cookie",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/cookie.js",
"viewPath": "dataElements/cookie.html",
"displayName": "Cookie"
},
{
"id": "kessel-test::dataElements::custom-code",
"name": "custom-code",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"source"
],
"properties": {
"source": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/customCode.js",
"viewPath": "dataElements/customCode.html",
"displayName": "Custom Code"
},
{
"id": "kessel-test::dataElements::dom-attribute",
"name": "dom-attribute",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"elementSelector",
"elementProperty"
],
"properties": {
"elementProperty": {
"type": "string",
"minLength": 1
},
"elementSelector": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/domAttribute.js",
"viewPath": "dataElements/domAttribute.html",
"displayName": "DOM Attribute"
},
{
"id": "kessel-test::dataElements::local-storage",
"name": "local-storage",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/localStorage.js",
"viewPath": "dataElements/localStorage.html",
"displayName": "Local Storage"
},
{
"id": "kessel-test::dataElements::page-info",
"name": "page-info",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"attribute"
],
"properties": {
"attribute": {
"enum": [
"url",
"hostname",
"pathname",
"protocol",
"referrer",
"title"
]
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/pageInfo.js",
"viewPath": "dataElements/pageInfo.html",
"displayName": "Page Info"
},
{
"id": "kessel-test::dataElements::query-string-parameter",
"name": "query-string-parameter",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"caseInsensitive": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/queryStringParameter.js",
"viewPath": "dataElements/queryStringParameter.html",
"displayName": "Query String Parameter"
},
{
"id": "kessel-test::dataElements::random-number",
"name": "random-number",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"min",
"max"
],
"properties": {
"max": {
"type": "integer"
},
"min": {
"type": "integer"
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/randomNumber.js",
"viewPath": "dataElements/randomNumber.html",
"displayName": "Random Number"
},
{
"id": "kessel-test::dataElements::session-storage",
"name": "session-storage",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/sessionStorage.js",
"viewPath": "dataElements/sessionStorage.html",
"displayName": "Session Storage"
},
{
"id": "kessel-test::dataElements::javascript-variable",
"name": "javascript-variable",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"path"
],
"properties": {
"path": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/javascriptVariable.js",
"viewPath": "dataElements/javascriptVariable.html",
"displayName": "JavaScript Variable"
},
{
"id": "kessel-test::dataElements::visitor-behavior",
"name": "visitor-behavior",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"attribute"
],
"properties": {
"attribute": {
"enum": [
"landingPage",
"trafficSource",
"minutesOnSite",
"sessionCount",
"sessionPageViewCount",
"lifetimePageViewCount",
"isNewVisitor"
]
}
},
"additionalProperties": false
},
"libPath": "src/lib/dataElements/visitorBehavior.js",
"viewPath": "dataElements/visitorBehavior.html",
"displayName": "Visitor Behavior"
}
],
"description": "Provides default event, condition, and data element types available to all Launch users.",
"discontinued": false,
"display_name": "Kessel Test",
"ecma_version": "es5",
"events": [
{
"id": "kessel-test::events::blur",
"name": "blur",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/blur.js",
"viewPath": "events/blur.html",
"displayName": "Blur",
"categoryName": "Form"
},
{
"id": "kessel-test::events::change",
"name": "change",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"value": {
"type": "string"
},
"bubbleStop": {
"type": "boolean"
},
"valueIsRegex": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/change.js",
"viewPath": "events/change.html",
"displayName": "Change",
"categoryName": "Form"
},
{
"id": "kessel-test::events::click",
"name": "click",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"anchorDelay": {
"type": "number",
"minimum": 1
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/click.js",
"viewPath": "events/click.html",
"displayName": "Click",
"categoryName": "Mouse"
},
{
"id": "kessel-test::events::custom-code",
"name": "custom-code",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"source"
],
"properties": {
"source": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/customCode.js",
"viewPath": "events/customCode.html",
"displayName": "Custom Code",
"categoryName": "Other"
},
{
"id": "kessel-test::events::custom-event",
"name": "custom-event",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"type"
],
"properties": {
"type": {
"type": "string",
"minLength": 1
},
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/customEvent.js",
"viewPath": "events/customEvent.html",
"displayName": "Custom Event",
"categoryName": "Other"
},
{
"id": "kessel-test::events::data-element-change",
"name": "data-element-change",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/dataElementChange.js",
"viewPath": "events/dataElementChange.html",
"displayName": "Data Element Change",
"categoryName": "Other"
},
{
"id": "kessel-test::events::direct-call",
"name": "direct-call",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"identifier"
],
"properties": {
"identifier": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/directCall.js",
"viewPath": "events/directCall.html",
"displayName": "Direct Call",
"categoryName": "Other"
},
{
"id": "kessel-test::events::dom-ready",
"name": "dom-ready",
"schema": {
},
"libPath": "src/lib/events/domReady.js",
"displayName": "DOM Ready",
"categoryName": "Page Load"
},
{
"id": "kessel-test::events::element-exists",
"name": "element-exists",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"elementSelector"
],
"properties": {
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/elementExists.js",
"viewPath": "events/elementExists.html",
"displayName": "Element Exists",
"categoryName": "Other"
},
{
"id": "kessel-test::events::media-ended",
"name": "media-ended",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/mediaEnded.js",
"viewPath": "events/mediaEnded.html",
"displayName": "Media Ended",
"categoryName": "Media"
},
{
"id": "kessel-test::events::enters-viewport",
"name": "enters-viewport",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"elementSelector"
],
"properties": {
"delay": {
"type": "number",
"minimum": 1
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/entersViewport.js",
"viewPath": "events/entersViewport.html",
"displayName": "Enters Viewport",
"categoryName": "Other"
},
{
"id": "kessel-test::events::focus",
"name": "focus",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/focus.js",
"viewPath": "events/focus.html",
"displayName": "Focus",
"categoryName": "Form"
},
{
"id": "kessel-test::events::hover",
"name": "hover",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"elementSelector"
],
"properties": {
"delay": {
"type": "number",
"minimum": 1
},
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/hover.js",
"viewPath": "events/hover.html",
"displayName": "Hover",
"categoryName": "Mouse"
},
{
"id": "kessel-test::events::key-press",
"name": "key-press",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/keyPress.js",
"viewPath": "events/keyPress.html",
"displayName": "Key Press",
"categoryName": "Keyboard"
},
{
"id": "kessel-test::events::media-loaded-data",
"name": "media-loaded-data",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/mediaLoadedData.js",
"viewPath": "events/mediaLoadedData.html",
"displayName": "Media Loaded Data",
"categoryName": "Media"
},
{
"id": "kessel-test::events::history-change",
"name": "history-change",
"schema": {
},
"libPath": "src/lib/events/historyChange.js",
"displayName": "History Change",
"categoryName": "Other"
},
{
"id": "kessel-test::events::mousedown",
"name": "mousedown",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/mousedown.js",
"viewPath": "events/mousedown.html",
"displayName": "Mousedown",
"categoryName": "Mouse"
},
{
"id": "kessel-test::events::window-loaded",
"name": "window-loaded",
"schema": {
},
"libPath": "src/lib/events/windowLoaded.js",
"displayName": "Window Loaded",
"categoryName": "Page Load"
},
{
"id": "kessel-test::events::orientation-change",
"name": "orientation-change",
"schema": {
},
"libPath": "src/lib/events/orientationChange.js",
"displayName": "Orientation Change",
"categoryName": "Mobile"
},
{
"id": "kessel-test::events::page-bottom",
"name": "page-bottom",
"schema": {
},
"libPath": "src/lib/events/pageBottom.js",
"displayName": "Page Bottom",
"categoryName": "Page Load"
},
{
"id": "kessel-test::events::library-loaded",
"name": "library-loaded",
"schema": {
},
"libPath": "src/lib/events/libraryLoaded.js",
"displayName": "Library Loaded (Page Top)",
"categoryName": "Page Load"
},
{
"id": "kessel-test::events::media-pause",
"name": "media-pause",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/mediaPause.js",
"viewPath": "events/mediaPause.html",
"displayName": "Media Pause",
"categoryName": "Media"
},
{
"id": "kessel-test::events::media-play",
"name": "media-play",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/mediaPlay.js",
"viewPath": "events/mediaPlay.html",
"displayName": "Media Play",
"categoryName": "Media"
},
{
"id": "kessel-test::events::media-stalled",
"name": "media-stalled",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/mediaStalled.js",
"viewPath": "events/mediaStalled.html",
"displayName": "Media Stalled",
"categoryName": "Media"
},
{
"id": "kessel-test::events::submit",
"name": "submit",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/submit.js",
"viewPath": "events/submit.html",
"displayName": "Submit",
"categoryName": "Form"
},
{
"id": "kessel-test::events::tab-blur",
"name": "tab-blur",
"schema": {
},
"libPath": "src/lib/events/tabBlur.js",
"displayName": "Tab Blur",
"categoryName": "Browser"
},
{
"id": "kessel-test::events::tab-focus",
"name": "tab-focus",
"schema": {
},
"libPath": "src/lib/events/tabFocus.js",
"displayName": "Tab Focus",
"categoryName": "Browser"
},
{
"id": "kessel-test::events::time-on-page",
"name": "time-on-page",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"timeOnPage"
],
"properties": {
"timeOnPage": {
"type": "number",
"minimum": 1
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/timeOnPage.js",
"viewPath": "events/timeOnPage.html",
"displayName": "Time On Page",
"categoryName": "Other"
},
{
"id": "kessel-test::events::media-time-played",
"name": "media-time-played",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"amount",
"unit"
],
"properties": {
"unit": {
"enum": [
"percent",
"second"
],
"type": "string"
},
"amount": {
"type": "number",
"minimum": 0
},
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/mediaTimePlayed.js",
"viewPath": "events/mediaTimePlayed.html",
"displayName": "Media Time Played",
"categoryName": "Media"
},
{
"id": "kessel-test::events::media-volume-change",
"name": "media-volume-change",
"schema": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"bubbleStop": {
"type": "boolean"
},
"elementSelector": {
"type": "string",
"minLength": 1
},
"elementProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"type": "string"
},
"valueIsRegex": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"bubbleFireIfParent": {
"type": "boolean"
},
"bubbleFireIfChildFired": {
"type": "boolean"
}
},
"additionalProperties": false
},
"libPath": "src/lib/events/mediaVolumeChange.js",
"viewPath": "events/mediaVolumeChange.html",
"displayName": "Media Volume Change",
"categoryName": "Media"
},
{
"id": "kessel-test::events::zoom-change",
"name": "zoom-change",
"schema": {
},
"libPath": "src/lib/events/zoomChange.js",
"displayName": "Zoom Change",
"categoryName": "Mobile"
}
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "kessel-test",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2022-06-29T17:54:15.681Z",
"version": "1.2.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EP3e96b796382e49a48d76a626395d8cab"
},
"meta": {
"archive_url": "https://assets.adobedtm.com/staging/extensions/archives/private/EP3e96b796382e49a48d76a626395d8cab.zip"
}
},
{
"id": "EP0177df7eb2f54abc88e56debacfbc5b3",
"type": "extension_packages",
"attributes": {
"actions": null,
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "development",
"cdn_path": null,
"conditions": null,
"configuration": null,
"created_at": "2022-07-22T19:40:44.667Z",
"data_elements": null,
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": null,
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": null,
"main": null,
"name": "test-1658518844",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "pending",
"platform": "web",
"updated_at": "2022-07-22T19:40:44.667Z",
"version": "1.0.0",
"view_base_path": null,
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EP0177df7eb2f54abc88e56debacfbc5b3"
}
},
{
"id": "EP395b1ad5aa4a479f874382324aeb691e",
"type": "extension_packages",
"attributes": {
"actions": null,
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "development",
"cdn_path": null,
"conditions": null,
"configuration": null,
"created_at": "2022-07-22T19:52:23.474Z",
"data_elements": null,
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": null,
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": null,
"main": null,
"name": "test-1658519543",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "pending",
"platform": "web",
"updated_at": "2022-07-22T19:52:23.474Z",
"version": "1.0.0",
"view_base_path": null,
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EP395b1ad5aa4a479f874382324aeb691e"
}
},
{
"id": "EPe38fe4dd84dc4823867de8ad7d2fb124",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "development",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EPe38fe4dd84dc4823867de8ad7d2fb124",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-18T22:11:12.743Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674079869",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-18T22:11:20.207Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EPe38fe4dd84dc4823867de8ad7d2fb124"
}
},
{
"id": "EP9dbe7092d763418183b26ad0224e55de",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "development",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EP9dbe7092d763418183b26ad0224e55de",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-18T22:11:43.992Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674079903",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-18T22:11:47.279Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EP9dbe7092d763418183b26ad0224e55de"
}
},
{
"id": "EP8eb3f22f060b489d90b14c8b01c4e05f",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "private",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EP8eb3f22f060b489d90b14c8b01c4e05f",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-18T22:12:15.634Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674079935",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-18T22:12:20.907Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EP8eb3f22f060b489d90b14c8b01c4e05f"
},
"meta": {
"archive_url": "https://assets.adobedtm.com/staging/extensions/archives/private/EP8eb3f22f060b489d90b14c8b01c4e05f.zip"
}
},
{
"id": "EP167efa7045e84c2ca5ba7e2172577fac",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "private",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EP167efa7045e84c2ca5ba7e2172577fac",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-18T22:14:09.191Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674080049",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-18T22:14:14.505Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EP167efa7045e84c2ca5ba7e2172577fac"
},
"meta": {
"archive_url": "https://assets.adobedtm.com/staging/extensions/archives/private/EP167efa7045e84c2ca5ba7e2172577fac.zip"
}
},
{
"id": "EP17a98f9dc899407fa8c99810c9d0e60b",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "development",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EP17a98f9dc899407fa8c99810c9d0e60b",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-18T22:48:35.463Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674082114",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-18T22:48:36.118Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EP17a98f9dc899407fa8c99810c9d0e60b"
}
},
{
"id": "EPe85d088d56184e528fa70b4f4fcb3767",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "development",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EPe85d088d56184e528fa70b4f4fcb3767",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-18T22:51:09.622Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674082269",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-18T22:51:10.314Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EPe85d088d56184e528fa70b4f4fcb3767"
}
},
{
"id": "EPe6d938e873b04835b102737ca3e995aa",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "development",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EPe6d938e873b04835b102737ca3e995aa",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-18T22:51:56.477Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674082316",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-18T22:51:57.469Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EPe6d938e873b04835b102737ca3e995aa"
}
},
{
"id": "EPcbae2112053d468fa7707e63df2d32ef",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "development",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EPcbae2112053d468fa7707e63df2d32ef",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-18T22:52:59.503Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674082379",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-18T22:53:00.226Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EPcbae2112053d468fa7707e63df2d32ef"
}
},
{
"id": "EP143a76e95c3849cd93680c185ce7c2d7",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "development",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EP143a76e95c3849cd93680c185ce7c2d7",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-18T22:54:24.110Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674082463",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-18T22:54:24.665Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EP143a76e95c3849cd93680c185ce7c2d7"
}
},
{
"id": "EPad244884bbe84825b76db6f80f6a3de1",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "development",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EPad244884bbe84825b76db6f80f6a3de1",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-18T22:55:15.743Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674082515",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-18T22:55:16.700Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EPad244884bbe84825b76db6f80f6a3de1"
}
},
{
"id": "EPf825baf725774c2fadf78a8506183c4a",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "development",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EPf825baf725774c2fadf78a8506183c4a",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-18T22:55:47.317Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674082547",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-18T22:55:48.222Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EPf825baf725774c2fadf78a8506183c4a"
}
},
{
"id": "EP7572010c689b482c92864f93cf23233f",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "development",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EP7572010c689b482c92864f93cf23233f",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-18T22:57:14.761Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674082634",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-18T22:57:15.917Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EP7572010c689b482c92864f93cf23233f"
}
},
{
"id": "EP28729a547db9451798284fe80023f223",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "development",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EP28729a547db9451798284fe80023f223",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-18T22:57:36.032Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674082655",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-18T22:57:36.684Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EP28729a547db9451798284fe80023f223"
}
},
{
"id": "EP13cbfe76701d439c9126d7027e0c7bfd",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "private",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EP13cbfe76701d439c9126d7027e0c7bfd",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-25T18:29:29.605Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674671369",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-25T18:29:34.886Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EP13cbfe76701d439c9126d7027e0c7bfd"
},
"meta": {
"archive_url": "https://assets.adobedtm.com/staging/extensions/archives/private/EP13cbfe76701d439c9126d7027e0c7bfd.zip"
}
},
{
"id": "EPbfbce91ac15a49d48d732db9f67d689f",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "private",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EPbfbce91ac15a49d48d732db9f67d689f",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-25T18:30:09.192Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674671409",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-25T18:30:19.507Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EPbfbce91ac15a49d48d732db9f67d689f"
},
"meta": {
"archive_url": "https://assets.adobedtm.com/staging/extensions/archives/private/EPbfbce91ac15a49d48d732db9f67d689f.zip"
}
},
{
"id": "EP52facb886e9243bc93d29934a7f6409a",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "private",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EP52facb886e9243bc93d29934a7f6409a",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-25T18:31:13.278Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674671473",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-25T18:31:23.590Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EP52facb886e9243bc93d29934a7f6409a"
},
"meta": {
"archive_url": "https://assets.adobedtm.com/staging/extensions/archives/private/EP52facb886e9243bc93d29934a7f6409a.zip"
}
},
{
"id": "EP48b08889827d481e9efcc3ac597790f8",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "private",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EP48b08889827d481e9efcc3ac597790f8",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-25T19:27:00.931Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674674819",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-25T19:27:06.364Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EP48b08889827d481e9efcc3ac597790f8"
},
"meta": {
"archive_url": "https://assets.adobedtm.com/staging/extensions/archives/private/EP48b08889827d481e9efcc3ac597790f8.zip"
}
},
{
"id": "EP7348e4bc108240d3af44d19b9bd6c432",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "private",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EP7348e4bc108240d3af44d19b9bd6c432",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-25T19:27:20.882Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674674840",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-25T19:27:26.082Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EP7348e4bc108240d3af44d19b9bd6c432"
},
"meta": {
"archive_url": "https://assets.adobedtm.com/staging/extensions/archives/private/EP7348e4bc108240d3af44d19b9bd6c432.zip"
}
},
{
"id": "EP8b9eb7da4998416691326ded4635b34a",
"type": "extension_packages",
"attributes": {
"actions": [
],
"author": {
"url": "http://adobe.com",
"name": "Adobe Systems",
"email": "reactor@adobe.com"
},
"availability": "private",
"cdn_path": "https://assets.adobedtm.com/staging/extensions/EP8b9eb7da4998416691326ded4635b34a",
"conditions": [
],
"configuration": null,
"created_at": "2023-01-25T19:28:35.478Z",
"data_elements": [
],
"description": "Provides nothing.",
"discontinued": false,
"display_name": "Kessel Template Test",
"ecma_version": null,
"events": [
],
"exchange_url": null,
"hosted_lib_files": null,
"icon_path": "resources/icons/core.svg",
"main": null,
"name": "test-1674674915",
"owner_org_id": "08364A825824E04F0A494115@AdobeOrg",
"resources": null,
"shared_modules": null,
"status": "succeeded",
"platform": "web",
"updated_at": "2023-01-25T19:28:40.693Z",
"version": "1.0.0",
"view_base_path": "dist/",
"created_by_email": "ciltaru@adobe.com",
"created_by_display_name": "George Ciltaru",
"updated_by_email": "ciltaru@adobe.com",
"updated_by_display_name": "George Ciltaru"
},
"links": {
"self": "https://reactor.adobe.io/extension_packages/EP8b9eb7da4998416691326ded4635b34a"
},
"meta": {
"archive_url": "https://assets.adobedtm.com/staging/extensions/archives/private/EP8b9eb7da4998416691326ded4635b34a.zip"
}
}
],
"links": {
"self": "https://reactor.adobe.io/extension_packages?page%5Bnumber%5D=1&page%5Bsize%5D=25",
"next": "https://reactor.adobe.io/extension_packages?page%5Bnumber%5D=2&page%5Bsize%5D=25",
"last": "https://reactor.adobe.io/extension_packages?page%5Bnumber%5D=3&page%5Bsize%5D=25"
},
"meta": {
"pagination": {
"current_page": 1,
"next_page": 2,
"prev_page": null,
"total_pages": 3,
"total_count": 53
}
}
}