[[["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-05-20 UTC."],[[["\u003cp\u003eThe Conversion Data Feed is a JSON file containing daily conversion data, including the date and number of transactions.\u003c/p\u003e\n"],["\u003cp\u003eThe Descriptor File is a JSON file providing metadata about the Conversion Data Feed, such as generation timestamp, name, and a list of associated data files.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eduration\u003c/code\u003e field within the Conversion Data Feed specifies the date of the recorded transactions using year, month, and day.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003enum_transactions\u003c/code\u003e field within the Conversion Data Feed represents the total number of transactions for the corresponding date.\u003c/p\u003e\n"]]],["The data feed presents transaction counts for specific dates. On September 21, 2020, there were 60 transactions; September 22, 2020, had 84 transactions; and September 23, 2020, recorded 91 transactions. The descriptor file indicates that the data is named \"reservewithgoogle.conversion_data\" and was generated at timestamp 1524606581, with two associated data files. The conversion data file have the num_transactions info related to a specific date.\n"],null,["# Conversion feeds for Starter integration (legacy)\n\n### Conversion Data Feed\n\n```json\n{\n \"data\" : [\n {\n \"duration\" : {\n \"date\" : {\"year\":2020,\"month\":9,\"day\":21}\n },\n \"num_transactions\":\"60\"\n },\n {\n \"duration\" : {\n \"date\" : {\"year\":2020,\"month\":9,\"day\":22}\n },\n \"num_transactions\":\"84\"\n },\n {\n \"duration\" : {\n \"date\" : {\"year\":2020,\"month\":9,\"day\":23}\n },\n \"num_transactions\":\"91\"\n }\n ]\n}\n```\n\n### Descriptor File\n\n```json\n{\n \"generation_timestamp\": 1524606581,\n \"name\": \"reservewithgoogle.conversion_data\",\n \"data_file\": [\n \"reservewithgoogle.conversion_data_1524606581_1.json\",\n \"reservewithgoogle.conversion_data_1524606581_2.json\"\n ]\n}\n```"]]