@adobe/reactor-turbine-schemas 10.2.0 → 10.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,14 +1,14 @@
1
1
  # @adobe/reactor-turbine-schemas
2
2
 
3
- Experience Platform Tags, by Adobe, is a next-generation tag management solution enabling simplified deployment of marketing technologies. For more information regarding Experience Platform Tags, please visit our [product website](http://www.adobe.com/enterprise/cloud-platform/launch.html).
3
+ Adobe Experience Platform Tags is a next-generation tag management solution enabling simplified deployment of marketing technologies. For more information regarding Tags, please visit our [product website](http://www.adobe.com/enterprise/cloud-platform/launch.html).
4
4
 
5
- This project is a collection of schemas based on the [JSON Schema vocabulary](https://json-schema.org/) that are used for validation of JSON objects within Experience Platform Tags. The schemas are not intended to be used directly by consumers; they are used by the Experience Platform Tags system and extension development tools.
5
+ This project is a collection of schemas based on the [JSON Schema vocabulary](https://json-schema.org/) that are used for validation of JSON objects within Tags. The schemas are not intended to be used directly by consumers; they are used by the Tags system and extension development tools.
6
6
 
7
7
  ## Available Schemas
8
8
 
9
9
  ### container.json
10
10
 
11
- A schema describing the "container" output for [Turbine (Web)](https://github.com/adobe/reactor-turbine) (the Experience Platform Tags rule engine). The container object contains configuration specific to an Experience Platform Tags property. Turbine uses the container as instruction on how to behave when running on a client website.
11
+ A schema describing the "container" output for [Turbine (Web)](https://github.com/adobe/reactor-turbine) (the Experience Platform Tags rule engine). The container object contains configuration specific to a Platform Tags property. Turbine uses the container as instruction on how to behave when running on a client website.
12
12
 
13
13
  ### extension-package-web.json
14
14
 
@@ -16,7 +16,7 @@ A schema describing the `extension.json` found in a web extension package. The `
16
16
 
17
17
  ### extension-package-mobile.json
18
18
 
19
- A schema describing the `extension.json` found in a web extension package. The `extension.json` file describes the contents of an extension.
19
+ A schema describing the `extension.json` found in a mobile extension package. The `extension.json` file describes the contents of an extension.
20
20
 
21
21
  ## Contributing
22
22
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@adobe/reactor-turbine-schemas",
3
- "version": "10.2.0",
4
- "description": "A collection of schema used for validation of JSON objects within Launch.",
3
+ "version": "10.3.1",
4
+ "description": "A collection of schema used for validation of JSON objects within Tags.",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git@git.corp.adobe.com:reactor/turbine-schemas.git"
@@ -13,7 +13,9 @@
13
13
  },
14
14
  "license": "Apache-2.0",
15
15
  "devDependencies": {
16
- "ajv": "^6.12.6"
16
+ "ajv": "^8.11.0",
17
+ "ajv-draft-04": "^1.0.0",
18
+ "ajv-formats": "^2.1.1"
17
19
  },
18
20
  "scripts": {
19
21
  "test": "node test/index.js"
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "$schema": "http://json-schema.org/draft-04/schema#",
3
3
  "$id": "http://launch.adobe.com/schemas/extension-package-edge.json",
4
+ "type": "object",
4
5
  "properties": {
5
6
  "name": {
6
7
  "$ref": "#/definitions/name"
@@ -103,6 +104,7 @@
103
104
  ]
104
105
  },
105
106
  "functionTransform": {
107
+ "type": "object",
106
108
  "properties": {
107
109
  "type": {
108
110
  "enum": [
@@ -128,6 +130,7 @@
128
130
  ]
129
131
  },
130
132
  "removeTransform": {
133
+ "type": "object",
131
134
  "properties": {
132
135
  "type": {
133
136
  "enum": [
@@ -110,6 +110,7 @@
110
110
  "type": "object",
111
111
  "oneOf": [
112
112
  {
113
+ "type": "object",
113
114
  "properties": {
114
115
  "className": {
115
116
  "$ref": "#/definitions/javaClassName"
@@ -125,6 +126,7 @@
125
126
  ]
126
127
  },
127
128
  {
129
+ "type": "object",
128
130
  "properties": {
129
131
  "classNames": {
130
132
  "type": "array",
@@ -149,6 +151,7 @@
149
151
  "type": "object",
150
152
  "oneOf": [
151
153
  {
154
+ "type": "object",
152
155
  "properties": {
153
156
  "name": {
154
157
  "type": "string"
@@ -178,6 +181,7 @@
178
181
  ]
179
182
  },
180
183
  {
184
+ "type": "object",
181
185
  "properties": {
182
186
  "name": {
183
187
  "type": "string"
@@ -258,6 +262,7 @@
258
262
  ]
259
263
  },
260
264
  "featureEvent": {
265
+ "type": "object",
261
266
  "allOf": [
262
267
  {
263
268
  "$ref": "#/definitions/feature"
@@ -269,6 +274,7 @@
269
274
  "displayName": {},
270
275
  "viewPath": {},
271
276
  "schema": {
277
+ "type": "object",
272
278
  "allOf": [
273
279
  {
274
280
  "$ref": "#/definitions/featureSchema"
@@ -310,6 +316,7 @@
310
316
  "additionalProperties": false
311
317
  },
312
318
  "featureConditions": {
319
+ "type": "object",
313
320
  "allOf": [
314
321
  {
315
322
  "$ref": "#/definitions/feature"
@@ -321,6 +328,7 @@
321
328
  "displayName": {},
322
329
  "viewPath": {},
323
330
  "schema": {
331
+ "type": "object",
324
332
  "allOf": [
325
333
  {
326
334
  "$ref": "#/definitions/featureSchema"
@@ -362,6 +370,7 @@
362
370
  "additionalProperties": false
363
371
  },
364
372
  "featureAction": {
373
+ "type": "object",
365
374
  "allOf": [
366
375
  {
367
376
  "$ref": "#/definitions/feature"
@@ -373,6 +382,7 @@
373
382
  "displayName": {},
374
383
  "viewPath": {},
375
384
  "schema": {
385
+ "type": "object",
376
386
  "allOf": [
377
387
  {
378
388
  "$ref": "#/definitions/featureSchema"
@@ -414,6 +424,7 @@
414
424
  "additionalProperties": false
415
425
  },
416
426
  "featureDataElement": {
427
+ "type": "object",
417
428
  "allOf": [
418
429
  {
419
430
  "$ref": "#/definitions/feature"
@@ -425,6 +436,7 @@
425
436
  "displayName": {},
426
437
  "viewPath": {},
427
438
  "schema": {
439
+ "type": "object",
428
440
  "allOf": [
429
441
  {
430
442
  "$ref": "#/definitions/featureSchema"
@@ -538,4 +550,4 @@
538
550
  ]
539
551
  }
540
552
  }
541
- }
553
+ }
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "$schema": "http://json-schema.org/draft-04/schema#",
3
3
  "$id": "http://launch.adobe.com/schemas/extension-package-web.json",
4
+ "type": "object",
4
5
  "properties": {
5
6
  "name": {
6
7
  "$ref": "#/definitions/name"
@@ -112,6 +113,7 @@
112
113
  ]
113
114
  },
114
115
  "fileTransform": {
116
+ "type": "object",
115
117
  "properties": {
116
118
  "type": {
117
119
  "enum": [
@@ -130,6 +132,7 @@
130
132
  ]
131
133
  },
132
134
  "functionTransform": {
135
+ "type": "object",
133
136
  "properties": {
134
137
  "type": {
135
138
  "enum": [
@@ -155,6 +158,7 @@
155
158
  ]
156
159
  },
157
160
  "customCodeTransform": {
161
+ "type": "object",
158
162
  "properties": {
159
163
  "type": {
160
164
  "enum": [
@@ -164,6 +168,7 @@
164
168
  }
165
169
  },
166
170
  "removeTransform": {
171
+ "type": "object",
167
172
  "properties": {
168
173
  "type": {
169
174
  "enum": [