Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added fields to analysis settings schema #80

Merged
merged 6 commits into from
Dec 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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