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
27 changes: 27 additions & 0 deletions FRE/fre_pp.json
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,33 @@
},
"minItems": 1,
"uniqueItems": true
},
"static": {
"type": "object",
"properties": {
"sources": {
"description": "History files to include this static source",
"type": "array",
"items": {
"type": "string"
}
},
"offline_sources": {
"description": "Path to history file if static source is for offline diagnostics",
"type": "array",
"items": {
"type": "string"
}
},
"variables": {
"description": "Variables included in history file",
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}
},
"required": [
Expand Down