[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-25 UTC."],[],[],null,["# Attachment\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n- [Csv](#Csv)\n - [JSON representation](#Csv.SCHEMA_REPRESENTATION)\n- [CsvRow](#CsvRow)\n - [JSON representation](#CsvRow.SCHEMA_REPRESENTATION)\n\nAttachment with application-specific information about an alert.\n\n| JSON representation |\n|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { // Union field `data` can be only one of the following: \"csv\": { object (/workspace/admin/alertcenter/reference/rest/v1beta1/Attachment#Csv) } // End of list of possible types for union field `data`. } ``` |\n\n| Fields ||\n|-------|---------------------------------------------------------------------------------------------------------------|\n| Union field `data`. Data type of the attachment. `data` can be only one of the following: ||\n| `csv` | `object (`[Csv](/workspace/admin/alertcenter/reference/rest/v1beta1/Attachment#Csv)`)` A CSV file attachment. |\n\nCsv\n---\n\nA representation of a CSV file attachment, as a list of column headers and a list of data rows.\n\n| JSON representation |\n|---------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"headers\": [ string ], \"dataRows\": [ { object (/workspace/admin/alertcenter/reference/rest/v1beta1/Attachment#CsvRow) } ] } ``` |\n\n| Fields ||\n|--------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `headers[]` | `string` The list of headers for data columns in a CSV file. |\n| `dataRows[]` | `object (`[CsvRow](/workspace/admin/alertcenter/reference/rest/v1beta1/Attachment#CsvRow)`)` The list of data rows in a CSV file, as string arrays rather than as a single comma-separated string. |\n\nCsvRow\n------\n\nA representation of a single data row in a CSV file.\n\n| JSON representation |\n|-----------------------------------|\n| ``` { \"entries\": [ string ] } ``` |\n\n| Fields ||\n|-------------|-------------------------------------------------------------------------------------------------------------|\n| `entries[]` | `string` The data entries in a CSV file row, as a string array rather than a single comma-separated string. |"]]