Umami · JSON Structure

Umami User Request Structure

Request body for creating or updating a user

Type: object Properties: 3
Cookieless TrackingOpen SourcePrivacyWeb AnalyticsWebsite Analytics

Umami User Request Structure is a JSON Structure definition published by Umami, describing 3 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

username password role

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/umami/refs/heads/main/json-structure/umami-user-request-structure.json",
  "title": "UserRequest",
  "description": "Request body for creating or updating a user",
  "type": "object",
  "properties": {
    "username": {
      "type": "string",
      "description": "Username"
    },
    "password": {
      "type": "string",
      "description": "Password"
    },
    "role": {
      "type": "string",
      "description": "User role"
    }
  }
}