addedOutput schema / $defs
Added value: +{
+ "GapCurrentEntry": {
+ "properties": {
+ "how_met": {
+ "title": "How Met",
+ "type": "string"
+ },
+ "last_reviewed": {
+ "title": "Last Reviewed",
+ "type": "string"
+ }
+ },
+ "required": [
+ "how_met",
+ "last_reviewed"
+ ],
+ "title": "GapCurrentEntry",
+ "type": "object"
+ },
+ "GapEntry": {
+ "properties": {
+ "current_entry": {
+ "anyOf": [
+ {
+ "$ref": "#/$defs/GapCurrentEntry"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "current_status": {
+ "title": "Current Status",
+ "type": "string"
+ },
+ "description": {
+ "title": "Description",
+ "type": "string"
+ },
+ "identifier": {
+ "title": "Identifier",
+ "type": "string"
+ },
+ "score": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Score"
+ },
+ "section": {
+ "title": "Section",
+ "type": "string"
+ },
+ "topic": {
+ "title": "Topic",
+ "type": "string"
+ },
+ "why": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Why"
+ }
+ },
+ "required": [
+ "identifier",
+ "topic",
+ "section",
+ "description",
+ "current_status",
+ "current_entry",
+ "score",
+ "why"
+ ],
+ "title": "GapEntry",
+ "type": "object"
+ }
+}
addedOutput schema / properties / gaps
Added value: +{
+ "items": {
+ "$ref": "#/$defs/GapEntry"
+ },
+ "title": "Gaps",
+ "type": "array"
+}
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 / shown
Added value: +{
+ "title": "Shown",
+ "type": "integer"
+}
addedOutput schema / properties / total_outstanding
Added value: +{
+ "title": "Total Outstanding",
+ "type": "integer"
+}
addedOutput schema / properties / work
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Work"
+}
changedOutput schema / required
Previous value: -[
- "result"
-]New value: +[
+ "scope",
+ "work",
+ "gaps",
+ "total_outstanding",
+ "shown"
+]
changedOutput schema / title
Previous value: -"ism_coverage_gapsOutput"New value: +"GapsResult"