Skip to content

Commit

Permalink
Added fields to analysis settings schema (#80)
Browse files Browse the repository at this point in the history
* added vulnerability_set field

* added vulnerability_adjustments field

* correlation_settings to analysis_settings

* removed field until needed

* removed field until needed

---------

Co-authored-by: sambles <[email protected]>
  • Loading branch information
ncerutti and sambles committed Dec 11, 2023
1 parent 6294259 commit 219082c
Showing 1 changed file with 31 additions and 4 deletions.
35 changes: 31 additions & 4 deletions ods_tools/data/analysis_settings_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -379,10 +379,37 @@
},
"footprint_set": {
"type": "string",
"title": "Footprint set file ID.",
"description": "Identifier for the footprint files that are used for output calculations.",
"default": 1
}
"title": "Footprint set file ID.",
"description": "Identifier for the footprint files that are used for output calculations.",
"default": 1
},
"vulnerability_set": {
"type": "string",
"title": "Vulnerability set file ID.",
"description": "Identifier for the vulnerability files that are used for output calculations.",
"default": 1
},
"correlation_settings": {
"type": "array",
"title": "Correlation Settings",
"description": "The Correlation Settings",
"items": {
"type": "object",
"properties": {
"peril_correlation_group": {
"type": "integer",
"title": "Peril Correlation Group",
"description": "The Peril Correlation Group",
"minLength": 1
},
"correlation_value": {
"type": "string",
"title": "Correlation Value",
"description": "The Correlation Value"
}
}
}
}
}
},
"gul_output": {
Expand Down

0 comments on commit 219082c

Please sign in to comment.