FFactorSystematicsFile#
- pydantic model lstcam_calib.io.database.FFactorSystematicsFile#
Pydantic model for a ffactor systematics file in the calibration db.
Show JSON schema
{ "title": "FFactorSystematicsFile", "description": "Pydantic model for a ffactor systematics file in the calibration db.", "type": "object", "properties": { "product_id": { "title": "Product Id", "type": "string" }, "status": { "title": "Status", "type": "string" }, "usage_start": { "anyOf": [ { "format": "date-time", "type": "string" }, { "type": "null" } ], "default": null, "title": "Usage Start" }, "usage_stop": { "anyOf": [ { "format": "date-time", "type": "string" }, { "type": "null" } ], "default": null, "title": "Usage Stop" }, "processing_time": { "format": "date-time", "title": "Processing Time", "type": "string" }, "path": { "format": "path", "title": "Path", "type": "string" }, "provenance_path": { "format": "path", "title": "Provenance Path", "type": "string" }, "lstcam_calib_version": { "title": "Lstcam Calib Version", "type": "string" }, "last_modified": { "format": "date-time", "title": "Last Modified", "type": "string" }, "calibration_paths": { "items": {}, "title": "Calibration Paths", "type": "array" } }, "required": [ "product_id", "status", "processing_time", "path", "provenance_path", "lstcam_calib_version", "last_modified", "calibration_paths" ] }
- Fields: