@lcem/meta-schemas
Advanced tools
Comparing version 0.6.15 to 0.6.16
@@ -6,7 +6,7 @@ # Change Log | ||
## [0.6.15](https://github.com/salesforce/low-code-experience-model/compare/v0.6.13...v0.6.15) (2021-06-23) | ||
## [0.6.16](https://github.com/salesforce/low-code-experience-model/compare/v0.6.15...v0.6.16) (2021-06-24) | ||
### Bug Fixes | ||
### Features | ||
* Update UEM with metaschemas for relevant json files ([#40](https://github.com/salesforce/low-code-experience-model/issues/40)) ([7eee741](https://github.com/salesforce/low-code-experience-model/commit/7eee74142561289a75f26fb6ccd8152bf09509e4)) | ||
* event metaschema @W-9423780 ([#53](https://github.com/salesforce/low-code-experience-model/issues/53)) ([faa2086](https://github.com/salesforce/low-code-experience-model/commit/faa2086a7b20b855444c05e50dad7003ec4d4078)) |
{ | ||
"name": "@lcem/meta-schemas", | ||
"license": "MIT", | ||
"version": "0.6.15", | ||
"version": "0.6.16", | ||
"types": "src/types/index.d.ts", | ||
@@ -17,3 +17,4 @@ "publishConfig": { | ||
"files": [ | ||
"src/" | ||
"src/", | ||
"examples/" | ||
], | ||
@@ -20,0 +21,0 @@ "devDependencies": { |
@@ -22,2 +22,9 @@ { | ||
} | ||
}, | ||
"events": { | ||
"patternProperties": { | ||
"^[A-Za-z0-9]+$": { | ||
"$ref": "vocab/event" | ||
} | ||
} | ||
} | ||
@@ -28,3 +35,3 @@ }, | ||
"events": { | ||
"$ref": "vocab/event" | ||
"$ref": "#/$defs/events" | ||
}, | ||
@@ -37,7 +44,4 @@ "properties": { | ||
}, | ||
"methods": { | ||
"$ref": "vocab/method" | ||
} | ||
}, | ||
"required": ["properties"] | ||
"methods": true | ||
} | ||
} |
@@ -6,16 +6,39 @@ { | ||
}, | ||
"title": "Event meta schema", | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
"type": { | ||
"type": "string", | ||
"const": "object" | ||
}, | ||
"properties": { | ||
"type": "object", | ||
"default": {} | ||
} | ||
"minProperties": 1, | ||
"patternProperties": { | ||
"^[A-Za-z0-9]+$": { | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"oneOf": [ | ||
{ | ||
"const": "boolean" | ||
}, | ||
{ | ||
"const": "string" | ||
}, | ||
{ | ||
"const": "integer" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false | ||
} | ||
} | ||
}, | ||
"additionalProperties": false | ||
}, | ||
"required": ["name"] | ||
"required": ["type", "properties"], | ||
"additionalProperties": false | ||
} |
@@ -17,3 +17,3 @@ { | ||
"contains": false, | ||
"additionalProperties": false, | ||
"additionalProperties": true, | ||
"unevaluatedProperties": false, | ||
@@ -20,0 +20,0 @@ "properties": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
45126
89
1657