{"openapi":"3.1.0","info":{"title":"Almanac","version":"0.3.2"},"paths":{"/api/v1/ingest":{"post":{"summary":"Ingest","operationId":"ingest_api_v1_ingest_post","parameters":[{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/IngestIn"}}}},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/forecasts":{"post":{"summary":"Create Forecast","operationId":"create_forecast_api_v1_forecasts_post","parameters":[{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ForecastIn"}}}},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/forecasts/{sku_id}":{"get":{"summary":"Get Forecast","operationId":"get_forecast_api_v1_forecasts__sku_id__get","parameters":[{"name":"sku_id","in":"path","required":true,"schema":{"type":"integer","title":"Sku Id"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/envelopes":{"post":{"summary":"Create Envelope","operationId":"create_envelope_api_v1_envelopes_post","parameters":[{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EnvelopeIn"}}}},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/envelopes/{sku_id}":{"get":{"summary":"Get Envelope","operationId":"get_envelope_api_v1_envelopes__sku_id__get","parameters":[{"name":"sku_id","in":"path","required":true,"schema":{"type":"integer","title":"Sku Id"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/autopsy":{"post":{"summary":"Autopsy","operationId":"autopsy_api_v1_autopsy_post","parameters":[{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AutopsyIn"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/signals":{"post":{"summary":"Create Signals","operationId":"create_signals_api_v1_signals_post","parameters":[{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SignalIn"}}}},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"get":{"summary":"List Signals","operationId":"list_signals_api_v1_signals_get","parameters":[{"name":"sku_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Sku Id"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/health":{"get":{"summary":"Health","operationId":"health_health_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/api/v1/demo":{"get":{"summary":"Demo","operationId":"demo_api_v1_demo_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}}},"components":{"schemas":{"AutopsyIn":{"properties":{"sku_id":{"type":"integer","title":"Sku Id"},"forecast_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Forecast Id"}},"type":"object","required":["sku_id"],"title":"AutopsyIn"},"EnvelopeIn":{"properties":{"sku_id":{"type":"integer","title":"Sku Id"},"service_level":{"type":"number","exclusiveMaximum":1.0,"exclusiveMinimum":0.0,"title":"Service Level","default":0.9},"on_hand":{"type":"number","minimum":0.0,"title":"On Hand","default":0.0},"unit_cost":{"anyOf":[{"type":"number","exclusiveMinimum":0.0},{"type":"null"}],"title":"Unit Cost"},"unit_price":{"anyOf":[{"type":"number","exclusiveMinimum":0.0},{"type":"null"}],"title":"Unit Price"}},"type":"object","required":["sku_id"],"title":"EnvelopeIn"},"ForecastIn":{"properties":{"sku_id":{"type":"integer","title":"Sku Id"},"horizon_days":{"type":"integer","maximum":56.0,"minimum":1.0,"title":"Horizon Days","default":14}},"type":"object","required":["sku_id"],"title":"ForecastIn"},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"IngestIn":{"properties":{"csv_text":{"type":"string","minLength":1,"title":"Csv Text"}},"type":"object","required":["csv_text"],"title":"IngestIn"},"SignalIn":{"properties":{"note":{"type":"string","minLength":1,"title":"Note"},"source":{"type":"string","minLength":1,"title":"Source","default":"owner-note"},"sku_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Sku Id"}},"type":"object","required":["note"],"title":"SignalIn"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"},"input":{"title":"Input"},"ctx":{"type":"object","title":"Context"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"}}}}