changedInput schema / properties / status_filter / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "enum": [
+ "covered",
+ "partial",
+ "not-applicable",
+ "deferred"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
addedOutput schema / $defs
Added value: +{
+ "CoverageEntry": {
+ "properties": {
+ "attachments": {
+ "items": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "title": "Attachments",
+ "type": "array"
+ },
+ "commits": {
+ "items": {
+ "type": "string"
+ },
+ "title": "Commits",
+ "type": "array"
+ },
+ "files": {
+ "items": {
+ "type": "string"
+ },
+ "title": "Files",
+ "type": "array"
+ },
+ "how_met": {
+ "title": "How Met",
+ "type": "string"
+ },
+ "last_reviewed": {
+ "title": "Last Reviewed",
+ "type": "string"
+ },
+ "next_review": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Next Review"
+ },
+ "reviewed_against": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Reviewed Against"
+ },
+ "reviewed_by": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Reviewed By"
+ },
+ "status": {
+ "title": "Status",
+ "type": "string"
+ },
+ "urls": {
+ "items": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "title": "Urls",
+ "type": "array"
+ }
+ },
+ "required": [
+ "status",
+ "how_met",
+ "last_reviewed",
+ "reviewed_against",
+ "reviewed_by",
+ "next_review",
+ "files",
+ "commits",
+ "urls",
+ "attachments"
+ ],
+ "title": "CoverageEntry",
+ "type": "object"
+ }
+}
addedOutput schema / properties / controls
Added value: +{
+ "additionalProperties": {
+ "$ref": "#/$defs/CoverageEntry"
+ },
+ "title": "Controls",
+ "type": "object"
+}
addedOutput schema / properties / manifest_path
Added value: +{
+ "title": "Manifest Path",
+ "type": "string"
+}
addedOutput schema / properties / project
Added value: +{
+ "additionalProperties": true,
+ "title": "Project",
+ "type": "object"
+}
removedOutput schema / properties / result
Removed value: -{
- "title": "Result",
- "type": "string"
-}
addedOutput schema / properties / scope
Added value: +{
+ "additionalProperties": true,
+ "title": "Scope",
+ "type": "object"
+}
addedOutput schema / properties / summary
Added value: +{
+ "additionalProperties": {
+ "type": "integer"
+ },
+ "title": "Summary",
+ "type": "object"
+}
addedOutput schema / properties / warnings
Added value: +{
+ "items": {
+ "type": "string"
+ },
+ "title": "Warnings",
+ "type": "array"
+}
changedOutput schema / required
Previous value: -[
- "result"
-]New value: +[
+ "manifest_path",
+ "scope",
+ "project",
+ "summary",
+ "controls",
+ "warnings"
+]
changedOutput schema / title
Previous value: -"ism_coverage_readOutput"New value: +"CoverageReadResult"