# ReportSummary

**report** string

**Example:** `shopify_ecommerce`

**connection_ids** string[]

Array of Unique identifier for each connected app.

**Example:**`["d58AGp7e1jVK"]`

**lines** object[]

Array [
 
**description** string
 
**Example:** `Square Sales`
 
**account_type** string
 
**Example:** `Income`
 
**posting_type** string
 
**Example:** `Credit`
 
**total** number<double>
 
**Example:** `50424.75`
 
**subcategories** object
 
**property name*** number<double>
 
**currency** string
 
**Example:** `USD`
 
]

**metadata** object

**from_date** string<date>

**Example:** `2024-05-17`

**to_date** string<date>

**Example:** `2024-06-16`

**day_count** integer

**Example:** `31`

**record_count** integer

**Example:** `30`

**posted** integer

**Example:** `30`

**unposted** integer

**Example:** `0`

**failed** integer

**Example:** `0`

**missing** object

**count** integer

**Example:** `6`

**dates** string<date>[]

**Example:**`["2024-05-22","2024-05-23","2024-05-24","2024-05-25","2024-06-11","2024-06-12"]`

ReportSummary

```json
{
  "report": "shopify_ecommerce",
  "connection_ids": [
    "d58AGp7e1jVK"
  ],
  "lines": [
    {
      "description": "Square Sales",
      "account_type": "Income",
      "posting_type": "Credit",
      "total": 50424.75,
      "subcategories": {
        "Cash": 2513.7,
        "Credit Card": 47911.05,
        "JT-Red Wine": 1024.7,
        "JT-Spirits": 487.78
      },
      "currency": "USD"
    }
  ],
  "metadata": {
    "from_date": "2024-05-17",
    "to_date": "2024-06-16",
    "day_count": 31,
    "record_count": 30,
    "posted": 30,
    "unposted": 0,
    "failed": 0,
    "missing": {
      "count": 6,
      "dates": [
        "2024-05-22",
        "2024-05-23",
        "2024-05-24",
        "2024-05-25",
        "2024-06-11",
        "2024-06-12"
      ]
    }
  }
}
```
