File tree Expand file tree Collapse file tree 1 file changed +64
-0
lines changed
Expand file tree Collapse file tree 1 file changed +64
-0
lines changed Original file line number Diff line number Diff line change @@ -19958,6 +19958,70 @@ components:
1995819958 nullable: false
1995919959 example: text-integration
1996019960 description: The app package code if this part was created via API. Note this field won't show if the part was not created via API.
19961+ updated_attribute_data:
19962+ title: Updated Attribute
19963+ type: object
19964+ description: The updated attribute data of the ticket part for attribute update parts.
19965+ properties:
19966+ attribute:
19967+ type: object
19968+ description: Information about the attribute that was updated.
19969+ properties:
19970+ type:
19971+ type: string
19972+ description: The type of the object. Always 'attribute'.
19973+ enum:
19974+ - attribute
19975+ example: attribute
19976+ id:
19977+ type: string
19978+ description: The unique identifier of the attribute.
19979+ example: "7"
19980+ label:
19981+ type: string
19982+ description: The human-readable name of the attribute.
19983+ example: "Progress"
19984+ required:
19985+ - type
19986+ - id
19987+ - label
19988+ value:
19989+ type: object
19990+ description: The new value of the attribute.
19991+ properties:
19992+ type:
19993+ type: string
19994+ description: The type of the object. Always 'value'.
19995+ enum:
19996+ - value
19997+ example: value
19998+ id:
19999+ oneOf:
20000+ - type: string
20001+ description: The value for text/number/decimal/boolean/date attributes, or the ID of the list option for list attributes.
20002+ example: "Fast"
20003+ - type: array
20004+ description: Array of file IDs for file attributes.
20005+ items:
20006+ type: integer
20007+ example: [2]
20008+ label:
20009+ oneOf:
20010+ - type: string
20011+ description: The display value for text/number/decimal/boolean/date/list attributes.
20012+ example: "Fast"
20013+ - type: array
20014+ description: Array of file names for file attributes.
20015+ items:
20016+ type: string
20017+ example: ["photo.png"]
20018+ required:
20019+ - type
20020+ - id
20021+ - label
20022+ required:
20023+ - attribute
20024+ - value
1996120025 ticket_part_author:
1996220026 title: Ticket part author
1996320027 type: object
You can’t perform that action at this time.
0 commit comments