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

#23 Start to add schema for static sources in pp yamls #24

Merged
merged 15 commits into from
Mar 13, 2025
32 changes: 32 additions & 0 deletions FRE/fre_pp.json
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,38 @@
},
"minItems": 1,
"uniqueItems": true
},
"static": {
"type": "array",
"items": {
"type": "object",
"properties": {
"sources": {
"description": "History files to include this static source",
"type": "array",
"items": {
"type": "string"
}
},
"freq": {
"description": "Static sources should have a frequency of P0[M/Y]",
"type": "string"
},
"variables": {
"description": "Variables for the static source",
"type": "array",
"items": {
"type": "string"
}
},
"history_file": {
"description": "Path to history file if static source is for offline diagnostics (if history file not included in main history_dir",
"type": "string"
}
},
"required": ["sources"],
"additional_properties": false
}
}
},
"required": [
Expand Down