Anomaly Detection · JSON Structure

Anomaly Detection Time Series Structure

A named time series used as input for anomaly detection, containing an ordered sequence of timestamped metric values.

Type: object Properties: 10 Required: 3
Anomaly DetectionArtificial IntelligenceData ScienceFraud DetectionMachine-LearningMonitoringObservabilityOutlier DetectionPattern RecognitionSecurityTime Series

TimeSeries is a JSON Structure definition published by Anomaly Detection, describing 10 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name description metric unit granularity seasonality data_points created_at dimensions

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/anomaly-detection/refs/heads/main/json-structure/anomaly-detection-time-series-structure.json",
  "description": "A named time series used as input for anomaly detection, containing an ordered sequence of timestamped metric values.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the time series.",
      "example": "ts-prod-cluster-01"
    },
    "name": {
      "type": "string",
      "description": "Human-readable name for the time series.",
      "example": "Production Cluster CPU Utilization"
    },
    "description": {
      "type": "string",
      "description": "Description of what this time series measures.",
      "example": "Average CPU utilization across production web cluster nodes."
    },
    "metric": {
      "type": "string",
      "description": "The metric being tracked in this series.",
      "example": "cpu_utilization"
    },
    "unit": {
      "type": "string",
      "description": "Unit of measurement for the metric values.",
      "example": "percent"
    },
    "granularity": {
      "type": "string",
      "description": "Time granularity between data points (ISO 8601 duration).",
      "example": "PT1M"
    },
    "seasonality": {
      "type": "string",
      "enum": [
        "hourly",
        "daily",
        "weekly",
        "none"
      ],
      "description": "The dominant seasonality pattern observed in this series.",
      "example": "daily"
    },
    "data_points": {
      "type": "array",
      "description": "Ordered list of timestamped data points.",
      "items": {
        "$ref": "#/$defs/DataPoint"
      }
    },
    "created_at": {
      "type": "datetime",
      "description": "Timestamp when this time series was created.",
      "example": "2026-01-01T00:00:00Z"
    },
    "dimensions": {
      "type": "object",
      "description": "Dimensional metadata tags for this series.",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "id",
    "name",
    "metric"
  ],
  "name": "TimeSeries",
  "definitions": {
    "DataPoint": {
      "type": "object",
      "properties": {
        "timestamp": {
          "type": "datetime",
          "description": "Timestamp of the data point.",
          "example": "2026-04-19T14:00:00Z"
        },
        "value": {
          "type": "double",
          "description": "Metric value at this timestamp.",
          "example": 72.5
        }
      },
      "required": [
        "timestamp",
        "value"
      ],
      "name": "DataPoint"
    }
  }
}

Work with this as data

Every JSON Structure 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 json structure

4 MCP tools reach this
  • find_json_structuresBrowse and filter every JSON Structure 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.
All 92 tools →

Call it yourself

curl for this page
This JSON Structure
curl "https://apis.io/api/v1/json-structures/anomaly-detection-time-series-structure"
All json structure
curl "https://apis.io/api/v1/json-structures?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.