{
  "version": "3.0",
  "entities": [
    {
      "name": "company",
      "schemas": {
        "hubspot": {
          "object_type": "companies",
          "identity": {"strategy": "match_or_create", "property": "hs_tax_id"},
          "field_mappings": [
            {"source": "$.payload.object.properties.name", "target": "name"}
          ]
        }
      }
    }
  ],
  "flows": [
    {
      "name": "hubspot_company_to_api",
      "source": "hubspot_journal",
      "event_type": "0-2.update",
      "steps": [
        {"id": "push_api", "action": "post", "target": "crm_api",
         "entity": "company", "url": "/api/companies/upsert",
         "body": "$.payload.object.properties"}
      ]
    }
  ],
  "settings": {}
}
