-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathopenapi.json
More file actions
1 lines (1 loc) · 167 KB
/
openapi.json
File metadata and controls
1 lines (1 loc) · 167 KB
1
{"openapi":"3.0.2","info":{"title":"FastAPI","version":"0.1.0"},"paths":{"/v1/acquisition-types/":{"get":{"tags":["Acquisition Type"],"summary":"Get Acquisition Types","operationId":"get_acquisition_types_v1_acquisition_types__get","parameters":[{"required":false,"schema":{"title":"Code","type":"string"},"name":"code","in":"query"},{"required":false,"schema":{"title":"Description","type":"string"},"name":"description","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AcquisitionTypeResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Acquisition Type"],"summary":"Create Acquisition Type","operationId":"create_acquisition_type_v1_acquisition_types__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateAcquisitionType"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AcquisitionTypeResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/acquisition-types/{code}":{"get":{"tags":["Acquisition Type"],"summary":"Get Acquisition Type By Id","operationId":"get_acquisition_type_by_id_v1_acquisition_types__code__get","parameters":[{"required":true,"schema":{"title":"Code","type":"string"},"name":"code","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AcquisitionTypeResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Acquisition Type"],"summary":"Update Acquisition Type","operationId":"update_acquisition_type_v1_acquisition_types__code__put","parameters":[{"required":true,"schema":{"title":"Code","type":"string"},"name":"code","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateAcquisitionType"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AcquisitionTypeResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Acquisition Type"],"summary":"Delete Acquisition Type","operationId":"delete_acquisition_type_v1_acquisition_types__code__delete","parameters":[{"required":true,"schema":{"title":"Code","type":"string"},"name":"code","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AcquisitionTypeResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/data-forms/":{"get":{"tags":["Data Forms"],"summary":"Get Data Forms","operationId":"get_data_forms_v1_data_forms__get","parameters":[{"required":false,"schema":{"title":"Order Num","type":"integer"},"name":"order_num","in":"query"},{"required":false,"schema":{"title":"Table Name","type":"string"},"name":"table_name","in":"query"},{"required":false,"schema":{"title":"Form Name","type":"string"},"name":"form_name","in":"query"},{"required":false,"schema":{"title":"Description","type":"string"},"name":"description","in":"query"},{"required":false,"schema":{"title":"Selected","type":"boolean"},"name":"selected","in":"query"},{"required":false,"schema":{"title":"Val Start Position","type":"integer"},"name":"val_start_position","in":"query"},{"required":false,"schema":{"title":"Val End Position","type":"integer"},"name":"val_end_position","in":"query"},{"required":false,"schema":{"title":"Elem Code Location","type":"string"},"name":"elem_code_location","in":"query"},{"required":false,"schema":{"title":"Sequencer","type":"string"},"name":"sequencer","in":"query"},{"required":false,"schema":{"title":"Entry Mode","type":"boolean"},"name":"entry_mode","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DataFormResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Data Forms"],"summary":"Create Data Form","operationId":"create_data_form_v1_data_forms__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateDataForm"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DataFormResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/data-forms/{form_name}":{"get":{"tags":["Data Forms"],"summary":"Get Data Form By Id","operationId":"get_data_form_by_id_v1_data_forms__form_name__get","parameters":[{"required":true,"schema":{"title":"Form Name","type":"string"},"name":"form_name","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DataFormResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Data Forms"],"summary":"Update Data Form","operationId":"update_data_form_v1_data_forms__form_name__put","parameters":[{"required":true,"schema":{"title":"Form Name","type":"string"},"name":"form_name","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateDataForm"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DataFormResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Data Forms"],"summary":"Delete Data Form","operationId":"delete_data_form_v1_data_forms__form_name__delete","parameters":[{"required":true,"schema":{"title":"Form Name","type":"string"},"name":"form_name","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DataFormResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/fault-resolutions/":{"get":{"tags":["Fault Resolutions"],"summary":"Get Instrument Inspection","operationId":"get_instrument_inspection_v1_fault_resolutions__get","parameters":[{"required":false,"schema":{"title":"Resolved Datetime","type":"string"},"name":"resolved_datetime","in":"query"},{"required":false,"schema":{"title":"Associated With","type":"string"},"name":"associated_with","in":"query"},{"required":false,"schema":{"title":"Resolved By","type":"string"},"name":"resolved_by","in":"query"},{"required":false,"schema":{"title":"Remarks","type":"string"},"name":"remarks","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FaultResolutionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Fault Resolutions"],"summary":"Create Instrument Inspection","operationId":"create_instrument_inspection_v1_fault_resolutions__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateFaultResolution"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FaultResolutionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/fault-resolutions/{resolved_datetime}/{associated_with}":{"get":{"tags":["Fault Resolutions"],"summary":"Get Instrument Inspection By Id","operationId":"get_instrument_inspection_by_id_v1_fault_resolutions__resolved_datetime___associated_with__get","parameters":[{"required":true,"schema":{"title":"Resolved Datetime","type":"string"},"name":"resolved_datetime","in":"path"},{"required":true,"schema":{"title":"Associated With","type":"string"},"name":"associated_with","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FaultResolutionWithInstrumentFaultReportResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Fault Resolutions"],"summary":"Update Instrument Inspection","operationId":"update_instrument_inspection_v1_fault_resolutions__resolved_datetime___associated_with__put","parameters":[{"required":true,"schema":{"title":"Resolved Datetime","type":"string"},"name":"resolved_datetime","in":"path"},{"required":true,"schema":{"title":"Associated With","type":"string"},"name":"associated_with","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateFaultResolution"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FaultResolutionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Fault Resolutions"],"summary":"Delete Instrument Inspection","operationId":"delete_instrument_inspection_v1_fault_resolutions__resolved_datetime___associated_with__delete","parameters":[{"required":true,"schema":{"title":"Resolved Datetime","type":"string"},"name":"resolved_datetime","in":"path"},{"required":true,"schema":{"title":"Associated With","type":"string"},"name":"associated_with","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FaultResolutionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/feature-geographical-positions/":{"get":{"tags":["Feature Geographical Positions"],"summary":"Get Feature Geographical Positions","operationId":"get_feature_geographical_positions_v1_feature_geographical_positions__get","parameters":[{"required":false,"schema":{"title":"Belongs To","type":"string"},"name":"belongs_to","in":"query"},{"required":false,"schema":{"title":"Observed On","type":"string"},"name":"observed_on","in":"query"},{"required":false,"schema":{"title":"Latitude","type":"number"},"name":"latitude","in":"query"},{"required":false,"schema":{"title":"Longitude","type":"number"},"name":"longitude","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeatureGeographicalPositionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Feature Geographical Positions"],"summary":"Create Feature Geographical Position","operationId":"create_feature_geographical_position_v1_feature_geographical_positions__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateFeatureGeographicalPosition"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeatureGeographicalPositionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/feature-geographical-positions/{belongs_to}":{"get":{"tags":["Feature Geographical Positions"],"summary":"Get Feature Geographical Position By Id","operationId":"get_feature_geographical_position_by_id_v1_feature_geographical_positions__belongs_to__get","parameters":[{"required":true,"schema":{"title":"Belongs To","type":"string"},"name":"belongs_to","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeatureGeographicalPositionWithSynopFeatureResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Feature Geographical Positions"],"summary":"Update Feature Geographical Position","operationId":"update_feature_geographical_position_v1_feature_geographical_positions__belongs_to__put","parameters":[{"required":true,"schema":{"title":"Belongs To","type":"string"},"name":"belongs_to","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateFeatureGeographicalPosition"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeatureGeographicalPositionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Feature Geographical Positions"],"summary":"Delete Feature Geographical Position","operationId":"delete_feature_geographical_position_v1_feature_geographical_positions__belongs_to__delete","parameters":[{"required":true,"schema":{"title":"Belongs To","type":"string"},"name":"belongs_to","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeatureGeographicalPositionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/flags/":{"get":{"tags":["Flags"],"summary":"Get Flags","operationId":"get_flags_v1_flags__get","parameters":[{"required":false,"schema":{"title":"Character Symbol","type":"string"},"name":"character_symbol","in":"query"},{"required":false,"schema":{"title":"Num Symbol","type":"integer"},"name":"num_symbol","in":"query"},{"required":false,"schema":{"title":"Description","type":"string"},"name":"description","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FlagResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Flags"],"summary":"Create Flag","operationId":"create_flag_v1_flags__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateFlag"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FlagResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/flags/{character_symbol}":{"get":{"tags":["Flags"],"summary":"Get Flag By Id","operationId":"get_flag_by_id_v1_flags__character_symbol__get","parameters":[{"required":true,"schema":{"title":"Character Symbol","type":"string"},"name":"character_symbol","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FlagResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Flags"],"summary":"Update Flag","operationId":"update_flag_v1_flags__character_symbol__put","parameters":[{"required":true,"schema":{"title":"Character Symbol","type":"string"},"name":"character_symbol","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateFlag"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FlagResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Flags"],"summary":"Delete Flag","operationId":"delete_flag_v1_flags__character_symbol__delete","parameters":[{"required":true,"schema":{"title":"Character Symbol","type":"string"},"name":"character_symbol","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FlagResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/instruments/":{"get":{"tags":["Instruments"],"summary":"Get Instruments","operationId":"get_instruments_v1_instruments__get","parameters":[{"required":false,"schema":{"title":"Instrument Id","type":"string"},"name":"instrument_id","in":"query"},{"required":false,"schema":{"title":"Instrument Name","type":"string"},"name":"instrument_name","in":"query"},{"required":false,"schema":{"title":"Serial Number","type":"string"},"name":"serial_number","in":"query"},{"required":false,"schema":{"title":"Abbreviation","type":"string"},"name":"abbreviation","in":"query"},{"required":false,"schema":{"title":"Model","type":"string"},"name":"model","in":"query"},{"required":false,"schema":{"title":"Manufacturer","type":"string"},"name":"manufacturer","in":"query"},{"required":false,"schema":{"title":"Instrument Uncertainty","type":"number"},"name":"instrument_uncertainty","in":"query"},{"required":false,"schema":{"title":"Installation Datetime","type":"string"},"name":"installation_datetime","in":"query"},{"required":false,"schema":{"title":"Uninstallation Datetime","type":"string"},"name":"uninstallation_datetime","in":"query"},{"required":false,"schema":{"title":"Height","type":"string"},"name":"height","in":"query"},{"required":false,"schema":{"title":"Station Id","type":"string"},"name":"station_id","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InstrumentResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Instruments"],"summary":"Create Instrument","operationId":"create_instrument_v1_instruments__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateInstrument"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InstrumentResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/instruments/{instrument_id}":{"get":{"tags":["Instruments"],"summary":"Get Instrument By Id","operationId":"get_instrument_by_id_v1_instruments__instrument_id__get","parameters":[{"required":true,"schema":{"title":"Instrument Id","type":"string"},"name":"instrument_id","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InstrumentWithStationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Instruments"],"summary":"Update Instrument","operationId":"update_instrument_v1_instruments__instrument_id__put","parameters":[{"required":true,"schema":{"title":"Instrument Id","type":"string"},"name":"instrument_id","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateInstrument"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InstrumentResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Instruments"],"summary":"Delete Instrument","operationId":"delete_instrument_v1_instruments__instrument_id__delete","parameters":[{"required":true,"schema":{"title":"Instrument Id","type":"string"},"name":"instrument_id","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InstrumentResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/instrument-fault-reports/":{"get":{"tags":["Instrument Fault Reports"],"summary":"Get Instrument Fault Report","operationId":"get_instrument_fault_report_v1_instrument_fault_reports__get","parameters":[{"required":false,"schema":{"title":"Refers To","type":"string"},"name":"refers_to","in":"query"},{"required":false,"schema":{"title":"Report Id","type":"string"},"name":"report_id","in":"query"},{"required":false,"schema":{"title":"Report Datetime","type":"string"},"name":"report_datetime","in":"query"},{"required":false,"schema":{"title":"Fault Description","type":"number"},"name":"fault_description","in":"query"},{"required":false,"schema":{"title":"Reported By","type":"string"},"name":"reported_by","in":"query"},{"required":false,"schema":{"title":"Received Datetime","type":"string"},"name":"received_datetime","in":"query"},{"required":false,"schema":{"title":"Received By","type":"number"},"name":"received_by","in":"query"},{"required":false,"schema":{"title":"Reported From","type":"number"},"name":"reported_from","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InstrumentFaultReportResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Instrument Fault Reports"],"summary":"Create Instrument Fault Report","operationId":"create_instrument_fault_report_v1_instrument_fault_reports__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateInstrumentFaultReport"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InstrumentFaultReportResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/instrument-fault-reports/{report_id}":{"get":{"tags":["Instrument Fault Reports"],"summary":"Get Instrument Fault Report By Id","operationId":"get_instrument_fault_report_by_id_v1_instrument_fault_reports__report_id__get","parameters":[{"required":true,"schema":{"title":"Report Id","type":"integer"},"name":"report_id","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InstrumentFaultReportWithStationAndInstrumentResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Instrument Fault Reports"],"summary":"Update Instrument Fault Report","operationId":"update_instrument_fault_report_v1_instrument_fault_reports__report_id__put","parameters":[{"required":true,"schema":{"title":"Report Id","type":"integer"},"name":"report_id","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateInstrumentFaultReport"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InstrumentFaultReportResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Instrument Fault Reports"],"summary":"Delete Instrument Fault Report","operationId":"delete_instrument_fault_report_v1_instrument_fault_reports__report_id__delete","parameters":[{"required":true,"schema":{"title":"Report Id","type":"integer"},"name":"report_id","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InstrumentFaultReportResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/instrument-inspections/":{"get":{"tags":["Instruments Inspections"],"summary":"Get Instrument Inspection","operationId":"get_instrument_inspection_v1_instrument_inspections__get","parameters":[{"required":false,"schema":{"title":"Performed On","type":"string"},"name":"performed_on","in":"query"},{"required":false,"schema":{"title":"Inspection Datetime","type":"string"},"name":"inspection_datetime","in":"query"},{"required":false,"schema":{"title":"Performed By","type":"string"},"name":"performed_by","in":"query"},{"required":false,"schema":{"title":"Status","type":"string"},"name":"status","in":"query"},{"required":false,"schema":{"title":"Remarks","type":"string"},"name":"remarks","in":"query"},{"required":false,"schema":{"title":"Performed At","type":"string"},"name":"performed_at","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InstrumentInspectionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Instruments Inspections"],"summary":"Create Instrument Inspection","operationId":"create_instrument_inspection_v1_instrument_inspections__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateInstrumentInspection"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InstrumentInspectionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/instrument-inspections/{performed_on}/{inspection_datetime}":{"get":{"tags":["Instruments Inspections"],"summary":"Get Instrument Inspection By Id","operationId":"get_instrument_inspection_by_id_v1_instrument_inspections__performed_on___inspection_datetime__get","parameters":[{"required":true,"schema":{"title":"Performed On","type":"string"},"name":"performed_on","in":"path"},{"required":true,"schema":{"title":"Inspection Datetime","type":"string"},"name":"inspection_datetime","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InstrumentInspectionWithStationAndInstrumentResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Instruments Inspections"],"summary":"Update Instrument Inspection","operationId":"update_instrument_inspection_v1_instrument_inspections__performed_on___inspection_datetime__put","parameters":[{"required":true,"schema":{"title":"Performed On","type":"string"},"name":"performed_on","in":"path"},{"required":true,"schema":{"title":"Inspection Datetime","type":"string"},"name":"inspection_datetime","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateInstrumentInspection"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InstrumentInspectionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Instruments Inspections"],"summary":"Delete Instrument Inspection","operationId":"delete_instrument_inspection_v1_instrument_inspections__performed_on___inspection_datetime__delete","parameters":[{"required":true,"schema":{"title":"Performed On","type":"string"},"name":"performed_on","in":"path"},{"required":true,"schema":{"title":"Inspection Datetime","type":"string"},"name":"inspection_datetime","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InstrumentInspectionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/obselements/":{"get":{"tags":["Obselements"],"summary":"Get Obselements","operationId":"get_obselements_v1_obselements__get","parameters":[{"required":false,"schema":{"title":"Element Id","type":"string"},"name":"element_id","in":"query"},{"required":false,"schema":{"title":"Element Name","type":"string"},"name":"element_name","in":"query"},{"required":false,"schema":{"title":"Abbreviation","type":"string"},"name":"abbreviation","in":"query"},{"required":false,"schema":{"title":"Description","type":"string"},"name":"description","in":"query"},{"required":false,"schema":{"title":"Element Scale","type":"number"},"name":"element_scale","in":"query"},{"required":false,"schema":{"title":"Upper Limit","type":"number"},"name":"upper_limit","in":"query"},{"required":false,"schema":{"title":"Lower Limit","type":"string"},"name":"lower_limit","in":"query"},{"required":false,"schema":{"title":"Units","type":"string"},"name":"units","in":"query"},{"required":false,"schema":{"title":"Element Type","type":"string"},"name":"element_type","in":"query"},{"required":false,"schema":{"title":"Qc Total Required","type":"integer"},"name":"qc_total_required","in":"query"},{"required":false,"schema":{"title":"Selected","type":"boolean"},"name":"selected","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObsElementResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Obselements"],"summary":"Create Obs Element","operationId":"create_obs_element_v1_obselements__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateObsElement"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObsElementResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/obselements/{element_id}":{"get":{"tags":["Obselements"],"summary":"Get Obs Element By Id","operationId":"get_obs_element_by_id_v1_obselements__element_id__get","parameters":[{"required":true,"schema":{"title":"Element Id","type":"string"},"name":"element_id","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObsElementResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Obselements"],"summary":"Update Obs Element","operationId":"update_obs_element_v1_obselements__element_id__put","parameters":[{"required":true,"schema":{"title":"Element Id","type":"string"},"name":"element_id","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateObsElement"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObsElementResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Obselements"],"summary":"Delete Obs Element","operationId":"delete_obs_element_v1_obselements__element_id__delete","parameters":[{"required":true,"schema":{"title":"Element Id","type":"string"},"name":"element_id","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObsElementResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/observation-finals/":{"get":{"tags":["Observation Finals"],"summary":"Get Observation Finals","operationId":"get_observation_finals_v1_observation_finals__get","parameters":[{"required":false,"schema":{"title":"Recorded From","type":"string"},"name":"recorded_from","in":"query"},{"required":false,"schema":{"title":"Described By","type":"integer"},"name":"described_by","in":"query"},{"required":false,"schema":{"title":"Obs Datetime","type":"string"},"name":"obs_datetime","in":"query"},{"required":false,"schema":{"title":"Qc Status","type":"integer"},"name":"qc_status","in":"query"},{"required":false,"schema":{"title":"Acquisition Type","type":"integer"},"name":"acquisition_type","in":"query"},{"required":false,"schema":{"title":"Obs Level","type":"integer"},"name":"obs_level","in":"query"},{"required":false,"schema":{"title":"Obs Value","type":"number"},"name":"obs_value","in":"query"},{"required":false,"schema":{"title":"Flag","type":"string"},"name":"flag","in":"query"},{"required":false,"schema":{"title":"Period","type":"integer"},"name":"period","in":"query"},{"required":false,"schema":{"title":"Qc Type Log","type":"string"},"name":"qc_type_log","in":"query"},{"required":false,"schema":{"title":"Data Form","type":"string"},"name":"data_form","in":"query"},{"required":false,"schema":{"title":"Captured By","type":"string"},"name":"captured_by","in":"query"},{"required":false,"schema":{"title":"Mark","type":"boolean"},"name":"mark","in":"query"},{"required":false,"schema":{"title":"Temperature Units","type":"string"},"name":"temperature_units","in":"query"},{"required":false,"schema":{"title":"Precipitation Units","type":"string"},"name":"precipitation_units","in":"query"},{"required":false,"schema":{"title":"Cloud Height Units","type":"string"},"name":"cloud_height_units","in":"query"},{"required":false,"schema":{"title":"Vis Units","type":"string"},"name":"vis_units","in":"query"},{"required":false,"schema":{"title":"Data Source Timezone","type":"integer"},"name":"data_source_timezone","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObservationFinalResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Observation Finals"],"summary":"Create Observation Final","operationId":"create_observation_final_v1_observation_finals__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateObservationFinal"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObservationFinalResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/observation-finals/{recorded_from}/{described_by}/{obs_datetime}":{"get":{"tags":["Observation Finals"],"summary":"Get Observation Final By Id","operationId":"get_observation_final_by_id_v1_observation_finals__recorded_from___described_by___obs_datetime__get","parameters":[{"required":true,"schema":{"title":"Recorded From","type":"string"},"name":"recorded_from","in":"path"},{"required":true,"schema":{"title":"Described By","type":"integer"},"name":"described_by","in":"path"},{"required":true,"schema":{"title":"Obs Datetime","type":"string"},"name":"obs_datetime","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObservationFinalWithChildrenResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Observation Finals"],"summary":"Update Observation Final","operationId":"update_observation_final_v1_observation_finals__recorded_from___described_by___obs_datetime__put","parameters":[{"required":true,"schema":{"title":"Recorded From","type":"string"},"name":"recorded_from","in":"path"},{"required":true,"schema":{"title":"Described By","type":"integer"},"name":"described_by","in":"path"},{"required":true,"schema":{"title":"Obs Datetime","type":"string"},"name":"obs_datetime","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateObservationFinal"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObservationFinalResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Observation Finals"],"summary":"Delete Observation Final","operationId":"delete_observation_final_v1_observation_finals__recorded_from___described_by___obs_datetime__delete","parameters":[{"required":true,"schema":{"title":"Recorded From","type":"string"},"name":"recorded_from","in":"path"},{"required":true,"schema":{"title":"Described By","type":"integer"},"name":"described_by","in":"path"},{"required":true,"schema":{"title":"Obs Datetime","type":"string"},"name":"obs_datetime","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObservationFinalResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/observation-initials/":{"get":{"tags":["Observation Initials"],"summary":"Get Observation Initials","operationId":"get_observation_initials_v1_observation_initials__get","parameters":[{"required":false,"schema":{"title":"Recorded From","type":"string"},"name":"recorded_from","in":"query"},{"required":false,"schema":{"title":"Described By","type":"integer"},"name":"described_by","in":"query"},{"required":false,"schema":{"title":"Obs Datetime","type":"string"},"name":"obs_datetime","in":"query"},{"required":false,"schema":{"title":"Qc Status","type":"integer"},"name":"qc_status","in":"query"},{"required":false,"schema":{"title":"Acquisition Type","type":"integer"},"name":"acquisition_type","in":"query"},{"required":false,"schema":{"title":"Obs Level","type":"integer"},"name":"obs_level","in":"query"},{"required":false,"schema":{"title":"Obs Value","type":"number"},"name":"obs_value","in":"query"},{"required":false,"schema":{"title":"Flag","type":"string"},"name":"flag","in":"query"},{"required":false,"schema":{"title":"Period","type":"integer"},"name":"period","in":"query"},{"required":false,"schema":{"title":"Qc Type Log","type":"string"},"name":"qc_type_log","in":"query"},{"required":false,"schema":{"title":"Data Form","type":"string"},"name":"data_form","in":"query"},{"required":false,"schema":{"title":"Captured By","type":"string"},"name":"captured_by","in":"query"},{"required":false,"schema":{"title":"Mark","type":"boolean"},"name":"mark","in":"query"},{"required":false,"schema":{"title":"Temperature Units","type":"string"},"name":"temperature_units","in":"query"},{"required":false,"schema":{"title":"Precipitation Units","type":"string"},"name":"precipitation_units","in":"query"},{"required":false,"schema":{"title":"Cloud Height Units","type":"string"},"name":"cloud_height_units","in":"query"},{"required":false,"schema":{"title":"Vis Units","type":"string"},"name":"vis_units","in":"query"},{"required":false,"schema":{"title":"Data Source Timezone","type":"integer"},"name":"data_source_timezone","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObservationInitialResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Observation Initials"],"summary":"Create Observation Initial","operationId":"create_observation_initial_v1_observation_initials__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateObservationInitial"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObservationInitialResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/observation-initials/{recorded_from}/{described_by}/{obs_datetime}/{qc_status}/{acquisition_type}":{"get":{"tags":["Observation Initials"],"summary":"Get Observation Initial By Id","operationId":"get_observation_initial_by_id_v1_observation_initials__recorded_from___described_by___obs_datetime___qc_status___acquisition_type__get","parameters":[{"required":true,"schema":{"title":"Recorded From","type":"string"},"name":"recorded_from","in":"path"},{"required":true,"schema":{"title":"Described By","type":"integer"},"name":"described_by","in":"path"},{"required":true,"schema":{"title":"Obs Datetime","type":"string"},"name":"obs_datetime","in":"path"},{"required":true,"schema":{"title":"Qc Status","type":"integer"},"name":"qc_status","in":"path"},{"required":true,"schema":{"title":"Acquisition Type","type":"integer"},"name":"acquisition_type","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObservationInitialWithChildrenResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Observation Initials"],"summary":"Update Observation Initial","operationId":"update_observation_initial_v1_observation_initials__recorded_from___described_by___obs_datetime___qc_status___acquisition_type__put","parameters":[{"required":true,"schema":{"title":"Recorded From","type":"string"},"name":"recorded_from","in":"path"},{"required":true,"schema":{"title":"Described By","type":"integer"},"name":"described_by","in":"path"},{"required":true,"schema":{"title":"Obs Datetime","type":"string"},"name":"obs_datetime","in":"path"},{"required":true,"schema":{"title":"Qc Status","type":"integer"},"name":"qc_status","in":"path"},{"required":true,"schema":{"title":"Acquisition Type","type":"integer"},"name":"acquisition_type","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateObservationInitial"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObservationInitialResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Observation Initials"],"summary":"Delete Observation Initial","operationId":"delete_observation_initial_v1_observation_initials__recorded_from___described_by___obs_datetime___qc_status___acquisition_type__delete","parameters":[{"required":true,"schema":{"title":"Recorded From","type":"string"},"name":"recorded_from","in":"path"},{"required":true,"schema":{"title":"Described By","type":"integer"},"name":"described_by","in":"path"},{"required":true,"schema":{"title":"Obs Datetime","type":"string"},"name":"obs_datetime","in":"path"},{"required":true,"schema":{"title":"Qc Status","type":"integer"},"name":"qc_status","in":"path"},{"required":true,"schema":{"title":"Acquisition Type","type":"integer"},"name":"acquisition_type","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObservationInitialResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/obs-schedule-class/":{"get":{"tags":["Obs Schedule Class"],"summary":"Get Obs Schedule Class","operationId":"get_obs_schedule_class_v1_obs_schedule_class__get","parameters":[{"required":false,"schema":{"title":"Schedule Class","type":"string"},"name":"schedule_class","in":"query"},{"required":false,"schema":{"title":"Description","type":"string"},"name":"description","in":"query"},{"required":false,"schema":{"title":"Refers To","type":"string"},"name":"refers_to","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObsScheduleClassResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Obs Schedule Class"],"summary":"Create Instrument","operationId":"create_instrument_v1_obs_schedule_class__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateObsScheduleClass"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObsScheduleClassResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/obs-schedule-class/{schedule_class}":{"get":{"tags":["Obs Schedule Class"],"summary":"Get Instrument By Id","operationId":"get_instrument_by_id_v1_obs_schedule_class__schedule_class__get","parameters":[{"required":true,"schema":{"title":"Schedule Class","type":"string"},"name":"schedule_class","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObsScheduleClassWithStationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Obs Schedule Class"],"summary":"Update Instrument","operationId":"update_instrument_v1_obs_schedule_class__schedule_class__put","parameters":[{"required":true,"schema":{"title":"Schedule Class","type":"string"},"name":"schedule_class","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateObsScheduleClass"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObsScheduleClassResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Obs Schedule Class"],"summary":"Delete Instrument","operationId":"delete_instrument_v1_obs_schedule_class__schedule_class__delete","parameters":[{"required":true,"schema":{"title":"Schedule Class","type":"string"},"name":"schedule_class","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObsScheduleClassResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/paper-archives/":{"get":{"tags":["Paper Archives"],"summary":"Get Paper Archives","operationId":"get_paper_archives_v1_paper_archives__get","parameters":[{"required":false,"schema":{"title":"Belongs To","type":"string"},"name":"belongs_to","in":"query"},{"required":false,"schema":{"title":"Form Datetime","type":"string"},"name":"form_datetime","in":"query"},{"required":false,"schema":{"title":"Image","type":"string"},"name":"image","in":"query"},{"required":false,"schema":{"title":"Classified Into","type":"string"},"name":"classified_into","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaperArchiveResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Paper Archives"],"summary":"Create Paper Archive","operationId":"create_paper_archive_v1_paper_archives__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreatePaperArchive"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaperArchiveResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/paper-archives/{belongs_to}/{form_datetime}/{classified_into}":{"get":{"tags":["Paper Archives"],"summary":"Get Paper Archive By Id","operationId":"get_paper_archive_by_id_v1_paper_archives__belongs_to___form_datetime___classified_into__get","parameters":[{"required":true,"schema":{"title":"Belongs To","type":"string"},"name":"belongs_to","in":"path"},{"required":true,"schema":{"title":"Form Datetime","type":"string"},"name":"form_datetime","in":"path"},{"required":true,"schema":{"title":"Classified Into","type":"string"},"name":"classified_into","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaperArchiveWithStationAndPaperArchiveDefinitionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Paper Archives"],"summary":"Update Paper Archive","operationId":"update_paper_archive_v1_paper_archives__belongs_to___form_datetime___classified_into__put","parameters":[{"required":true,"schema":{"title":"Belongs To","type":"string"},"name":"belongs_to","in":"path"},{"required":true,"schema":{"title":"Form Datetime","type":"string"},"name":"form_datetime","in":"path"},{"required":true,"schema":{"title":"Classified Into","type":"string"},"name":"classified_into","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdatePaperArchive"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaperArchiveResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Paper Archives"],"summary":"Delete Paper Archive","operationId":"delete_paper_archive_v1_paper_archives__belongs_to___form_datetime___classified_into__delete","parameters":[{"required":true,"schema":{"title":"Belongs To","type":"string"},"name":"belongs_to","in":"path"},{"required":true,"schema":{"title":"Form Datetime","type":"string"},"name":"form_datetime","in":"path"},{"required":true,"schema":{"title":"Classified Into","type":"string"},"name":"classified_into","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaperArchiveResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/paper-archive-definitions/":{"get":{"tags":["Paper Archive Definitions"],"summary":"Get Paper Archive Definitions","operationId":"get_paper_archive_definitions_v1_paper_archive_definitions__get","parameters":[{"required":false,"schema":{"title":"Form Id","type":"string"},"name":"form_id","in":"query"},{"required":false,"schema":{"title":"Description","type":"string"},"name":"description","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaperArchiveDefinitionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Paper Archive Definitions"],"summary":"Create Paper Archive Definition","operationId":"create_paper_archive_definition_v1_paper_archive_definitions__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreatePaperArchiveDefinition"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaperArchiveDefinitionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/paper-archive-definitions/{form_id}":{"get":{"tags":["Paper Archive Definitions"],"summary":"Get Paper Archive Definition By Id","operationId":"get_paper_archive_definition_by_id_v1_paper_archive_definitions__form_id__get","parameters":[{"required":true,"schema":{"title":"Form Id","type":"string"},"name":"form_id","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaperArchiveDefinitionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Paper Archive Definitions"],"summary":"Update Paper Archive Definition","operationId":"update_paper_archive_definition_v1_paper_archive_definitions__form_id__put","parameters":[{"required":true,"schema":{"title":"Form Id","type":"string"},"name":"form_id","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdatePaperArchiveDefinition"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaperArchiveDefinitionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Paper Archive Definitions"],"summary":"Delete Paper Archive Definition","operationId":"delete_paper_archive_definition_v1_paper_archive_definitions__form_id__delete","parameters":[{"required":true,"schema":{"title":"Form Id","type":"string"},"name":"form_id","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaperArchiveDefinitionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/physical-features/":{"get":{"tags":["Physical Features"],"summary":"Get Physical Feature","operationId":"get_physical_feature_v1_physical_features__get","parameters":[{"required":false,"schema":{"title":"Associated With","type":"string"},"name":"associated_with","in":"query"},{"required":false,"schema":{"title":"Begin Date","type":"string"},"name":"begin_date","in":"query"},{"required":false,"schema":{"title":"End Date","type":"string"},"name":"end_date","in":"query"},{"required":false,"schema":{"title":"Image","type":"string"},"name":"image","in":"query"},{"required":false,"schema":{"title":"Description","type":"string"},"name":"description","in":"query"},{"required":false,"schema":{"title":"Classified Into","type":"string"},"name":"classified_into","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PhysicalFeatureResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Physical Features"],"summary":"Create Physical Feature","operationId":"create_physical_feature_v1_physical_features__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreatePhysicalFeature"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PhysicalFeatureResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/physical-features/{associated_with}/{begin_date}/{classified_into}/{description}":{"get":{"tags":["Physical Features"],"summary":"Get Physical Feature By Id","operationId":"get_physical_feature_by_id_v1_physical_features__associated_with___begin_date___classified_into___description__get","parameters":[{"required":true,"schema":{"title":"Associated With","type":"string"},"name":"associated_with","in":"path"},{"required":true,"schema":{"title":"Begin Date","type":"string"},"name":"begin_date","in":"path"},{"required":true,"schema":{"title":"Classified Into","type":"string"},"name":"classified_into","in":"path"},{"required":true,"schema":{"title":"Description","type":"string"},"name":"description","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PhysicalFeatureWithStationAndPhysicalFeatureClassResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Physical Features"],"summary":"Update Physical Feature","operationId":"update_physical_feature_v1_physical_features__associated_with___begin_date___classified_into___description__put","parameters":[{"required":true,"schema":{"title":"Associated With","type":"string"},"name":"associated_with","in":"path"},{"required":true,"schema":{"title":"Begin Date","type":"string"},"name":"begin_date","in":"path"},{"required":true,"schema":{"title":"Classified Into","type":"string"},"name":"classified_into","in":"path"},{"required":true,"schema":{"title":"Description","type":"string"},"name":"description","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdatePhysicalFeature"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PhysicalFeatureResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Physical Features"],"summary":"Delete Physical Feature","operationId":"delete_physical_feature_v1_physical_features__associated_with___begin_date___classified_into___description__delete","parameters":[{"required":true,"schema":{"title":"Associated With","type":"string"},"name":"associated_with","in":"path"},{"required":true,"schema":{"title":"Begin Date","type":"string"},"name":"begin_date","in":"path"},{"required":true,"schema":{"title":"Classified Into","type":"string"},"name":"classified_into","in":"path"},{"required":true,"schema":{"title":"Description","type":"string"},"name":"description","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PhysicalFeatureResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/physical-feature-class/":{"get":{"tags":["Physical Feature Class"],"summary":"Get Physical Feature Class","operationId":"get_physical_feature_class_v1_physical_feature_class__get","parameters":[{"required":false,"schema":{"title":"Feature Class","type":"string"},"name":"feature_class","in":"query"},{"required":false,"schema":{"title":"Description","type":"string"},"name":"description","in":"query"},{"required":false,"schema":{"title":"Refers To","type":"string"},"name":"refers_to","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PhysicalFeatureClassResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Physical Feature Class"],"summary":"Create Physical Feature Class","operationId":"create_physical_feature_class_v1_physical_feature_class__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreatePhysicalFeatureClass"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PhysicalFeatureClassResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/physical-feature-class/{feature_class}":{"get":{"tags":["Physical Feature Class"],"summary":"Get Physical Feature Class By Id","operationId":"get_physical_feature_class_by_id_v1_physical_feature_class__feature_class__get","parameters":[{"required":true,"schema":{"title":"Feature Class","type":"string"},"name":"feature_class","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PhysicalFeatureClassWithStationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Physical Feature Class"],"summary":"Update Physical Feature Class","operationId":"update_physical_feature_class_v1_physical_feature_class__feature_class__put","parameters":[{"required":true,"schema":{"title":"Feature Class","type":"string"},"name":"feature_class","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdatePhysicalFeatureClass"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PhysicalFeatureClassResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Physical Feature Class"],"summary":"Delete Physical Feature Class","operationId":"delete_physical_feature_class_v1_physical_feature_class__feature_class__delete","parameters":[{"required":true,"schema":{"title":"Feature Class","type":"string"},"name":"feature_class","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PhysicalFeatureClassResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/qc-status-definitions/":{"get":{"tags":["QC Status Definitions"],"summary":"Get Qc Status Definitions","operationId":"get_qc_status_definitions_v1_qc_status_definitions__get","parameters":[{"required":false,"schema":{"title":"Code","type":"string"},"name":"code","in":"query"},{"required":false,"schema":{"title":"Description","type":"string"},"name":"description","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QCStatusDefinitionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["QC Status Definitions"],"summary":"Create Qc Status Definition","operationId":"create_qc_status_definition_v1_qc_status_definitions__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateQCStatusDefinition"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QCStatusDefinitionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/qc-status-definitions/{code}":{"get":{"tags":["QC Status Definitions"],"summary":"Get Qc Status Definition By Id","operationId":"get_qc_status_definition_by_id_v1_qc_status_definitions__code__get","parameters":[{"required":true,"schema":{"title":"Code","type":"string"},"name":"code","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QCStatusDefinitionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["QC Status Definitions"],"summary":"Update Qc Status Definition","operationId":"update_qc_status_definition_v1_qc_status_definitions__code__put","parameters":[{"required":true,"schema":{"title":"Code","type":"string"},"name":"code","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateQCStatusDefinition"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QCStatusDefinitionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["QC Status Definitions"],"summary":"Delete Qc Status Definition","operationId":"delete_qc_status_definition_v1_qc_status_definitions__code__delete","parameters":[{"required":true,"schema":{"title":"Code","type":"string"},"name":"code","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QCStatusDefinitionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/qc-types/":{"get":{"tags":["QC Types"],"summary":"Get Qc Types","operationId":"get_qc_types_v1_qc_types__get","parameters":[{"required":false,"schema":{"title":"Code","type":"string"},"name":"code","in":"query"},{"required":false,"schema":{"title":"Description","type":"string"},"name":"description","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QCTypeResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["QC Types"],"summary":"Create Qc Type","operationId":"create_qc_type_v1_qc_types__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateQCType"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QCTypeResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/qc-types/{code}":{"get":{"tags":["QC Types"],"summary":"Get Qc Type By Id","operationId":"get_qc_type_by_id_v1_qc_types__code__get","parameters":[{"required":true,"schema":{"title":"Code","type":"string"},"name":"code","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QCTypeResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["QC Types"],"summary":"Update Qc Type","operationId":"update_qc_type_v1_qc_types__code__put","parameters":[{"required":true,"schema":{"title":"Code","type":"string"},"name":"code","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateQCType"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QCTypeResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["QC Types"],"summary":"Delete Qc Type","operationId":"delete_qc_type_v1_qc_types__code__delete","parameters":[{"required":true,"schema":{"title":"Code","type":"string"},"name":"code","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QCTypeResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/reg-keys/":{"get":{"tags":["Reg Keys"],"summary":"Get Reg Keys","operationId":"get_reg_keys_v1_reg_keys__get","parameters":[{"required":false,"schema":{"title":"Key Name","type":"string"},"name":"key_name","in":"query"},{"required":false,"schema":{"title":"Key Value","type":"string"},"name":"key_value","in":"query"},{"required":false,"schema":{"title":"Key Description","type":"string"},"name":"key_description","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegKeyResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Reg Keys"],"summary":"Create Reg Key","operationId":"create_reg_key_v1_reg_keys__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateRegKey"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegKeyResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/reg-keys/{key_name}":{"get":{"tags":["Reg Keys"],"summary":"Get Reg Key By Id","operationId":"get_reg_key_by_id_v1_reg_keys__key_name__get","parameters":[{"required":true,"schema":{"title":"Key Name","type":"string"},"name":"key_name","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegKeyResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Reg Keys"],"summary":"Update Reg Key","operationId":"update_reg_key_v1_reg_keys__key_name__put","parameters":[{"required":true,"schema":{"title":"Key Name","type":"string"},"name":"key_name","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateRegKey"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegKeyResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Reg Keys"],"summary":"Delete Reg Key","operationId":"delete_reg_key_v1_reg_keys__key_name__delete","parameters":[{"required":true,"schema":{"title":"Key Name","type":"string"},"name":"key_name","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegKeyResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/stations/":{"get":{"tags":["Stations"],"summary":"Get Stations","operationId":"get_stations_v1_stations__get","parameters":[{"required":false,"schema":{"title":"Station Id","type":"string"},"name":"station_id","in":"query"},{"required":false,"schema":{"title":"Station Name","type":"string"},"name":"station_name","in":"query"},{"required":false,"schema":{"title":"Wmoid","type":"string"},"name":"wmoid","in":"query"},{"required":false,"schema":{"title":"Icaoid","type":"string"},"name":"icaoid","in":"query"},{"required":false,"schema":{"title":"Latitude","type":"number"},"name":"latitude","in":"query"},{"required":false,"schema":{"title":"Longitude","type":"number"},"name":"longitude","in":"query"},{"required":false,"schema":{"title":"Qualifier","type":"string"},"name":"qualifier","in":"query"},{"required":false,"schema":{"title":"Elevation","type":"string"},"name":"elevation","in":"query"},{"required":false,"schema":{"title":"Geolocation Method","type":"string"},"name":"geolocation_method","in":"query"},{"required":false,"schema":{"title":"Geolocation Accuracy","type":"string"},"name":"geolocation_accuracy","in":"query"},{"required":false,"schema":{"title":"Opening Datetime","type":"string"},"name":"opening_datetime","in":"query"},{"required":false,"schema":{"title":"Closing Datetime","type":"string"},"name":"closing_datetime","in":"query"},{"required":false,"schema":{"title":"Country","type":"string"},"name":"country","in":"query"},{"required":false,"schema":{"title":"Authority","type":"string"},"name":"authority","in":"query"},{"required":false,"schema":{"title":"Admin Region","type":"string"},"name":"admin_region","in":"query"},{"required":false,"schema":{"title":"Drainage Basin","type":"string"},"name":"drainage_basin","in":"query"},{"required":false,"schema":{"title":"Waca Selection","type":"boolean"},"name":"waca_selection","in":"query"},{"required":false,"schema":{"title":"Cpt Selection","type":"boolean"},"name":"cpt_selection","in":"query"},{"required":false,"schema":{"title":"Station Operational","type":"boolean"},"name":"station_operational","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Stations"],"summary":"Create Station","operationId":"create_station_v1_stations__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateStation"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/stations/{station_id}":{"get":{"tags":["Stations"],"summary":"Get Station By Id","operationId":"get_station_by_id_v1_stations__station_id__get","parameters":[{"required":true,"schema":{"title":"Station Id","type":"string"},"name":"station_id","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Stations"],"summary":"Update Station","operationId":"update_station_v1_stations__station_id__put","parameters":[{"required":true,"schema":{"title":"Station Id","type":"string"},"name":"station_id","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateStation"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Stations"],"summary":"Delete Station","operationId":"delete_station_v1_stations__station_id__delete","parameters":[{"required":true,"schema":{"title":"Station Id","type":"string"},"name":"station_id","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/station-elements/":{"get":{"tags":["Station Elements"],"summary":"Get Station Elements","operationId":"get_station_elements_v1_station_elements__get","parameters":[{"required":false,"schema":{"title":"Recorded From","type":"string"},"name":"recorded_from","in":"query"},{"required":false,"schema":{"title":"Described By","type":"integer"},"name":"described_by","in":"query"},{"required":false,"schema":{"title":"Recorded With","type":"string"},"name":"recorded_with","in":"query"},{"required":false,"schema":{"title":"Instrument Code","type":"string"},"name":"instrument_code","in":"query"},{"required":false,"schema":{"title":"Scheduled For","type":"string"},"name":"scheduled_for","in":"query"},{"required":false,"schema":{"title":"Height","type":"integer"},"name":"height","in":"query"},{"required":false,"schema":{"title":"Begin Date","type":"number"},"name":"begin_date","in":"query"},{"required":false,"schema":{"title":"End Date","type":"string"},"name":"end_date","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationElementResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Station Elements"],"summary":"Create Station Element","operationId":"create_station_element_v1_station_elements__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateStationElement"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationElementResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/station-elements/{recorded_from}/{described_by}/{recorded_with}/{begin_date}":{"get":{"tags":["Station Elements"],"summary":"Get Station Element By Id","operationId":"get_station_element_by_id_v1_station_elements__recorded_from___described_by___recorded_with___begin_date__get","parameters":[{"required":true,"schema":{"title":"Recorded From","type":"string"},"name":"recorded_from","in":"path"},{"required":true,"schema":{"title":"Described By","type":"integer"},"name":"described_by","in":"path"},{"required":true,"schema":{"title":"Recorded With","type":"string"},"name":"recorded_with","in":"path"},{"required":true,"schema":{"title":"Begin Date","type":"string"},"name":"begin_date","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationElementWithChildrenResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Station Elements"],"summary":"Update Station Element","operationId":"update_station_element_v1_station_elements__recorded_from___described_by___recorded_with___begin_date__put","parameters":[{"required":true,"schema":{"title":"Recorded From","type":"string"},"name":"recorded_from","in":"path"},{"required":true,"schema":{"title":"Described By","type":"integer"},"name":"described_by","in":"path"},{"required":true,"schema":{"title":"Recorded With","type":"string"},"name":"recorded_with","in":"path"},{"required":true,"schema":{"title":"Begin Date","type":"string"},"name":"begin_date","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateStationElement"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationElementResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Station Elements"],"summary":"Delete Station Element","operationId":"delete_station_element_v1_station_elements__recorded_from___described_by___recorded_with___begin_date__delete","parameters":[{"required":true,"schema":{"title":"Recorded From","type":"string"},"name":"recorded_from","in":"path"},{"required":true,"schema":{"title":"Described By","type":"integer"},"name":"described_by","in":"path"},{"required":true,"schema":{"title":"Recorded With","type":"string"},"name":"recorded_with","in":"path"},{"required":true,"schema":{"title":"Begin Date","type":"string"},"name":"begin_date","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationElementResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/station-location-histories/":{"get":{"tags":["Station Location Histories"],"summary":"Get Station Location History","operationId":"get_station_location_history_v1_station_location_histories__get","parameters":[{"required":false,"schema":{"title":"Belongs To","type":"string"},"name":"belongs_to","in":"query"},{"required":false,"schema":{"title":"Station Type","type":"string"},"name":"station_type","in":"query"},{"required":false,"schema":{"title":"Geolocation Method","type":"string"},"name":"geolocation_method","in":"query"},{"required":false,"schema":{"title":"Geolocation Accuracy","type":"number"},"name":"geolocation_accuracy","in":"query"},{"required":false,"schema":{"title":"Opening Datetime","type":"string"},"name":"opening_datetime","in":"query"},{"required":false,"schema":{"title":"Closing Datetime","type":"string"},"name":"closing_datetime","in":"query"},{"required":false,"schema":{"title":"Latitude","type":"number"},"name":"latitude","in":"query"},{"required":false,"schema":{"title":"Longitude","type":"number"},"name":"longitude","in":"query"},{"required":false,"schema":{"title":"Elevation","type":"integer"},"name":"elevation","in":"query"},{"required":false,"schema":{"title":"Authority","type":"string"},"name":"authority","in":"query"},{"required":false,"schema":{"title":"Admin Region","type":"string"},"name":"admin_region","in":"query"},{"required":false,"schema":{"title":"Drainage Basin","type":"string"},"name":"drainage_basin","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationLocationHistoryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Station Location Histories"],"summary":"Create Station Location History","operationId":"create_station_location_history_v1_station_location_histories__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateStationLocationHistory"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationLocationHistoryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/station-location-histories/{belongs_to}/{opening_datetime}":{"get":{"tags":["Station Location Histories"],"summary":"Get Station Location History By Id","operationId":"get_station_location_history_by_id_v1_station_location_histories__belongs_to___opening_datetime__get","parameters":[{"required":true,"schema":{"title":"Belongs To","type":"string"},"name":"belongs_to","in":"path"},{"required":true,"schema":{"title":"Opening Datetime","type":"string"},"name":"opening_datetime","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationLocationHistoryWithStationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Station Location Histories"],"summary":"Update Station Location History","operationId":"update_station_location_history_v1_station_location_histories__belongs_to___opening_datetime__put","parameters":[{"required":true,"schema":{"title":"Belongs To","type":"string"},"name":"belongs_to","in":"path"},{"required":true,"schema":{"title":"Opening Datetime","type":"string"},"name":"opening_datetime","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateStationLocationHistory"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationLocationHistoryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Station Location Histories"],"summary":"Delete Station Location History","operationId":"delete_station_location_history_v1_station_location_histories__belongs_to___opening_datetime__delete","parameters":[{"required":true,"schema":{"title":"Belongs To","type":"string"},"name":"belongs_to","in":"path"},{"required":true,"schema":{"title":"Opening Datetime","type":"string"},"name":"opening_datetime","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationLocationHistoryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/station-qualifiers/":{"get":{"tags":["Station Qualifiers"],"summary":"Get Station Qualifier","operationId":"get_station_qualifier_v1_station_qualifiers__get","parameters":[{"required":false,"schema":{"title":"Qualifier","type":"string"},"name":"qualifier","in":"query"},{"required":false,"schema":{"title":"Qualifier Begin Date","type":"string"},"name":"qualifier_begin_date","in":"query"},{"required":false,"schema":{"title":"Qualifier End Date","type":"string"},"name":"qualifier_end_date","in":"query"},{"required":false,"schema":{"title":"Station Timezone","type":"integer"},"name":"station_timezone","in":"query"},{"required":false,"schema":{"title":"Station Network Type","type":"string"},"name":"station_network_type","in":"query"},{"required":false,"schema":{"title":"Belongs To","type":"string"},"name":"belongs_to","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationQualifierResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Station Qualifiers"],"summary":"Create Station Qualifier","operationId":"create_station_qualifier_v1_station_qualifiers__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateStationQualifier"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationQualifierResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/station-qualifiers/{qualifier}/{qualifier_begin_date}/{qualifier_end_date}/{belongs_to}":{"get":{"tags":["Station Qualifiers"],"summary":"Get Station Qualifier By Id","operationId":"get_station_qualifier_by_id_v1_station_qualifiers__qualifier___qualifier_begin_date___qualifier_end_date___belongs_to__get","parameters":[{"required":true,"schema":{"title":"Qualifier","type":"string"},"name":"qualifier","in":"path"},{"required":true,"schema":{"title":"Qualifier Begin Date","type":"string"},"name":"qualifier_begin_date","in":"path"},{"required":true,"schema":{"title":"Qualifier End Date","type":"string"},"name":"qualifier_end_date","in":"path"},{"required":true,"schema":{"title":"Belongs To","type":"string"},"name":"belongs_to","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationQualifierWithStationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Station Qualifiers"],"summary":"Update Station Qualifier","operationId":"update_station_qualifier_v1_station_qualifiers__qualifier___qualifier_begin_date___qualifier_end_date___belongs_to__put","parameters":[{"required":true,"schema":{"title":"Qualifier","type":"string"},"name":"qualifier","in":"path"},{"required":true,"schema":{"title":"Qualifier Begin Date","type":"string"},"name":"qualifier_begin_date","in":"path"},{"required":true,"schema":{"title":"Qualifier End Date","type":"string"},"name":"qualifier_end_date","in":"path"},{"required":true,"schema":{"title":"Belongs To","type":"string"},"name":"belongs_to","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateStationQualifier"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationQualifierResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Station Qualifiers"],"summary":"Delete Station Qualifier","operationId":"delete_station_qualifier_v1_station_qualifiers__qualifier___qualifier_begin_date___qualifier_end_date___belongs_to__delete","parameters":[{"required":true,"schema":{"title":"Qualifier","type":"string"},"name":"qualifier","in":"path"},{"required":true,"schema":{"title":"Qualifier Begin Date","type":"string"},"name":"qualifier_begin_date","in":"path"},{"required":true,"schema":{"title":"Qualifier End Date","type":"string"},"name":"qualifier_end_date","in":"path"},{"required":true,"schema":{"title":"Belongs To","type":"string"},"name":"belongs_to","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StationQualifierResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/synop-features/":{"get":{"tags":["Synop Features"],"summary":"Get Qc Types","operationId":"get_qc_types_v1_synop_features__get","parameters":[{"required":false,"schema":{"title":"Abbreviation","type":"string"},"name":"abbreviation","in":"query"},{"required":false,"schema":{"title":"Description","type":"string"},"name":"description","in":"query"},{"required":false,"schema":{"title":"Limit","type":"integer","default":25},"name":"limit","in":"query"},{"required":false,"schema":{"title":"Offset","type":"integer","default":0},"name":"offset","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SynopFeatureResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Synop Features"],"summary":"Create Qc Type","operationId":"create_qc_type_v1_synop_features__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateSynopFeature"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SynopFeatureResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/synop-features/{abbreviation}":{"get":{"tags":["Synop Features"],"summary":"Get Qc Type By Id","operationId":"get_qc_type_by_id_v1_synop_features__abbreviation__get","parameters":[{"required":true,"schema":{"title":"Abbreviation","type":"string"},"name":"abbreviation","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SynopFeatureResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Synop Features"],"summary":"Update Qc Type","operationId":"update_qc_type_v1_synop_features__abbreviation__put","parameters":[{"required":true,"schema":{"title":"Abbreviation","type":"string"},"name":"abbreviation","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateSynopFeature"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SynopFeatureResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Synop Features"],"summary":"Delete Qc Type","operationId":"delete_qc_type_v1_synop_features__abbreviation__delete","parameters":[{"required":true,"schema":{"title":"Abbreviation","type":"string"},"name":"abbreviation","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SynopFeatureResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"AcquisitionType":{"title":"AcquisitionType","required":["code","description"],"type":"object","properties":{"code":{"title":"Code","type":"integer"},"description":{"title":"Description","type":"string"}},"additionalProperties":false},"AcquisitionTypeResponse":{"title":"AcquisitionTypeResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/AcquisitionType"}}},"additionalProperties":false},"CreateAcquisitionType":{"title":"CreateAcquisitionType","required":["code","description"],"type":"object","properties":{"code":{"title":"Code","type":"integer"},"description":{"title":"Description","type":"string"}},"additionalProperties":false},"CreateDataForm":{"title":"CreateDataForm","required":["formName","orderNum","tableName","description","selected","valStartPosition","valEndPosition","elemCodeLocation","sequencer","entryMode"],"type":"object","properties":{"formName":{"title":"Formname","maxLength":250,"type":"string"},"orderNum":{"title":"Ordernum","type":"integer"},"tableName":{"title":"Tablename","maxLength":255,"type":"string"},"description":{"title":"Description","type":"string"},"selected":{"title":"Selected","type":"boolean"},"valStartPosition":{"title":"Valstartposition","type":"integer"},"valEndPosition":{"title":"Valendposition","type":"integer"},"elemCodeLocation":{"title":"Elemcodelocation","maxLength":255,"type":"string"},"sequencer":{"title":"Sequencer","maxLength":50,"type":"string"},"entryMode":{"title":"Entrymode","type":"boolean"}},"additionalProperties":false},"CreateFaultResolution":{"title":"CreateFaultResolution","required":["resolvedDatetime","associatedWith","resolvedBy","remarks"],"type":"object","properties":{"resolvedDatetime":{"title":"Resolveddatetime","maxLength":50,"type":"string"},"associatedWith":{"title":"Associatedwith","maxLength":255,"type":"string"},"resolvedBy":{"title":"Resolvedby","maxLength":255,"type":"string"},"remarks":{"title":"Remarks","maxLength":255,"type":"string"}},"additionalProperties":false},"CreateFeatureGeographicalPosition":{"title":"CreateFeatureGeographicalPosition","required":["belongsTo","observedOn","latitude","longitude"],"type":"object","properties":{"belongsTo":{"title":"Belongsto","maxLength":255,"type":"string"},"observedOn":{"title":"Observedon","maxLength":50,"type":"string"},"latitude":{"title":"Latitude","type":"number"},"longitude":{"title":"Longitude","type":"number"}},"additionalProperties":false},"CreateFlag":{"title":"CreateFlag","required":["characterSymbol","numSymbol","description"],"type":"object","properties":{"characterSymbol":{"title":"Charactersymbol","maxLength":255,"type":"string"},"numSymbol":{"title":"Numsymbol","type":"integer"},"description":{"title":"Description","maxLength":255,"type":"string"}},"additionalProperties":false},"CreateInstrument":{"title":"CreateInstrument","required":["instrumentName","instrumentId","serialNumber","abbreviation","model","manufacturer","instrumentUncertainty","installationDatetime","deinstallationDatetime","height","instrumentPicture","installedAt"],"type":"object","properties":{"instrumentName":{"title":"Instrumentname","maxLength":255,"type":"string"},"instrumentId":{"title":"Instrumentid","maxLength":255,"type":"string"},"serialNumber":{"title":"Serialnumber","maxLength":255,"type":"string"},"abbreviation":{"title":"Abbreviation","maxLength":255,"type":"string"},"model":{"title":"Model","maxLength":255,"type":"string"},"manufacturer":{"title":"Manufacturer","maxLength":255,"type":"string"},"instrumentUncertainty":{"title":"Instrumentuncertainty","type":"number"},"installationDatetime":{"title":"Installationdatetime","maxLength":50,"type":"string"},"deinstallationDatetime":{"title":"Deinstallationdatetime","maxLength":50,"type":"string"},"height":{"title":"Height","maxLength":255,"type":"string"},"instrumentPicture":{"title":"Instrumentpicture","maxLength":255,"type":"string"},"installedAt":{"title":"Installedat","maxLength":255,"type":"string"}},"additionalProperties":false},"CreateInstrumentFaultReport":{"title":"CreateInstrumentFaultReport","required":["refersTo","reportId","reportDatetime","faultDescription","reportedBy","receivedDatetime","receivedBy","reportedFrom"],"type":"object","properties":{"refersTo":{"title":"Refersto","maxLength":255,"type":"string"},"reportId":{"title":"Reportid","type":"integer"},"reportDatetime":{"title":"Reportdatetime","maxLength":50,"type":"string"},"faultDescription":{"title":"Faultdescription","maxLength":255,"type":"string"},"reportedBy":{"title":"Reportedby","maxLength":255,"type":"string"},"receivedDatetime":{"title":"Receiveddatetime","maxLength":50,"type":"string"},"receivedBy":{"title":"Receivedby","maxLength":255,"type":"string"},"reportedFrom":{"title":"Reportedfrom","maxLength":255,"type":"string"}},"additionalProperties":false},"CreateInstrumentInspection":{"title":"CreateInstrumentInspection","required":["performedOn","inspectionDatetime","performedBy","status","remarks","performedAt"],"type":"object","properties":{"performedOn":{"title":"Performedon","maxLength":255,"type":"string"},"inspectionDatetime":{"title":"Inspectiondatetime","maxLength":50,"type":"string"},"performedBy":{"title":"Performedby","maxLength":255,"type":"string"},"status":{"title":"Status","maxLength":255,"type":"string"},"remarks":{"title":"Remarks","maxLength":255,"type":"string"},"performedAt":{"title":"Performedat","maxLength":50,"type":"string"}},"additionalProperties":false},"CreateObsElement":{"title":"CreateObsElement","required":["elementId","abbreviation","elementName","description","elementScale","upperLimit","lowerLimit","units","elementtype","qcTotalRequired","selected"],"type":"object","properties":{"elementId":{"title":"Elementid","type":"integer"},"abbreviation":{"title":"Abbreviation","maxLength":255,"type":"string"},"elementName":{"title":"Elementname","maxLength":255,"type":"string"},"description":{"title":"Description","maxLength":255,"type":"string"},"elementScale":{"title":"Elementscale","type":"number"},"upperLimit":{"title":"Upperlimit","maxLength":255,"type":"string"},"lowerLimit":{"title":"Lowerlimit","maxLength":255,"type":"string"},"units":{"title":"Units","maxLength":255,"type":"string"},"elementtype":{"title":"Elementtype","maxLength":50,"type":"string"},"qcTotalRequired":{"title":"Qctotalrequired","type":"integer"},"selected":{"title":"Selected","type":"boolean"}},"additionalProperties":false},"CreateObsScheduleClass":{"title":"CreateObsScheduleClass","required":["scheduleClass","description","refersTo"],"type":"object","properties":{"scheduleClass":{"title":"Scheduleclass","maxLength":255,"type":"string"},"description":{"title":"Description","maxLength":255,"type":"string"},"refersTo":{"title":"Refersto","maxLength":255,"type":"string"}},"additionalProperties":false},"CreateObservationFinal":{"title":"CreateObservationFinal","required":["recordedFrom","describedBy","obsDatetime","qcStatus","acquisitionType","obsLevel","obsValue","flag","dataSourceTimeZone"],"type":"object","properties":{"recordedFrom":{"title":"Recordedfrom","maxLength":255,"type":"string"},"describedBy":{"title":"Describedby","type":"integer"},"obsDatetime":{"title":"Obsdatetime","type":"string"},"qcStatus":{"title":"Qcstatus","type":"integer"},"acquisitionType":{"title":"Acquisitiontype","type":"integer"},"obsLevel":{"title":"Obslevel","maxLength":255,"type":"string"},"obsValue":{"title":"Obsvalue","maxLength":255,"type":"string"},"flag":{"title":"Flag","maxLength":255,"type":"string"},"period":{"title":"Period","type":"integer"},"qcTypeLog":{"title":"Qctypelog","type":"string"},"dataForm":{"title":"Dataform","maxLength":255,"type":"string"},"capturedBy":{"title":"Capturedby","maxLength":255,"type":"string"},"mark":{"title":"Mark","type":"boolean"},"temperatureUnits":{"title":"Temperatureunits","maxLength":255,"type":"string"},"precipitationUnits":{"title":"Precipitationunits","maxLength":255,"type":"string"},"cloudHeightUnits":{"title":"Cloudheightunits","maxLength":255,"type":"string"},"visUnits":{"title":"Visunits","maxLength":255,"type":"string"},"dataSourceTimeZone":{"title":"Datasourcetimezone","type":"integer"}},"additionalProperties":false},"CreateObservationInitial":{"title":"CreateObservationInitial","required":["recordedFrom","describedBy","obsDatetime","qcStatus","acquisitionType","obsLevel","obsValue","flag","period","qcTypeLog","dataForm","capturedBy","mark","temperatureUnits","precipitationUnits","cloudHeightUnits","visUnits","dataSourceTimeZone"],"type":"object","properties":{"recordedFrom":{"title":"Recordedfrom","maxLength":255,"type":"string"},"describedBy":{"title":"Describedby","type":"integer"},"obsDatetime":{"title":"Obsdatetime","type":"string"},"qcStatus":{"title":"Qcstatus","type":"integer"},"acquisitionType":{"title":"Acquisitiontype","type":"integer"},"obsLevel":{"title":"Obslevel","maxLength":255,"type":"string"},"obsValue":{"title":"Obsvalue","maxLength":255,"type":"string"},"flag":{"title":"Flag","maxLength":255,"type":"string"},"period":{"title":"Period","type":"integer"},"qcTypeLog":{"title":"Qctypelog","type":"string"},"dataForm":{"title":"Dataform","maxLength":255,"type":"string"},"capturedBy":{"title":"Capturedby","maxLength":255,"type":"string"},"mark":{"title":"Mark","type":"boolean"},"temperatureUnits":{"title":"Temperatureunits","maxLength":255,"type":"string"},"precipitationUnits":{"title":"Precipitationunits","maxLength":255,"type":"string"},"cloudHeightUnits":{"title":"Cloudheightunits","maxLength":255,"type":"string"},"visUnits":{"title":"Visunits","maxLength":255,"type":"string"},"dataSourceTimeZone":{"title":"Datasourcetimezone","type":"integer"}},"additionalProperties":false},"CreatePaperArchive":{"title":"CreatePaperArchive","required":["belongsTo","formDatetime","image","classifiedInto"],"type":"object","properties":{"belongsTo":{"title":"Belongsto","maxLength":255,"type":"string"},"formDatetime":{"title":"Formdatetime","type":"string"},"image":{"title":"Image","maxLength":255,"type":"string"},"classifiedInto":{"title":"Classifiedinto","maxLength":50,"type":"string"}},"additionalProperties":false},"CreatePaperArchiveDefinition":{"title":"CreatePaperArchiveDefinition","required":["formId","description"],"type":"object","properties":{"formId":{"title":"Formid","maxLength":50,"type":"string"},"description":{"title":"Description","maxLength":255,"type":"string"}},"additionalProperties":false},"CreatePhysicalFeature":{"title":"CreatePhysicalFeature","required":["associatedWith","beginDate","endDate","image","description","classifiedInto"],"type":"object","properties":{"associatedWith":{"title":"Associatedwith","maxLength":255,"type":"string"},"beginDate":{"title":"Begindate","maxLength":50,"type":"string"},"endDate":{"title":"Enddate","maxLength":50,"type":"string"},"image":{"title":"Image","maxLength":255,"type":"string"},"description":{"title":"Description","maxLength":255,"type":"string"},"classifiedInto":{"title":"Classifiedinto","maxLength":50,"type":"string"}},"additionalProperties":false},"CreatePhysicalFeatureClass":{"title":"CreatePhysicalFeatureClass","required":["featureClass","description","refersTo"],"type":"object","properties":{"featureClass":{"title":"Featureclass","maxLength":255,"type":"string"},"description":{"title":"Description","maxLength":255,"type":"string"},"refersTo":{"title":"Refersto","maxLength":255,"type":"string"}},"additionalProperties":false},"CreateQCStatusDefinition":{"title":"CreateQCStatusDefinition","required":["code","description"],"type":"object","properties":{"code":{"title":"Code","type":"integer"},"description":{"title":"Description","maxLength":255,"type":"string"}},"additionalProperties":false},"CreateQCType":{"title":"CreateQCType","required":["code","description"],"type":"object","properties":{"code":{"title":"Code","type":"integer"},"description":{"title":"Description","maxLength":255,"type":"string"}},"additionalProperties":false},"CreateRegKey":{"title":"CreateRegKey","required":["keyName","keyValue","keyDescription"],"type":"object","properties":{"keyName":{"title":"Keyname","maxLength":255,"type":"string"},"keyValue":{"title":"Keyvalue","maxLength":255,"type":"string"},"keyDescription":{"title":"Keydescription","maxLength":255,"type":"string"}},"additionalProperties":false},"CreateStation":{"title":"CreateStation","required":["stationId","stationName","latitude","longitude","elevation","closingDatetime","country","wacaSelection","cptSelection","stationOperational"],"type":"object","properties":{"stationId":{"title":"Stationid","maxLength":255,"type":"string"},"stationName":{"title":"Stationname","maxLength":255,"type":"string"},"wmoid":{"title":"Wmoid","maxLength":20,"type":"string"},"icaoid":{"title":"Icaoid","maxLength":20,"type":"string"},"latitude":{"title":"Latitude","type":"number"},"qualifier":{"title":"Qualifier","maxLength":20,"type":"string"},"longitude":{"title":"Longitude","type":"number"},"elevation":{"title":"Elevation","maxLength":255,"type":"string"},"geoLocationMethod":{"title":"Geolocationmethod","maxLength":255,"type":"string"},"geoLocationAccuracy":{"title":"Geolocationaccuracy","type":"number"},"openingDatetime":{"title":"Openingdatetime","type":"string"},"closingDatetime":{"title":"Closingdatetime","type":"string"},"country":{"title":"Country","maxLength":50,"type":"string"},"authority":{"title":"Authority","maxLength":255,"type":"string"},"adminRegion":{"title":"Adminregion","maxLength":255,"type":"string"},"drainageBasin":{"title":"Drainagebasin","maxLength":255,"type":"string"},"wacaSelection":{"title":"Wacaselection","type":"boolean"},"cptSelection":{"title":"Cptselection","type":"boolean"},"stationOperational":{"title":"Stationoperational","type":"boolean"}},"additionalProperties":false},"CreateStationElement":{"title":"CreateStationElement","required":["recordedFrom","describedBy","recordedWith","instrumentcode","scheduledFor","height","beginDate","endDate"],"type":"object","properties":{"recordedFrom":{"title":"Recordedfrom","maxLength":255,"type":"string"},"describedBy":{"title":"Describedby","type":"integer"},"recordedWith":{"title":"Recordedwith","maxLength":255,"type":"string"},"instrumentcode":{"title":"Instrumentcode","maxLength":6,"type":"string"},"scheduledFor":{"title":"Scheduledfor","maxLength":255,"type":"string"},"height":{"title":"Height","type":"number"},"beginDate":{"title":"Begindate","maxLength":50,"type":"string"},"endDate":{"title":"Enddate","maxLength":255,"type":"string"}},"additionalProperties":false},"CreateStationLocationHistory":{"title":"CreateStationLocationHistory","required":["belongsTo","openingDatetime","stationType","geoLocationMethod","geoLocationAccuracy","closingDatetime","latitude","longitude","elevation","authority","adminRegion","drainageBasin"],"type":"object","properties":{"belongsTo":{"title":"Belongsto","maxLength":255,"type":"string"},"openingDatetime":{"title":"Openingdatetime","type":"string"},"stationType":{"title":"Stationtype","maxLength":255,"type":"string"},"geoLocationMethod":{"title":"Geolocationmethod","maxLength":255,"type":"string"},"geoLocationAccuracy":{"title":"Geolocationaccuracy","type":"number"},"closingDatetime":{"title":"Closingdatetime","type":"string"},"latitude":{"title":"Latitude","type":"number"},"longitude":{"title":"Longitude","type":"number"},"elevation":{"title":"Elevation","type":"integer"},"authority":{"title":"Authority","maxLength":255,"type":"string"},"adminRegion":{"title":"Adminregion","maxLength":255,"type":"string"},"drainageBasin":{"title":"Drainagebasin","maxLength":255,"type":"string"}},"additionalProperties":false},"CreateStationQualifier":{"title":"CreateStationQualifier","required":["qualifier","qualifierBeginDate","qualifierEndDate","belongsTo","stationTimeZone","stationNetworkType"],"type":"object","properties":{"qualifier":{"title":"Qualifier","maxLength":255,"type":"string"},"qualifierBeginDate":{"title":"Qualifierbegindate","maxLength":50,"type":"string"},"qualifierEndDate":{"title":"Qualifierenddate","maxLength":50,"type":"string"},"belongsTo":{"title":"Belongsto","maxLength":255,"type":"string"},"stationTimeZone":{"title":"Stationtimezone","type":"integer"},"stationNetworkType":{"title":"Stationnetworktype","maxLength":255,"type":"string"}},"additionalProperties":false},"CreateSynopFeature":{"title":"CreateSynopFeature","required":["abbreviation","description"],"type":"object","properties":{"abbreviation":{"title":"Abbreviation","type":"string"},"description":{"title":"Description","maxLength":255,"type":"string"}},"additionalProperties":false},"DataForm":{"title":"DataForm","required":["formName","orderNum","tableName","description","selected","valStartPosition","valEndPosition","elemCodeLocation","sequencer","entryMode"],"type":"object","properties":{"formName":{"title":"Formname","maxLength":250,"type":"string"},"orderNum":{"title":"Ordernum","type":"integer"},"tableName":{"title":"Tablename","maxLength":255,"type":"string"},"description":{"title":"Description","type":"string"},"selected":{"title":"Selected","type":"boolean"},"valStartPosition":{"title":"Valstartposition","type":"integer"},"valEndPosition":{"title":"Valendposition","type":"integer"},"elemCodeLocation":{"title":"Elemcodelocation","maxLength":255,"type":"string"},"sequencer":{"title":"Sequencer","maxLength":50,"type":"string"},"entryMode":{"title":"Entrymode","type":"boolean"}},"additionalProperties":false},"DataFormResponse":{"title":"DataFormResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/DataForm"}}},"additionalProperties":false},"FaultResolution":{"title":"FaultResolution","required":["resolvedDatetime","associatedWith","resolvedBy","remarks"],"type":"object","properties":{"resolvedDatetime":{"title":"Resolveddatetime","maxLength":50,"type":"string"},"associatedWith":{"title":"Associatedwith","maxLength":255,"type":"string"},"resolvedBy":{"title":"Resolvedby","maxLength":255,"type":"string"},"remarks":{"title":"Remarks","maxLength":255,"type":"string"}},"additionalProperties":false},"FaultResolutionResponse":{"title":"FaultResolutionResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/FaultResolution"}}},"additionalProperties":false},"FaultResolutionWithInstrumentFaultReport":{"title":"FaultResolutionWithInstrumentFaultReport","required":["resolvedDatetime","associatedWith","resolvedBy","remarks","instrumentfaultreport"],"type":"object","properties":{"resolvedDatetime":{"title":"Resolveddatetime","maxLength":50,"type":"string"},"associatedWith":{"title":"Associatedwith","maxLength":255,"type":"string"},"resolvedBy":{"title":"Resolvedby","maxLength":255,"type":"string"},"remarks":{"title":"Remarks","maxLength":255,"type":"string"},"instrumentfaultreport":{"$ref":"#/components/schemas/InstrumentFaultReport"}},"additionalProperties":false},"FaultResolutionWithInstrumentFaultReportResponse":{"title":"FaultResolutionWithInstrumentFaultReportResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/FaultResolutionWithInstrumentFaultReport"}}},"additionalProperties":false},"FeatureGeographicalPosition":{"title":"FeatureGeographicalPosition","required":["belongsTo","observedOn","latitude","longitude"],"type":"object","properties":{"belongsTo":{"title":"Belongsto","maxLength":255,"type":"string"},"observedOn":{"title":"Observedon","maxLength":50,"type":"string"},"latitude":{"title":"Latitude","type":"number"},"longitude":{"title":"Longitude","type":"number"}},"additionalProperties":false},"FeatureGeographicalPositionResponse":{"title":"FeatureGeographicalPositionResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/FeatureGeographicalPosition"}}},"additionalProperties":false},"FeatureGeographicalPositionWithSynopFeature":{"title":"FeatureGeographicalPositionWithSynopFeature","required":["belongsTo","observedOn","latitude","longitude","synopfeature"],"type":"object","properties":{"belongsTo":{"title":"Belongsto","maxLength":255,"type":"string"},"observedOn":{"title":"Observedon","maxLength":50,"type":"string"},"latitude":{"title":"Latitude","type":"number"},"longitude":{"title":"Longitude","type":"number"},"synopfeature":{"$ref":"#/components/schemas/SynopFeature"}},"additionalProperties":false},"FeatureGeographicalPositionWithSynopFeatureResponse":{"title":"FeatureGeographicalPositionWithSynopFeatureResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/FeatureGeographicalPositionWithSynopFeature"}}},"additionalProperties":false},"Flag":{"title":"Flag","required":["characterSymbol","numSymbol","description"],"type":"object","properties":{"characterSymbol":{"title":"Charactersymbol","maxLength":255,"type":"string"},"numSymbol":{"title":"Numsymbol","type":"integer"},"description":{"title":"Description","maxLength":255,"type":"string"}},"additionalProperties":false},"FlagResponse":{"title":"FlagResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/Flag"}}},"additionalProperties":false},"HTTPValidationError":{"title":"HTTPValidationError","type":"object","properties":{"detail":{"title":"Detail","type":"array","items":{"$ref":"#/components/schemas/ValidationError"}}}},"Instrument":{"title":"Instrument","required":["instrumentName","instrumentId","serialNumber","abbreviation","model","manufacturer","instrumentUncertainty","installationDatetime","deinstallationDatetime","height","instrumentPicture","installedAt"],"type":"object","properties":{"instrumentName":{"title":"Instrumentname","maxLength":255,"type":"string"},"instrumentId":{"title":"Instrumentid","maxLength":255,"type":"string"},"serialNumber":{"title":"Serialnumber","maxLength":255,"type":"string"},"abbreviation":{"title":"Abbreviation","maxLength":255,"type":"string"},"model":{"title":"Model","maxLength":255,"type":"string"},"manufacturer":{"title":"Manufacturer","maxLength":255,"type":"string"},"instrumentUncertainty":{"title":"Instrumentuncertainty","type":"number"},"installationDatetime":{"title":"Installationdatetime","maxLength":50,"type":"string"},"deinstallationDatetime":{"title":"Deinstallationdatetime","maxLength":50,"type":"string"},"height":{"title":"Height","maxLength":255,"type":"string"},"instrumentPicture":{"title":"Instrumentpicture","maxLength":255,"type":"string"},"installedAt":{"title":"Installedat","maxLength":255,"type":"string"}},"additionalProperties":false},"InstrumentFaultReport":{"title":"InstrumentFaultReport","required":["refersTo","reportId","reportDatetime","faultDescription","reportedBy","receivedDatetime","receivedBy","reportedFrom"],"type":"object","properties":{"refersTo":{"title":"Refersto","maxLength":255,"type":"string"},"reportId":{"title":"Reportid","type":"integer"},"reportDatetime":{"title":"Reportdatetime","type":"string","format":"date-time"},"faultDescription":{"title":"Faultdescription","maxLength":255,"type":"string"},"reportedBy":{"title":"Reportedby","maxLength":255,"type":"string"},"receivedDatetime":{"title":"Receiveddatetime","type":"string","format":"date-time"},"receivedBy":{"title":"Receivedby","maxLength":255,"type":"string"},"reportedFrom":{"title":"Reportedfrom","maxLength":255,"type":"string"}},"additionalProperties":false},"InstrumentFaultReportResponse":{"title":"InstrumentFaultReportResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/InstrumentFaultReport"}}},"additionalProperties":false},"InstrumentFaultReportWithStationAndInstrument":{"title":"InstrumentFaultReportWithStationAndInstrument","required":["refersTo","reportId","reportDatetime","faultDescription","reportedBy","receivedDatetime","receivedBy","reportedFrom","station","instrument"],"type":"object","properties":{"refersTo":{"title":"Refersto","maxLength":255,"type":"string"},"reportId":{"title":"Reportid","type":"integer"},"reportDatetime":{"title":"Reportdatetime","type":"string","format":"date-time"},"faultDescription":{"title":"Faultdescription","maxLength":255,"type":"string"},"reportedBy":{"title":"Reportedby","maxLength":255,"type":"string"},"receivedDatetime":{"title":"Receiveddatetime","type":"string","format":"date-time"},"receivedBy":{"title":"Receivedby","maxLength":255,"type":"string"},"reportedFrom":{"title":"Reportedfrom","maxLength":255,"type":"string"},"station":{"$ref":"#/components/schemas/Station"},"instrument":{"$ref":"#/components/schemas/Instrument"}},"additionalProperties":false},"InstrumentFaultReportWithStationAndInstrumentResponse":{"title":"InstrumentFaultReportWithStationAndInstrumentResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/InstrumentFaultReportWithStationAndInstrument"}}},"additionalProperties":false},"InstrumentInspection":{"title":"InstrumentInspection","required":["performedOn","inspectionDatetime","performedBy","status","remarks","performedAt"],"type":"object","properties":{"performedOn":{"title":"Performedon","maxLength":255,"type":"string"},"inspectionDatetime":{"title":"Inspectiondatetime","maxLength":50,"type":"string"},"performedBy":{"title":"Performedby","maxLength":255,"type":"string"},"status":{"title":"Status","maxLength":255,"type":"string"},"remarks":{"title":"Remarks","maxLength":255,"type":"string"},"performedAt":{"title":"Performedat","maxLength":50,"type":"string"}},"additionalProperties":false},"InstrumentInspectionResponse":{"title":"InstrumentInspectionResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/InstrumentInspection"}}},"additionalProperties":false},"InstrumentInspectionWithStationAndInstrument":{"title":"InstrumentInspectionWithStationAndInstrument","required":["performedOn","inspectionDatetime","performedBy","status","remarks","performedAt","station","instrument"],"type":"object","properties":{"performedOn":{"title":"Performedon","maxLength":255,"type":"string"},"inspectionDatetime":{"title":"Inspectiondatetime","maxLength":50,"type":"string"},"performedBy":{"title":"Performedby","maxLength":255,"type":"string"},"status":{"title":"Status","maxLength":255,"type":"string"},"remarks":{"title":"Remarks","maxLength":255,"type":"string"},"performedAt":{"title":"Performedat","maxLength":50,"type":"string"},"station":{"$ref":"#/components/schemas/Station"},"instrument":{"$ref":"#/components/schemas/Instrument"}},"additionalProperties":false},"InstrumentInspectionWithStationAndInstrumentResponse":{"title":"InstrumentInspectionWithStationAndInstrumentResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/InstrumentInspectionWithStationAndInstrument"}}},"additionalProperties":false},"InstrumentResponse":{"title":"InstrumentResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/Instrument"}}},"additionalProperties":false},"InstrumentWithStation":{"title":"InstrumentWithStation","required":["instrumentName","instrumentId","serialNumber","abbreviation","model","manufacturer","instrumentUncertainty","installationDatetime","deinstallationDatetime","height","instrumentPicture","installedAt","station"],"type":"object","properties":{"instrumentName":{"title":"Instrumentname","maxLength":255,"type":"string"},"instrumentId":{"title":"Instrumentid","maxLength":255,"type":"string"},"serialNumber":{"title":"Serialnumber","maxLength":255,"type":"string"},"abbreviation":{"title":"Abbreviation","maxLength":255,"type":"string"},"model":{"title":"Model","maxLength":255,"type":"string"},"manufacturer":{"title":"Manufacturer","maxLength":255,"type":"string"},"instrumentUncertainty":{"title":"Instrumentuncertainty","type":"number"},"installationDatetime":{"title":"Installationdatetime","maxLength":50,"type":"string"},"deinstallationDatetime":{"title":"Deinstallationdatetime","maxLength":50,"type":"string"},"height":{"title":"Height","maxLength":255,"type":"string"},"instrumentPicture":{"title":"Instrumentpicture","maxLength":255,"type":"string"},"installedAt":{"title":"Installedat","maxLength":255,"type":"string"},"station":{"$ref":"#/components/schemas/Station"}},"additionalProperties":false},"InstrumentWithStationResponse":{"title":"InstrumentWithStationResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/InstrumentWithStation"}}},"additionalProperties":false},"ObsElement":{"title":"ObsElement","required":["elementId","abbreviation","elementName","description","elementScale","upperLimit","lowerLimit","units","elementtype","qcTotalRequired","selected"],"type":"object","properties":{"elementId":{"title":"Elementid","type":"integer"},"abbreviation":{"title":"Abbreviation","maxLength":255,"type":"string"},"elementName":{"title":"Elementname","maxLength":255,"type":"string"},"description":{"title":"Description","maxLength":255,"type":"string"},"elementScale":{"title":"Elementscale","type":"number"},"upperLimit":{"title":"Upperlimit","maxLength":255,"type":"string"},"lowerLimit":{"title":"Lowerlimit","maxLength":255,"type":"string"},"units":{"title":"Units","maxLength":255,"type":"string"},"elementtype":{"title":"Elementtype","maxLength":50,"type":"string"},"qcTotalRequired":{"title":"Qctotalrequired","type":"integer"},"selected":{"title":"Selected","type":"boolean"}},"additionalProperties":false},"ObsElementResponse":{"title":"ObsElementResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/ObsElement"}}},"additionalProperties":false},"ObsScheduleClass":{"title":"ObsScheduleClass","required":["scheduleClass","description","refersTo"],"type":"object","properties":{"scheduleClass":{"title":"Scheduleclass","maxLength":255,"type":"string"},"description":{"title":"Description","maxLength":255,"type":"string"},"refersTo":{"title":"Refersto","maxLength":255,"type":"string"}},"additionalProperties":false},"ObsScheduleClassResponse":{"title":"ObsScheduleClassResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/ObsScheduleClass"}}},"additionalProperties":false},"ObsScheduleClassWithStation":{"title":"ObsScheduleClassWithStation","required":["scheduleClass","description","refersTo","station"],"type":"object","properties":{"scheduleClass":{"title":"Scheduleclass","maxLength":255,"type":"string"},"description":{"title":"Description","maxLength":255,"type":"string"},"refersTo":{"title":"Refersto","maxLength":255,"type":"string"},"station":{"$ref":"#/components/schemas/Station"}},"additionalProperties":false},"ObsScheduleClassWithStationResponse":{"title":"ObsScheduleClassWithStationResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/ObsScheduleClassWithStation"}}},"additionalProperties":false},"ObservationFinal":{"title":"ObservationFinal","required":["recordedFrom","describedBy","obsDatetime","qcStatus","acquisitionType","obsLevel","obsValue","flag","dataSourceTimeZone"],"type":"object","properties":{"recordedFrom":{"title":"Recordedfrom","maxLength":255,"type":"string"},"describedBy":{"title":"Describedby","type":"integer"},"obsDatetime":{"title":"Obsdatetime","type":"string","format":"date-time"},"qcStatus":{"title":"Qcstatus","type":"integer"},"acquisitionType":{"title":"Acquisitiontype","type":"integer"},"obsLevel":{"title":"Obslevel","maxLength":255,"type":"string"},"obsValue":{"title":"Obsvalue","maxLength":255,"type":"string"},"flag":{"title":"Flag","maxLength":255,"type":"string"},"period":{"title":"Period","type":"integer"},"qcTypeLog":{"title":"Qctypelog","type":"string"},"dataForm":{"title":"Dataform","maxLength":255,"type":"string"},"capturedBy":{"title":"Capturedby","maxLength":255,"type":"string"},"mark":{"title":"Mark","type":"boolean"},"temperatureUnits":{"title":"Temperatureunits","maxLength":255,"type":"string"},"precipitationUnits":{"title":"Precipitationunits","maxLength":255,"type":"string"},"cloudHeightUnits":{"title":"Cloudheightunits","maxLength":255,"type":"string"},"visUnits":{"title":"Visunits","maxLength":255,"type":"string"},"dataSourceTimeZone":{"title":"Datasourcetimezone","type":"integer"}},"additionalProperties":false},"ObservationFinalResponse":{"title":"ObservationFinalResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/ObservationFinal"}}},"additionalProperties":false},"ObservationFinalWithChildren":{"title":"ObservationFinalWithChildren","required":["recordedFrom","describedBy","obsDatetime","qcStatus","acquisitionType","obsLevel","obsValue","flag","dataSourceTimeZone","obselement","station"],"type":"object","properties":{"recordedFrom":{"title":"Recordedfrom","maxLength":255,"type":"string"},"describedBy":{"title":"Describedby","type":"integer"},"obsDatetime":{"title":"Obsdatetime","type":"string","format":"date-time"},"qcStatus":{"title":"Qcstatus","type":"integer"},"acquisitionType":{"title":"Acquisitiontype","type":"integer"},"obsLevel":{"title":"Obslevel","maxLength":255,"type":"string"},"obsValue":{"title":"Obsvalue","maxLength":255,"type":"string"},"flag":{"title":"Flag","maxLength":255,"type":"string"},"period":{"title":"Period","type":"integer"},"qcTypeLog":{"title":"Qctypelog","type":"string"},"dataForm":{"title":"Dataform","maxLength":255,"type":"string"},"capturedBy":{"title":"Capturedby","maxLength":255,"type":"string"},"mark":{"title":"Mark","type":"boolean"},"temperatureUnits":{"title":"Temperatureunits","maxLength":255,"type":"string"},"precipitationUnits":{"title":"Precipitationunits","maxLength":255,"type":"string"},"cloudHeightUnits":{"title":"Cloudheightunits","maxLength":255,"type":"string"},"visUnits":{"title":"Visunits","maxLength":255,"type":"string"},"dataSourceTimeZone":{"title":"Datasourcetimezone","type":"integer"},"obselement":{"$ref":"#/components/schemas/ObsElement"},"station":{"$ref":"#/components/schemas/Station"}},"additionalProperties":false},"ObservationFinalWithChildrenResponse":{"title":"ObservationFinalWithChildrenResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/ObservationFinalWithChildren"}}},"additionalProperties":false},"ObservationInitial":{"title":"ObservationInitial","required":["recordedFrom","describedBy","obsDatetime","qcStatus","acquisitionType","obsLevel","obsValue","flag","period","qcTypeLog","dataForm","capturedBy","mark","temperatureUnits","precipitationUnits","cloudHeightUnits","visUnits","dataSourceTimeZone"],"type":"object","properties":{"recordedFrom":{"title":"Recordedfrom","maxLength":255,"type":"string"},"describedBy":{"title":"Describedby","type":"integer"},"obsDatetime":{"title":"Obsdatetime","type":"string","format":"date-time"},"qcStatus":{"title":"Qcstatus","type":"integer"},"acquisitionType":{"title":"Acquisitiontype","type":"integer"},"obsLevel":{"title":"Obslevel","maxLength":255,"type":"string"},"obsValue":{"title":"Obsvalue","maxLength":255,"type":"string"},"flag":{"title":"Flag","maxLength":255,"type":"string"},"period":{"title":"Period","type":"integer"},"qcTypeLog":{"title":"Qctypelog","type":"string"},"dataForm":{"title":"Dataform","maxLength":255,"type":"string"},"capturedBy":{"title":"Capturedby","maxLength":255,"type":"string"},"mark":{"title":"Mark","type":"boolean"},"temperatureUnits":{"title":"Temperatureunits","maxLength":255,"type":"string"},"precipitationUnits":{"title":"Precipitationunits","maxLength":255,"type":"string"},"cloudHeightUnits":{"title":"Cloudheightunits","maxLength":255,"type":"string"},"visUnits":{"title":"Visunits","maxLength":255,"type":"string"},"dataSourceTimeZone":{"title":"Datasourcetimezone","type":"integer"}},"additionalProperties":false},"ObservationInitialResponse":{"title":"ObservationInitialResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/ObservationInitial"}}},"additionalProperties":false},"ObservationInitialWithChildren":{"title":"ObservationInitialWithChildren","required":["recordedFrom","describedBy","obsDatetime","qcStatus","acquisitionType","obsLevel","obsValue","flag","period","qcTypeLog","dataForm","capturedBy","mark","temperatureUnits","precipitationUnits","cloudHeightUnits","visUnits","dataSourceTimeZone","obselement","station"],"type":"object","properties":{"recordedFrom":{"title":"Recordedfrom","maxLength":255,"type":"string"},"describedBy":{"title":"Describedby","type":"integer"},"obsDatetime":{"title":"Obsdatetime","type":"string","format":"date-time"},"qcStatus":{"title":"Qcstatus","type":"integer"},"acquisitionType":{"title":"Acquisitiontype","type":"integer"},"obsLevel":{"title":"Obslevel","maxLength":255,"type":"string"},"obsValue":{"title":"Obsvalue","maxLength":255,"type":"string"},"flag":{"title":"Flag","maxLength":255,"type":"string"},"period":{"title":"Period","type":"integer"},"qcTypeLog":{"title":"Qctypelog","type":"string"},"dataForm":{"title":"Dataform","maxLength":255,"type":"string"},"capturedBy":{"title":"Capturedby","maxLength":255,"type":"string"},"mark":{"title":"Mark","type":"boolean"},"temperatureUnits":{"title":"Temperatureunits","maxLength":255,"type":"string"},"precipitationUnits":{"title":"Precipitationunits","maxLength":255,"type":"string"},"cloudHeightUnits":{"title":"Cloudheightunits","maxLength":255,"type":"string"},"visUnits":{"title":"Visunits","maxLength":255,"type":"string"},"dataSourceTimeZone":{"title":"Datasourcetimezone","type":"integer"},"obselement":{"$ref":"#/components/schemas/ObsElement"},"station":{"$ref":"#/components/schemas/Station"}},"additionalProperties":false},"ObservationInitialWithChildrenResponse":{"title":"ObservationInitialWithChildrenResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/ObservationInitialWithChildren"}}},"additionalProperties":false},"PaperArchive":{"title":"PaperArchive","required":["belongsTo","formDatetime","image","classifiedInto"],"type":"object","properties":{"belongsTo":{"title":"Belongsto","maxLength":255,"type":"string"},"formDatetime":{"title":"Formdatetime","type":"string","format":"date-time"},"image":{"title":"Image","maxLength":255,"type":"string"},"classifiedInto":{"title":"Classifiedinto","maxLength":50,"type":"string"}},"additionalProperties":false},"PaperArchiveDefinition":{"title":"PaperArchiveDefinition","required":["formId","description"],"type":"object","properties":{"formId":{"title":"Formid","maxLength":50,"type":"string"},"description":{"title":"Description","maxLength":255,"type":"string"}},"additionalProperties":false},"PaperArchiveDefinitionResponse":{"title":"PaperArchiveDefinitionResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/PaperArchiveDefinition"}}},"additionalProperties":false},"PaperArchiveResponse":{"title":"PaperArchiveResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/PaperArchive"}}},"additionalProperties":false},"PaperArchiveWithStationAndPaperArchiveDefinition":{"title":"PaperArchiveWithStationAndPaperArchiveDefinition","required":["belongsTo","formDatetime","image","classifiedInto","station","paperarchivedefinition"],"type":"object","properties":{"belongsTo":{"title":"Belongsto","maxLength":255,"type":"string"},"formDatetime":{"title":"Formdatetime","type":"string","format":"date-time"},"image":{"title":"Image","maxLength":255,"type":"string"},"classifiedInto":{"title":"Classifiedinto","maxLength":50,"type":"string"},"station":{"$ref":"#/components/schemas/Station"},"paperarchivedefinition":{"$ref":"#/components/schemas/PaperArchiveDefinition"}},"additionalProperties":false},"PaperArchiveWithStationAndPaperArchiveDefinitionResponse":{"title":"PaperArchiveWithStationAndPaperArchiveDefinitionResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/PaperArchiveWithStationAndPaperArchiveDefinition"}}},"additionalProperties":false},"PhysicalFeature":{"title":"PhysicalFeature","required":["associatedWith","beginDate","endDate","image","description","classifiedInto"],"type":"object","properties":{"associatedWith":{"title":"Associatedwith","maxLength":255,"type":"string"},"beginDate":{"title":"Begindate","maxLength":50,"type":"string"},"endDate":{"title":"Enddate","maxLength":50,"type":"string"},"image":{"title":"Image","maxLength":255,"type":"string"},"description":{"title":"Description","maxLength":255,"type":"string"},"classifiedInto":{"title":"Classifiedinto","maxLength":50,"type":"string"}},"additionalProperties":false},"PhysicalFeatureClass":{"title":"PhysicalFeatureClass","required":["featureClass","description","refersTo"],"type":"object","properties":{"featureClass":{"title":"Featureclass","maxLength":255,"type":"string"},"description":{"title":"Description","maxLength":255,"type":"string"},"refersTo":{"title":"Refersto","maxLength":255,"type":"string"}},"additionalProperties":false},"PhysicalFeatureClassResponse":{"title":"PhysicalFeatureClassResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/PhysicalFeatureClass"}}},"additionalProperties":false},"PhysicalFeatureClassWithStation":{"title":"PhysicalFeatureClassWithStation","required":["featureClass","description","refersTo","station"],"type":"object","properties":{"featureClass":{"title":"Featureclass","maxLength":255,"type":"string"},"description":{"title":"Description","maxLength":255,"type":"string"},"refersTo":{"title":"Refersto","maxLength":255,"type":"string"},"station":{"$ref":"#/components/schemas/Station"}},"additionalProperties":false},"PhysicalFeatureClassWithStationResponse":{"title":"PhysicalFeatureClassWithStationResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/PhysicalFeatureClassWithStation"}}},"additionalProperties":false},"PhysicalFeatureResponse":{"title":"PhysicalFeatureResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/PhysicalFeature"}}},"additionalProperties":false},"PhysicalFeatureWithStationAndPhysicalFeatureClass":{"title":"PhysicalFeatureWithStationAndPhysicalFeatureClass","required":["associatedWith","beginDate","endDate","image","description","classifiedInto","station","physicalfeatureclas"],"type":"object","properties":{"associatedWith":{"title":"Associatedwith","maxLength":255,"type":"string"},"beginDate":{"title":"Begindate","maxLength":50,"type":"string"},"endDate":{"title":"Enddate","maxLength":50,"type":"string"},"image":{"title":"Image","maxLength":255,"type":"string"},"description":{"title":"Description","maxLength":255,"type":"string"},"classifiedInto":{"title":"Classifiedinto","maxLength":50,"type":"string"},"station":{"$ref":"#/components/schemas/Station"},"physicalfeatureclas":{"$ref":"#/components/schemas/PhysicalFeatureClass"}},"additionalProperties":false},"PhysicalFeatureWithStationAndPhysicalFeatureClassResponse":{"title":"PhysicalFeatureWithStationAndPhysicalFeatureClassResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/PhysicalFeatureWithStationAndPhysicalFeatureClass"}}},"additionalProperties":false},"QCStatusDefinition":{"title":"QCStatusDefinition","required":["code","description"],"type":"object","properties":{"code":{"title":"Code","type":"integer"},"description":{"title":"Description","maxLength":255,"type":"string"}},"additionalProperties":false},"QCStatusDefinitionResponse":{"title":"QCStatusDefinitionResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/QCStatusDefinition"}}},"additionalProperties":false},"QCType":{"title":"QCType","required":["code","description"],"type":"object","properties":{"code":{"title":"Code","type":"integer"},"description":{"title":"Description","maxLength":255,"type":"string"}},"additionalProperties":false},"QCTypeResponse":{"title":"QCTypeResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/QCType"}}},"additionalProperties":false},"RegKey":{"title":"RegKey","required":["keyName","keyValue","keyDescription"],"type":"object","properties":{"keyName":{"title":"Keyname","maxLength":255,"type":"string"},"keyValue":{"title":"Keyvalue","maxLength":255,"type":"string"},"keyDescription":{"title":"Keydescription","maxLength":255,"type":"string"}},"additionalProperties":false},"RegKeyResponse":{"title":"RegKeyResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/RegKey"}}},"additionalProperties":false},"Station":{"title":"Station","required":["stationId","stationName","latitude","longitude","elevation","closingDatetime","country","wacaSelection","cptSelection","stationOperational"],"type":"object","properties":{"stationId":{"title":"Stationid","maxLength":255,"type":"string"},"stationName":{"title":"Stationname","maxLength":255,"type":"string"},"wmoid":{"title":"Wmoid","maxLength":20,"type":"string"},"icaoid":{"title":"Icaoid","maxLength":20,"type":"string"},"latitude":{"title":"Latitude","type":"number"},"qualifier":{"title":"Qualifier","maxLength":20,"type":"string"},"longitude":{"title":"Longitude","type":"number"},"elevation":{"title":"Elevation","maxLength":255,"type":"string"},"geoLocationMethod":{"title":"Geolocationmethod","maxLength":255,"type":"string"},"geoLocationAccuracy":{"title":"Geolocationaccuracy","type":"number"},"openingDatetime":{"title":"Openingdatetime","type":"string"},"closingDatetime":{"title":"Closingdatetime","type":"string"},"country":{"title":"Country","maxLength":50,"type":"string"},"authority":{"title":"Authority","maxLength":255,"type":"string"},"adminRegion":{"title":"Adminregion","maxLength":255,"type":"string"},"drainageBasin":{"title":"Drainagebasin","maxLength":255,"type":"string"},"wacaSelection":{"title":"Wacaselection","type":"boolean"},"cptSelection":{"title":"Cptselection","type":"boolean"},"stationOperational":{"title":"Stationoperational","type":"boolean"}},"additionalProperties":false},"StationElement":{"title":"StationElement","required":["recordedFrom","describedBy","recordedWith","instrumentcode","scheduledFor","height","beginDate","endDate"],"type":"object","properties":{"recordedFrom":{"title":"Recordedfrom","maxLength":255,"type":"string"},"describedBy":{"title":"Describedby","type":"integer"},"recordedWith":{"title":"Recordedwith","maxLength":255,"type":"string"},"instrumentcode":{"title":"Instrumentcode","maxLength":6,"type":"string"},"scheduledFor":{"title":"Scheduledfor","maxLength":255,"type":"string"},"height":{"title":"Height","type":"number"},"beginDate":{"title":"Begindate","maxLength":50,"type":"string"},"endDate":{"title":"Enddate","maxLength":255,"type":"string"}},"additionalProperties":false},"StationElementResponse":{"title":"StationElementResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/StationElement"}}},"additionalProperties":false},"StationElementWithChildren":{"title":"StationElementWithChildren","required":["recordedFrom","describedBy","recordedWith","instrumentcode","scheduledFor","height","beginDate","endDate","obselement","station","instrument","obsscheduleclas"],"type":"object","properties":{"recordedFrom":{"title":"Recordedfrom","maxLength":255,"type":"string"},"describedBy":{"title":"Describedby","type":"integer"},"recordedWith":{"title":"Recordedwith","maxLength":255,"type":"string"},"instrumentcode":{"title":"Instrumentcode","maxLength":6,"type":"string"},"scheduledFor":{"title":"Scheduledfor","maxLength":255,"type":"string"},"height":{"title":"Height","type":"number"},"beginDate":{"title":"Begindate","maxLength":50,"type":"string"},"endDate":{"title":"Enddate","maxLength":255,"type":"string"},"obselement":{"$ref":"#/components/schemas/ObsElement"},"station":{"$ref":"#/components/schemas/Station"},"instrument":{"$ref":"#/components/schemas/Instrument"},"obsscheduleclas":{"$ref":"#/components/schemas/ObsScheduleClass"}},"additionalProperties":false},"StationElementWithChildrenResponse":{"title":"StationElementWithChildrenResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/StationElementWithChildren"}}},"additionalProperties":false},"StationLocationHistory":{"title":"StationLocationHistory","required":["belongsTo","openingDatetime","stationType","geoLocationMethod","geoLocationAccuracy","closingDatetime","latitude","longitude","elevation","authority","adminRegion","drainageBasin"],"type":"object","properties":{"belongsTo":{"title":"Belongsto","maxLength":255,"type":"string"},"openingDatetime":{"title":"Openingdatetime","type":"string","format":"date-time"},"stationType":{"title":"Stationtype","maxLength":255,"type":"string"},"geoLocationMethod":{"title":"Geolocationmethod","maxLength":255,"type":"string"},"geoLocationAccuracy":{"title":"Geolocationaccuracy","type":"number"},"closingDatetime":{"title":"Closingdatetime","type":"string","format":"date-time"},"latitude":{"title":"Latitude","type":"number"},"longitude":{"title":"Longitude","type":"number"},"elevation":{"title":"Elevation","type":"integer"},"authority":{"title":"Authority","maxLength":255,"type":"string"},"adminRegion":{"title":"Adminregion","maxLength":255,"type":"string"},"drainageBasin":{"title":"Drainagebasin","maxLength":255,"type":"string"}},"additionalProperties":false},"StationLocationHistoryResponse":{"title":"StationLocationHistoryResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/StationLocationHistory"}}},"additionalProperties":false},"StationLocationHistoryWithStation":{"title":"StationLocationHistoryWithStation","required":["belongsTo","openingDatetime","stationType","geoLocationMethod","geoLocationAccuracy","closingDatetime","latitude","longitude","elevation","authority","adminRegion","drainageBasin","station"],"type":"object","properties":{"belongsTo":{"title":"Belongsto","maxLength":255,"type":"string"},"openingDatetime":{"title":"Openingdatetime","type":"string","format":"date-time"},"stationType":{"title":"Stationtype","maxLength":255,"type":"string"},"geoLocationMethod":{"title":"Geolocationmethod","maxLength":255,"type":"string"},"geoLocationAccuracy":{"title":"Geolocationaccuracy","type":"number"},"closingDatetime":{"title":"Closingdatetime","type":"string","format":"date-time"},"latitude":{"title":"Latitude","type":"number"},"longitude":{"title":"Longitude","type":"number"},"elevation":{"title":"Elevation","type":"integer"},"authority":{"title":"Authority","maxLength":255,"type":"string"},"adminRegion":{"title":"Adminregion","maxLength":255,"type":"string"},"drainageBasin":{"title":"Drainagebasin","maxLength":255,"type":"string"},"station":{"$ref":"#/components/schemas/Station"}},"additionalProperties":false},"StationLocationHistoryWithStationResponse":{"title":"StationLocationHistoryWithStationResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/StationLocationHistoryWithStation"}}},"additionalProperties":false},"StationQualifier":{"title":"StationQualifier","required":["qualifier","qualifierBeginDate","qualifierEndDate","belongsTo","stationTimeZone","stationNetworkType"],"type":"object","properties":{"qualifier":{"title":"Qualifier","maxLength":255,"type":"string"},"qualifierBeginDate":{"title":"Qualifierbegindate","maxLength":50,"type":"string"},"qualifierEndDate":{"title":"Qualifierenddate","maxLength":50,"type":"string"},"belongsTo":{"title":"Belongsto","maxLength":255,"type":"string"},"stationTimeZone":{"title":"Stationtimezone","type":"integer"},"stationNetworkType":{"title":"Stationnetworktype","maxLength":255,"type":"string"}},"additionalProperties":false},"StationQualifierResponse":{"title":"StationQualifierResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/StationQualifier"}}},"additionalProperties":false},"StationQualifierWithStation":{"title":"StationQualifierWithStation","required":["qualifier","qualifierBeginDate","qualifierEndDate","belongsTo","stationTimeZone","stationNetworkType","station"],"type":"object","properties":{"qualifier":{"title":"Qualifier","maxLength":255,"type":"string"},"qualifierBeginDate":{"title":"Qualifierbegindate","maxLength":50,"type":"string"},"qualifierEndDate":{"title":"Qualifierenddate","maxLength":50,"type":"string"},"belongsTo":{"title":"Belongsto","maxLength":255,"type":"string"},"stationTimeZone":{"title":"Stationtimezone","type":"integer"},"stationNetworkType":{"title":"Stationnetworktype","maxLength":255,"type":"string"},"station":{"$ref":"#/components/schemas/Station"}},"additionalProperties":false},"StationQualifierWithStationResponse":{"title":"StationQualifierWithStationResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/StationQualifierWithStation"}}},"additionalProperties":false},"StationResponse":{"title":"StationResponse","required":["result","message","status"],"type":"object","properties":{"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/Station"}},"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"}},"additionalProperties":false},"SynopFeature":{"title":"SynopFeature","required":["abbreviation","description"],"type":"object","properties":{"abbreviation":{"title":"Abbreviation","type":"string"},"description":{"title":"Description","maxLength":255,"type":"string"}},"additionalProperties":false},"SynopFeatureResponse":{"title":"SynopFeatureResponse","required":["message","status","result"],"type":"object","properties":{"message":{"title":"Message","type":"string"},"status":{"title":"Status","type":"string"},"result":{"title":"Result","type":"array","items":{"$ref":"#/components/schemas/SynopFeature"}}},"additionalProperties":false},"UpdateAcquisitionType":{"title":"UpdateAcquisitionType","required":["description"],"type":"object","properties":{"description":{"title":"Description","type":"string"}},"additionalProperties":false},"UpdateDataForm":{"title":"UpdateDataForm","required":["orderNum","tableName","description","selected","valStartPosition","valEndPosition","elemCodeLocation","sequencer","entryMode"],"type":"object","properties":{"orderNum":{"title":"Ordernum","type":"integer"},"tableName":{"title":"Tablename","maxLength":255,"type":"string"},"description":{"title":"Description","type":"string"},"selected":{"title":"Selected","type":"boolean"},"valStartPosition":{"title":"Valstartposition","type":"integer"},"valEndPosition":{"title":"Valendposition","type":"integer"},"elemCodeLocation":{"title":"Elemcodelocation","maxLength":255,"type":"string"},"sequencer":{"title":"Sequencer","maxLength":50,"type":"string"},"entryMode":{"title":"Entrymode","type":"boolean"}},"additionalProperties":false},"UpdateFaultResolution":{"title":"UpdateFaultResolution","required":["resolvedBy","remarks"],"type":"object","properties":{"resolvedBy":{"title":"Resolvedby","maxLength":255,"type":"string"},"remarks":{"title":"Remarks","maxLength":255,"type":"string"}},"additionalProperties":false},"UpdateFeatureGeographicalPosition":{"title":"UpdateFeatureGeographicalPosition","required":["observedOn","latitude","longitude"],"type":"object","properties":{"observedOn":{"title":"Observedon","maxLength":50,"type":"string"},"latitude":{"title":"Latitude","type":"number"},"longitude":{"title":"Longitude","type":"number"}},"additionalProperties":false},"UpdateFlag":{"title":"UpdateFlag","required":["numSymbol","description"],"type":"object","properties":{"numSymbol":{"title":"Numsymbol","type":"integer"},"description":{"title":"Description","maxLength":255,"type":"string"}},"additionalProperties":false},"UpdateInstrument":{"title":"UpdateInstrument","required":["instrumentName","serialNumber","abbreviation","model","manufacturer","instrumentUncertainty","installationDatetime","deinstallationDatetime","height","instrumentPicture","installedAt"],"type":"object","properties":{"instrumentName":{"title":"Instrumentname","maxLength":255,"type":"string"},"serialNumber":{"title":"Serialnumber","maxLength":255,"type":"string"},"abbreviation":{"title":"Abbreviation","maxLength":255,"type":"string"},"model":{"title":"Model","maxLength":255,"type":"string"},"manufacturer":{"title":"Manufacturer","maxLength":255,"type":"string"},"instrumentUncertainty":{"title":"Instrumentuncertainty","type":"number"},"installationDatetime":{"title":"Installationdatetime","maxLength":50,"type":"string"},"deinstallationDatetime":{"title":"Deinstallationdatetime","maxLength":50,"type":"string"},"height":{"title":"Height","maxLength":255,"type":"string"},"instrumentPicture":{"title":"Instrumentpicture","maxLength":255,"type":"string"},"installedAt":{"title":"Installedat","maxLength":255,"type":"string"}},"additionalProperties":false},"UpdateInstrumentFaultReport":{"title":"UpdateInstrumentFaultReport","required":["refersTo","reportDatetime","faultDescription","reportedBy","receivedDatetime","receivedBy","reportedFrom"],"type":"object","properties":{"refersTo":{"title":"Refersto","maxLength":255,"type":"string"},"reportDatetime":{"title":"Reportdatetime","maxLength":50,"type":"string"},"faultDescription":{"title":"Faultdescription","maxLength":255,"type":"string"},"reportedBy":{"title":"Reportedby","maxLength":255,"type":"string"},"receivedDatetime":{"title":"Receiveddatetime","maxLength":50,"type":"string"},"receivedBy":{"title":"Receivedby","maxLength":255,"type":"string"},"reportedFrom":{"title":"Reportedfrom","maxLength":255,"type":"string"}},"additionalProperties":false},"UpdateInstrumentInspection":{"title":"UpdateInstrumentInspection","required":["performedBy","status","remarks","performedAt"],"type":"object","properties":{"performedBy":{"title":"Performedby","maxLength":255,"type":"string"},"status":{"title":"Status","maxLength":255,"type":"string"},"remarks":{"title":"Remarks","maxLength":255,"type":"string"},"performedAt":{"title":"Performedat","maxLength":50,"type":"string"}},"additionalProperties":false},"UpdateObsElement":{"title":"UpdateObsElement","required":["abbreviation","elementName","description","elementScale","upperLimit","lowerLimit","units","elementtype","qcTotalRequired","selected"],"type":"object","properties":{"abbreviation":{"title":"Abbreviation","maxLength":255,"type":"string"},"elementName":{"title":"Elementname","maxLength":255,"type":"string"},"description":{"title":"Description","maxLength":255,"type":"string"},"elementScale":{"title":"Elementscale","type":"number"},"upperLimit":{"title":"Upperlimit","maxLength":255,"type":"string"},"lowerLimit":{"title":"Lowerlimit","maxLength":255,"type":"string"},"units":{"title":"Units","maxLength":255,"type":"string"},"elementtype":{"title":"Elementtype","maxLength":50,"type":"string"},"qcTotalRequired":{"title":"Qctotalrequired","type":"integer"},"selected":{"title":"Selected","type":"boolean"}},"additionalProperties":false},"UpdateObsScheduleClass":{"title":"UpdateObsScheduleClass","required":["description","refersTo"],"type":"object","properties":{"description":{"title":"Description","maxLength":255,"type":"string"},"refersTo":{"title":"Refersto","maxLength":255,"type":"string"}},"additionalProperties":false},"UpdateObservationFinal":{"title":"UpdateObservationFinal","required":["qcStatus","acquisitionType","obsLevel","obsValue","flag","dataSourceTimeZone"],"type":"object","properties":{"qcStatus":{"title":"Qcstatus","type":"integer"},"acquisitionType":{"title":"Acquisitiontype","type":"integer"},"obsLevel":{"title":"Obslevel","maxLength":255,"type":"string"},"obsValue":{"title":"Obsvalue","maxLength":255,"type":"string"},"flag":{"title":"Flag","maxLength":255,"type":"string"},"period":{"title":"Period","type":"integer"},"qcTypeLog":{"title":"Qctypelog","type":"string"},"dataForm":{"title":"Dataform","maxLength":255,"type":"string"},"capturedBy":{"title":"Capturedby","maxLength":255,"type":"string"},"mark":{"title":"Mark","type":"boolean"},"temperatureUnits":{"title":"Temperatureunits","maxLength":255,"type":"string"},"precipitationUnits":{"title":"Precipitationunits","maxLength":255,"type":"string"},"cloudHeightUnits":{"title":"Cloudheightunits","maxLength":255,"type":"string"},"visUnits":{"title":"Visunits","maxLength":255,"type":"string"},"dataSourceTimeZone":{"title":"Datasourcetimezone","type":"integer"}},"additionalProperties":false},"UpdateObservationInitial":{"title":"UpdateObservationInitial","required":["obsLevel","obsValue","flag","period","qcTypeLog","dataForm","capturedBy","mark","temperatureUnits","precipitationUnits","cloudHeightUnits","visUnits","dataSourceTimeZone"],"type":"object","properties":{"obsLevel":{"title":"Obslevel","maxLength":255,"type":"string"},"obsValue":{"title":"Obsvalue","maxLength":255,"type":"string"},"flag":{"title":"Flag","maxLength":255,"type":"string"},"period":{"title":"Period","type":"integer"},"qcTypeLog":{"title":"Qctypelog","type":"string"},"dataForm":{"title":"Dataform","maxLength":255,"type":"string"},"capturedBy":{"title":"Capturedby","maxLength":255,"type":"string"},"mark":{"title":"Mark","type":"boolean"},"temperatureUnits":{"title":"Temperatureunits","maxLength":255,"type":"string"},"precipitationUnits":{"title":"Precipitationunits","maxLength":255,"type":"string"},"cloudHeightUnits":{"title":"Cloudheightunits","maxLength":255,"type":"string"},"visUnits":{"title":"Visunits","maxLength":255,"type":"string"},"dataSourceTimeZone":{"title":"Datasourcetimezone","type":"integer"}},"additionalProperties":false},"UpdatePaperArchive":{"title":"UpdatePaperArchive","required":["image"],"type":"object","properties":{"image":{"title":"Image","maxLength":255,"type":"string"}},"additionalProperties":false},"UpdatePaperArchiveDefinition":{"title":"UpdatePaperArchiveDefinition","required":["description"],"type":"object","properties":{"description":{"title":"Description","maxLength":255,"type":"string"}},"additionalProperties":false},"UpdatePhysicalFeature":{"title":"UpdatePhysicalFeature","required":["endDate","image"],"type":"object","properties":{"endDate":{"title":"Enddate","maxLength":50,"type":"string"},"image":{"title":"Image","maxLength":255,"type":"string"}},"additionalProperties":false},"UpdatePhysicalFeatureClass":{"title":"UpdatePhysicalFeatureClass","required":["description","refersTo"],"type":"object","properties":{"description":{"title":"Description","maxLength":255,"type":"string"},"refersTo":{"title":"Refersto","maxLength":255,"type":"string"}},"additionalProperties":false},"UpdateQCStatusDefinition":{"title":"UpdateQCStatusDefinition","required":["description"],"type":"object","properties":{"description":{"title":"Description","maxLength":255,"type":"string"}},"additionalProperties":false},"UpdateQCType":{"title":"UpdateQCType","required":["description"],"type":"object","properties":{"description":{"title":"Description","maxLength":255,"type":"string"}},"additionalProperties":false},"UpdateRegKey":{"title":"UpdateRegKey","required":["keyValue","keyDescription"],"type":"object","properties":{"keyValue":{"title":"Keyvalue","maxLength":255,"type":"string"},"keyDescription":{"title":"Keydescription","maxLength":255,"type":"string"}},"additionalProperties":false},"UpdateStation":{"title":"UpdateStation","required":["stationName","latitude","longitude","elevation","closingDatetime","country","wacaSelection","cptSelection","stationOperational"],"type":"object","properties":{"stationName":{"title":"Stationname","maxLength":255,"type":"string"},"wmoid":{"title":"Wmoid","maxLength":20,"type":"string"},"icaoid":{"title":"Icaoid","maxLength":20,"type":"string"},"latitude":{"title":"Latitude","type":"number"},"qualifier":{"title":"Qualifier","maxLength":20,"type":"string"},"longitude":{"title":"Longitude","type":"number"},"elevation":{"title":"Elevation","maxLength":255,"type":"string"},"geoLocationMethod":{"title":"Geolocationmethod","maxLength":255,"type":"string"},"geoLocationAccuracy":{"title":"Geolocationaccuracy","type":"number"},"openingDatetime":{"title":"Openingdatetime","type":"string"},"closingDatetime":{"title":"Closingdatetime","type":"string"},"country":{"title":"Country","maxLength":50,"type":"string"},"authority":{"title":"Authority","maxLength":255,"type":"string"},"adminRegion":{"title":"Adminregion","maxLength":255,"type":"string"},"drainageBasin":{"title":"Drainagebasin","maxLength":255,"type":"string"},"wacaSelection":{"title":"Wacaselection","type":"boolean"},"cptSelection":{"title":"Cptselection","type":"boolean"},"stationOperational":{"title":"Stationoperational","type":"boolean"}},"additionalProperties":false},"UpdateStationElement":{"title":"UpdateStationElement","required":["instrumentcode","scheduledFor","height","endDate"],"type":"object","properties":{"instrumentcode":{"title":"Instrumentcode","maxLength":6,"type":"string"},"scheduledFor":{"title":"Scheduledfor","maxLength":255,"type":"string"},"height":{"title":"Height","type":"number"},"endDate":{"title":"Enddate","maxLength":255,"type":"string"}},"additionalProperties":false},"UpdateStationLocationHistory":{"title":"UpdateStationLocationHistory","required":["stationType","geoLocationMethod","geoLocationAccuracy","closingDatetime","latitude","longitude","elevation","authority","adminRegion","drainageBasin"],"type":"object","properties":{"stationType":{"title":"Stationtype","maxLength":255,"type":"string"},"geoLocationMethod":{"title":"Geolocationmethod","maxLength":255,"type":"string"},"geoLocationAccuracy":{"title":"Geolocationaccuracy","type":"number"},"closingDatetime":{"title":"Closingdatetime","type":"string"},"latitude":{"title":"Latitude","type":"number"},"longitude":{"title":"Longitude","type":"number"},"elevation":{"title":"Elevation","type":"integer"},"authority":{"title":"Authority","maxLength":255,"type":"string"},"adminRegion":{"title":"Adminregion","maxLength":255,"type":"string"},"drainageBasin":{"title":"Drainagebasin","maxLength":255,"type":"string"}},"additionalProperties":false},"UpdateStationQualifier":{"title":"UpdateStationQualifier","required":["stationTimeZone","stationNetworkType"],"type":"object","properties":{"stationTimeZone":{"title":"Stationtimezone","type":"integer"},"stationNetworkType":{"title":"Stationnetworktype","maxLength":255,"type":"string"}},"additionalProperties":false},"UpdateSynopFeature":{"title":"UpdateSynopFeature","required":["description"],"type":"object","properties":{"description":{"title":"Description","maxLength":255,"type":"string"}},"additionalProperties":false},"ValidationError":{"title":"ValidationError","required":["loc","msg","type"],"type":"object","properties":{"loc":{"title":"Location","type":"array","items":{"type":"string"}},"msg":{"title":"Message","type":"string"},"type":{"title":"Error Type","type":"string"}}}}}}