@pdtf/schemas 3.6.0-dev.18 → 3.6.0-dev.19
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/package.json
CHANGED
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
"metadata": {
|
|
49
49
|
"title": "Metadata",
|
|
50
|
-
"description": "Flexible container for vendor-specific metadata items relating to the transaction. Keys are vendor-defined; values may be strings, numbers, booleans or nested objects.",
|
|
50
|
+
"description": "Flexible container for vendor-specific metadata items relating to the transaction. Keys are vendor-defined; values may be strings, numbers, booleans or nested objects. Paths are addressable up to three levels below /metadata (e.g. /metadata/vendor/item/field).",
|
|
51
51
|
"type": "object",
|
|
52
52
|
"patternProperties": {
|
|
53
53
|
".*": {
|
|
@@ -64,7 +64,31 @@
|
|
|
64
64
|
{
|
|
65
65
|
"type": "object",
|
|
66
66
|
"patternProperties": {
|
|
67
|
-
".*": {
|
|
67
|
+
".*": {
|
|
68
|
+
"oneOf": [
|
|
69
|
+
{
|
|
70
|
+
"type": "string"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"type": "number"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"type": "boolean"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"type": "array"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"type": "null"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"type": "object",
|
|
86
|
+
"patternProperties": {
|
|
87
|
+
".*": {}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
]
|
|
91
|
+
}
|
|
68
92
|
}
|
|
69
93
|
}
|
|
70
94
|
]
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"metadata": {
|
|
40
40
|
"title": "Metadata",
|
|
41
|
-
"description": "Flexible container for vendor-specific metadata items relating to the transaction. Keys are vendor-defined; values may be strings, numbers, booleans or nested objects.",
|
|
41
|
+
"description": "Flexible container for vendor-specific metadata items relating to the transaction. Keys are vendor-defined; values may be strings, numbers, booleans or nested objects. Paths are addressable up to three levels below /metadata (e.g. /metadata/vendor/item/field).",
|
|
42
42
|
"type": "object",
|
|
43
43
|
"patternProperties": {
|
|
44
44
|
".*": {
|
|
@@ -55,7 +55,31 @@
|
|
|
55
55
|
{
|
|
56
56
|
"type": "object",
|
|
57
57
|
"patternProperties": {
|
|
58
|
-
".*": {
|
|
58
|
+
".*": {
|
|
59
|
+
"oneOf": [
|
|
60
|
+
{
|
|
61
|
+
"type": "string"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"type": "number"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"type": "boolean"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"type": "array"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"type": "null"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"type": "object",
|
|
77
|
+
"patternProperties": {
|
|
78
|
+
".*": {}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
]
|
|
82
|
+
}
|
|
59
83
|
}
|
|
60
84
|
}
|
|
61
85
|
]
|