Atlassian · Schema

AuditRecordBean

An audit record.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
associatedItems array The list of items associated with the changed record.
authorKey string Deprecated, use `authorAccountId` instead. The key of the user who created the audit record.
category string The category of the audit record. For a list of these categories, see the help article [Auditing in Jira applications](https://confluence.atlassian.com/x/noXKM).
changedValues array The list of values changed in the record event.
created string The date and time on which the audit record was created.
description string The description of the audit record.
eventSource string The event the audit record originated from.
id integer The ID of the audit record.
objectItem object
remoteAddress string The URL of the computer where the creation of the audit record was initiated.
summary string The summary of the audit record.
View JSON Schema on GitHub

JSON Schema

atlassian-auditrecordbean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuditRecordBean",
  "title": "AuditRecordBean",
  "additionalProperties": false,
  "description": "An audit record.",
  "properties": {
    "associatedItems": {
      "description": "The list of items associated with the changed record.",
      "items": {
        "$ref": "#/components/schemas/AssociatedItemBean"
      },
      "readOnly": true,
      "type": "array"
    },
    "authorKey": {
      "description": "Deprecated, use `authorAccountId` instead. The key of the user who created the audit record.",
      "readOnly": true,
      "type": "string"
    },
    "category": {
      "description": "The category of the audit record. For a list of these categories, see the help article [Auditing in Jira applications](https://confluence.atlassian.com/x/noXKM).",
      "readOnly": true,
      "type": "string"
    },
    "changedValues": {
      "description": "The list of values changed in the record event.",
      "items": {
        "$ref": "#/components/schemas/ChangedValueBean"
      },
      "readOnly": true,
      "type": "array"
    },
    "created": {
      "description": "The date and time on which the audit record was created.",
      "format": "date-time",
      "readOnly": true,
      "type": "string"
    },
    "description": {
      "description": "The description of the audit record.",
      "readOnly": true,
      "type": "string"
    },
    "eventSource": {
      "description": "The event the audit record originated from.",
      "readOnly": true,
      "type": "string"
    },
    "id": {
      "description": "The ID of the audit record.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "objectItem": {
      "$ref": "#/components/schemas/AssociatedItemBean"
    },
    "remoteAddress": {
      "description": "The URL of the computer where the creation of the audit record was initiated.",
      "readOnly": true,
      "type": "string"
    },
    "summary": {
      "description": "The summary of the audit record.",
      "readOnly": true,
      "type": "string"
    }
  },
  "type": "object"
}