CWMS Time Series
A time series dataset from the Corps Water Management System containing measurements at a USACE-managed location.
EngineeringFederal-GovernmentWater ResourcesHydrologyCivil Engineering
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The CWMS time series identifier in format Location.Parameter.Type.Interval.Duration.Version |
| office-id | string | Three-character USACE district office code |
| units | string | Measurement units for the data values (e.g., ft, m, cfs, cms) |
| interval | integer | Interval between values in minutes (0 for irregular) |
| interval-offset | integer | Offset from interval boundary in minutes |
| time-zone | string | IANA timezone name for timestamps |
| total | integer | Total number of values available for the query |
| page | string | Current page cursor for pagination |
| next-page | stringnull | Next page cursor (null if no more pages) |
| values | array | Array of time series values as [timestamp_ms, value, quality_code] tuples |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://cwms-data.usace.army.mil/cwms-data/schemas/timeseries",
"title": "CWMS Time Series",
"description": "A time series dataset from the Corps Water Management System containing measurements at a USACE-managed location.",
"type": "object",
"required": ["name", "office-id", "units"],
"properties": {
"name": {
"type": "string",
"description": "The CWMS time series identifier in format Location.Parameter.Type.Interval.Duration.Version"
},
"office-id": {
"type": "string",
"description": "Three-character USACE district office code"
},
"units": {
"type": "string",
"description": "Measurement units for the data values (e.g., ft, m, cfs, cms)"
},
"interval": {
"type": "integer",
"description": "Interval between values in minutes (0 for irregular)"
},
"interval-offset": {
"type": "integer",
"description": "Offset from interval boundary in minutes"
},
"time-zone": {
"type": "string",
"description": "IANA timezone name for timestamps"
},
"total": {
"type": "integer",
"description": "Total number of values available for the query"
},
"page": {
"type": "string",
"description": "Current page cursor for pagination"
},
"next-page": {
"type": ["string", "null"],
"description": "Next page cursor (null if no more pages)"
},
"values": {
"type": "array",
"description": "Array of time series values as [timestamp_ms, value, quality_code] tuples",
"items": {
"type": "array",
"description": "A single time series value: [Unix timestamp in milliseconds, measured value, CWMS quality code]",
"prefixItems": [
{
"type": "integer",
"description": "Unix timestamp in milliseconds since epoch"
},
{
"type": ["number", "null"],
"description": "The measured value (null if missing or no-data)"
},
{
"type": "integer",
"description": "CWMS quality code (0=Unscreened, 1=Good, 3=Questionable, 5=Rejected)"
}
],
"minItems": 3,
"maxItems": 3
}
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/cwms-data-api-timeseries"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.