Acceldata · JSON Structure

Adoc Api User Structure

A user in the Acceldata platform

Type: object Properties: 6
AI AgentsData ManagementData ObservabilityData PipelineData QualityIntelligenceObservability

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

Properties

id email name role status createdAt

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://acceldata.io/structures/adoc-api-user.json",
  "title": "User",
  "type": "object",
  "description": "A user in the Acceldata platform",
  "properties": {
    "id": {
      "type": "string",
      "description": "User identifier"
    },
    "email": {
      "type": "string",
      "description": "User email address"
    },
    "name": {
      "type": "string",
      "description": "User full name"
    },
    "role": {
      "type": "string",
      "description": "Assigned role"
    },
    "status": {
      "type": "string",
      "description": "User account status",
      "enum": [
        "active",
        "inactive",
        "invited"
      ]
    },
    "createdAt": {
      "type": "string",
      "description": "Account creation timestamp"
    }
  }
}