Pure Storage · JSON Structure

Pure1 Cloud Api Audit Structure

Audit schema from Pure1 Public REST API

Type: Properties: 0
StorageData StorageFlash StorageEnterprise StorageCloud StorageObject StorageFile StorageBlock StorageKubernetes StorageInfrastructure

Audit is a JSON Structure definition published by Pure Storage. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

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/pure-storage/refs/heads/main/json-structure/pure1-cloud-api-audit-structure.json",
  "name": "Audit",
  "description": "Audit schema from Pure1 Public REST API",
  "allOf": [
    {
      "description": "A built-in resource that exists on one or multiple arrays.\n",
      "allOf": [
        {
          "$ref": "#/components/schemas/_resource"
        },
        {
          "$ref": "#/components/schemas/_arrays"
        }
      ]
    },
    {
      "description": "An audit of an action executed on an array or in Pure1.\n",
      "type": "object",
      "properties": {
        "arguments": {
          "description": "Arguments provided to the command.",
          "type": "string",
          "example": "--args"
        },
        "command": {
          "description": "The command that was executed.",
          "type": "string",
          "example": "purevol"
        },
        "origin": {
          "description": "Origin of the action. Valid values are `array` and `Pure1`.",
          "type": "string",
          "example": "array"
        },
        "subcommand": {
          "description": "The subcommand that was executed.",
          "type": "string",
          "example": "snap"
        },
        "time": {
          "description": "Time at which the command was run in milliseconds since UNIX epoch.\n",
          "type": "int64",
          "example": 1502729489760
        },
        "user": {
          "description": "The user who ran the command.",
          "type": "string",
          "example": "pureuser"
        }
      }
    }
  ]
}