Atlassian · Schema

AssociatedItemBean

Details of an item associated with the changed record.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id string The ID of the associated record.
name string The name of the associated record.
parentId string The ID of the associated parent record.
parentName string The name of the associated parent record.
typeName string The type of the associated record.
View JSON Schema on GitHub

JSON Schema

atlassian-associateditembean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AssociatedItemBean",
  "title": "AssociatedItemBean",
  "additionalProperties": false,
  "description": "Details of an item associated with the changed record.",
  "properties": {
    "id": {
      "description": "The ID of the associated record.",
      "readOnly": true,
      "type": "string"
    },
    "name": {
      "description": "The name of the associated record.",
      "readOnly": true,
      "type": "string"
    },
    "parentId": {
      "description": "The ID of the associated parent record.",
      "readOnly": true,
      "type": "string"
    },
    "parentName": {
      "description": "The name of the associated parent record.",
      "readOnly": true,
      "type": "string"
    },
    "typeName": {
      "description": "The type of the associated record.",
      "readOnly": true,
      "type": "string"
    }
  },
  "type": "object"
}