{
"$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"
}