Umami · Schema

OkResponse

Simple success confirmation

Cookieless TrackingOpen SourcePrivacyWeb AnalyticsWebsite Analytics

Properties

Name Type Description
ok boolean Indicates successful operation
View JSON Schema on GitHub

JSON Schema

umami-ok-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12",
  "$id": "https://raw.githubusercontent.com/api-evangelist/umami/refs/heads/main/json-schema/umami-ok-response-schema.json",
  "title": "OkResponse",
  "description": "Simple success confirmation",
  "type": "object",
  "properties": {
    "ok": {
      "type": "boolean",
      "description": "Indicates successful operation",
      "examples": [
        true
      ]
    }
  }
}