{
  "kind": "collectionType",
  "collectionName": "customer_addresses",
  "info": {
    "name": "Customer Address"
  },
  "options": {
    "increments": true,
    "timestamps": true
  },
  "attributes": {
    "address": {
      "type": "string",
      "required": false
    },
    "phone": {
      "type": "biginteger"
    },
    "customer": {
      "model": "customers",
      "via": "customer_addresses"
    },
    "shipping_location": {
      "model": "shipping-locations"
    },
    "pick_up_location": {
      "model": "pick-up-locations"
    },
    "phoneCode": {
      "type": "string"
    }
  }
}
