Validations history

Validation #637

Failure

The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:

  • The property '#/customers/880/average_ticket' of type number did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/customers/880/average_ticket' of type number did not match the following type: string - anyOf #1: - The property '#/customers/880/average_ticket' of type number did not match the following type: null

JSON Schema

{
  "additionalProperties": false,
  "description": "Automatically generated (please edit me)",
  "properties": {
    "customers": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "attractivity_poles_ids": {
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "average_ticket": {
            "anyOf": [
              {
                "pattern": "(^[+-]?(?:0|[1-9]\\d*)(?:\\.(?:\\d*[1-9]|0))?)$",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "city": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "client_creation_date": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "closing_days_ids": {
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "datlinq_code": {
            "type": "integer"
          },
          "email": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "id": {
            "type": "integer"
          },
          "is_deleted": {
            "description": "Customer deleted status in database (true if customer does not appear in the last csv synchronisation)",
            "type": "boolean"
          },
          "is_prospect": {
            "anyOf": [
              {
                "description": "Customer prospect status (true if customer does not have client_gmp = true is csv synchronisation)",
                "type": "boolean"
              },
              {
                "type": "null"
              }
            ]
          },
          "is_restaurant_place": {
            "anyOf": [
              {
                "type": "boolean"
              },
              {
                "type": "null"
              }
            ]
          },
          "local_id": {
            "anyOf": [
              {
                "description": "Customer local id (if customer has a local id, that means he is not a prospect anymore)",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "location_areas_ids": {
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "owner_name": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "phone_number": {
            "anyOf": [
              {
                "format": "datetime",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "postal_code": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "siren": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "siret": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "status": {
            "anyOf": [
              {
                "enum": [
                  "EMPTY_STATUS",
                  "P",
                  "M",
                  "G"
                ],
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "store_name": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "street": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "street_number": {
            "anyOf": [
              {
                "type": "integer"
              },
              {
                "type": "null"
              }
            ]
          },
          "turnover": {
            "anyOf": [
              {
                "type": "integer"
              },
              {
                "type": "null"
              }
            ]
          },
          "user_id": {
            "type": "integer"
          },
          "working_days_amount": {
            "anyOf": [
              {
                "type": "integer"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "required": [
          "attractivity_poles_ids",
          "average_ticket",
          "city",
          "client_creation_date",
          "closing_days_ids",
          "datlinq_code",
          "email",
          "id",
          "is_deleted",
          "is_prospect",
          "is_restaurant_place",
          "local_id",
          "location_areas_ids",
          "owner_name",
          "phone_number",
          "postal_code",
          "siren",
          "siret",
          "status",
          "store_name",
          "street",
          "street_number",
          "turnover",
          "user_id",
          "working_days_amount"
        ],
        "type": "object"
      },
      "type": "array"
    },
    "meta": {
      "properties": {
        "limit_value": {
          "type": "integer"
        },
        "total_pages": {
          "type": "integer"
        },
        "update_date": {
          "format": "datetime",
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "required": [
    "customers"
  ],
  "title": "Customer - ShortCustomer",
  "type": "object"
}

JSON instance

{
  "customers": [
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST DENIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890291,
      "email": null,
      "id": 1763,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48091255",
      "postal_code": "93200",
      "siren": "403052111",
      "siret": "40305211100164",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "rue Jean Jaures",
      "street_number": 3,
      "turnover": null,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST OUEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890300,
      "email": null,
      "id": 15213,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-40110527",
      "postal_code": "93400",
      "siren": "330344177",
      "siret": "33034417700051",
      "status": "M",
      "store_name": "Boulangerie Debure",
      "street": "place de la Republique",
      "street_number": 2,
      "turnover": 330000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOBIGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890303,
      "email": null,
      "id": 15215,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "Z0094001",
      "location_areas_ids": [],
      "owner_name": "KLAI ELLAFI MOUNIRA",
      "phone_number": "01-48321579",
      "postal_code": "93000",
      "siren": "413364365",
      "siret": "41336436500010",
      "status": "G",
      "store_name": "Boulangerie Ellafi Mounira",
      "street": "cite Jean Gremillon",
      "street_number": 8,
      "turnover": 300496,
      "user_id": 74,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GAGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890316,
      "email": null,
      "id": 15225,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "TROUFFLARD PASCAL, MICHEL",
      "phone_number": "01-43810902",
      "postal_code": "93220",
      "siren": "789814332",
      "siret": "78981433200019",
      "status": "P",
      "store_name": "Boulangerie le Fournil de la Gare",
      "street": "avenue Jean Jaures",
      "street_number": 71,
      "turnover": 220000,
      "user_id": 74,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA COURNEUVE",
      "client_creation_date": "1-1-1991",
      "closing_days_ids": [],
      "datlinq_code": 890345,
      "email": null,
      "id": 15243,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R2593001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-49370777",
      "postal_code": "93120",
      "siren": "380537829",
      "siret": "38053782900018",
      "status": "G",
      "store_name": "Boulangerie Sep",
      "street": "boulevard Pasteur",
      "street_number": 40,
      "turnover": 790000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAMPIGNY SUR MARNE",
      "client_creation_date": "1990",
      "closing_days_ids": [],
      "datlinq_code": 890355,
      "email": null,
      "id": 15250,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1500C001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48800712",
      "postal_code": "94500",
      "siren": "793765173",
      "siret": "79376517300018",
      "status": "G",
      "store_name": "Boulangerie Araujo",
      "street": "rue Moliere",
      "street_number": 29,
      "turnover": 850000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FONTENAY SOUS BOIS",
      "client_creation_date": "2011",
      "closing_days_ids": [],
      "datlinq_code": 890364,
      "email": null,
      "id": 15258,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R6186001",
      "location_areas_ids": [],
      "owner_name": "Marteau",
      "phone_number": "01-48738111",
      "postal_code": "94120",
      "siren": "479144479",
      "siret": "47914447900017",
      "status": "G",
      "store_name": "Boulangerie Au Petit Duc",
      "street": "avenue du Val de Fontenay",
      "street_number": 9,
      "turnover": 720000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAISONS ALFORT",
      "client_creation_date": "2-3-2012",
      "closing_days_ids": [],
      "datlinq_code": 890366,
      "email": null,
      "id": 15260,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Bernard tournier",
      "phone_number": "000-000",
      "postal_code": "94700",
      "siren": "511755597",
      "siret": "51175559700024",
      "status": "M",
      "store_name": "Boulangerie aux Delices de Maisons Alfort",
      "street": "avenue de la Republique",
      "street_number": 17,
      "turnover": 458000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEJUIF",
      "client_creation_date": "1-1-2004",
      "closing_days_ids": [],
      "datlinq_code": 890368,
      "email": null,
      "id": 15262,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R7763001",
      "location_areas_ids": [],
      "owner_name": "BEN ARFA",
      "phone_number": "01-46784762",
      "postal_code": "94800",
      "siren": "480830025",
      "siret": "48083002500015",
      "status": "M",
      "store_name": "Boulangerie Ben Arfa",
      "street": "place Paul Eluard",
      "street_number": 13,
      "turnover": 200000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VINCENNES",
      "client_creation_date": "2012",
      "closing_days_ids": [],
      "datlinq_code": 890369,
      "email": null,
      "id": 15263,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "N0929001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43288847",
      "postal_code": "94300",
      "siren": "491688966",
      "siret": "49168896600010",
      "status": "G",
      "store_name": "Boulangerie Benedicte et Ludovic Petit",
      "street": "rue Clement Vienot",
      "street_number": 4,
      "turnover": 650000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALFORTVILLE",
      "client_creation_date": "1990",
      "closing_days_ids": [],
      "datlinq_code": 890370,
      "email": null,
      "id": 15264,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0676G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-20960496",
      "postal_code": "94140",
      "siren": "399526045",
      "siret": "39952604500014",
      "status": "M",
      "store_name": "Boulangerie Biscuit d'Or",
      "street": "quai Jean Baptiste Clement",
      "street_number": 32,
      "turnover": 327000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "IVRY SUR SEINE",
      "client_creation_date": "1-1-2003",
      "closing_days_ids": [],
      "datlinq_code": 890373,
      "email": null,
      "id": 15267,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R2747001",
      "location_areas_ids": [],
      "owner_name": "BOUKCHIM",
      "phone_number": "07-69065355",
      "postal_code": "94200",
      "siren": "440934446",
      "siret": "44093444600012",
      "status": "M",
      "store_name": "Boulangerie Boukhchim",
      "street": "rue Gabriel Peri",
      "street_number": 90,
      "turnover": 300000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA QUEUE EN BRIE",
      "client_creation_date": "2004",
      "closing_days_ids": [],
      "datlinq_code": 890377,
      "email": null,
      "id": 15271,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "10667001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45767705",
      "postal_code": "94510",
      "siren": "478587959",
      "siret": "47858795900014",
      "status": "G",
      "store_name": "Boulangerie Guerin",
      "street": "rue Jean Jaures",
      "street_number": 38,
      "turnover": 722000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CRETEIL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890380,
      "email": null,
      "id": 1773,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48992727",
      "postal_code": "94000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "allee Parmentier",
      "street_number": 6,
      "turnover": null,
      "user_id": 81,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLENEUVE LE ROI",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890394,
      "email": null,
      "id": 15281,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R6020001",
      "location_areas_ids": [],
      "owner_name": "davory",
      "phone_number": "01-45974312",
      "postal_code": "94290",
      "siren": "488184508",
      "siret": "48818450800015",
      "status": "P",
      "store_name": "Boulangerie Davory",
      "street": "rue de la Mairie",
      "street_number": 9,
      "turnover": 340000,
      "user_id": 81,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "IVRY SUR SEINE",
      "client_creation_date": "1-1-1995",
      "closing_days_ids": [],
      "datlinq_code": 890395,
      "email": null,
      "id": 15282,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Miroslawa",
      "phone_number": "01-46728500",
      "postal_code": "94200",
      "siren": "348832247",
      "siret": "34883224700012",
      "status": "P",
      "store_name": "Boulangerie de Ville Miroslawa",
      "street": "bd Paul Vaillant Couturier",
      "street_number": 126,
      "turnover": 45000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MAUR DES FOSSES",
      "client_creation_date": "2001",
      "closing_days_ids": [],
      "datlinq_code": 890397,
      "email": null,
      "id": 15284,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R7241001",
      "location_areas_ids": [],
      "owner_name": "Lundi mardi",
      "phone_number": "01-48830784",
      "postal_code": "94100",
      "siren": "441515715",
      "siret": "44151571500015",
      "status": "G",
      "store_name": "Boulangerie Desjardins",
      "street": "avenue du Raincy",
      "street_number": 4,
      "turnover": 480000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VINCENNES",
      "client_creation_date": "2010",
      "closing_days_ids": [],
      "datlinq_code": 890399,
      "email": null,
      "id": 15286,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43282511",
      "postal_code": "94300",
      "siren": "452232721",
      "siret": "45223272100012",
      "status": "M",
      "store_name": "Boulangerie Douceurs Et Plaisirs De Vincennes",
      "street": "rue de Fontenay",
      "street_number": 83,
      "turnover": 450000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MAUR DES FOSSES",
      "client_creation_date": "2015",
      "closing_days_ids": [],
      "datlinq_code": 890417,
      "email": null,
      "id": 15300,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-77853811",
      "postal_code": "94210",
      "siren": "424161180",
      "siret": "42416118000015",
      "status": "P",
      "store_name": "Boulangerie la Chaumette",
      "street": "avenue du Bac",
      "street_number": 23,
      "turnover": 173000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MAUR DES FOSSES",
      "client_creation_date": "2007",
      "closing_days_ids": [],
      "datlinq_code": 890427,
      "email": null,
      "id": 15308,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0838E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-49769195",
      "postal_code": "94210",
      "siren": "389388885",
      "siret": "38938888500011",
      "status": "P",
      "store_name": "Le Fournil des Gourmands",
      "street": "avenue du Centenaire",
      "street_number": 127,
      "turnover": 380,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BRY SUR MARNE",
      "client_creation_date": "2010",
      "closing_days_ids": [],
      "datlinq_code": 890456,
      "email": null,
      "id": 15327,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48810013",
      "postal_code": "94360",
      "siren": "492446331",
      "siret": "49244633100018",
      "status": "P",
      "store_name": "Boulangerie Tenesi",
      "street": "Grande Rue Charles de Gaulle",
      "street_number": 39,
      "turnover": 580000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FONTENAY SOUS BOIS",
      "client_creation_date": "1999",
      "closing_days_ids": [],
      "datlinq_code": 890460,
      "email": null,
      "id": 15329,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48768887",
      "postal_code": "94120",
      "siren": "324139369",
      "siret": "32413936900023",
      "status": "P",
      "store_name": "Boulangerie Vallot",
      "street": "place du General Leclerc",
      "street_number": 7,
      "turnover": 150000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTIGNY LES CORMEILLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890468,
      "email": null,
      "id": 15337,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R5153001",
      "location_areas_ids": [],
      "owner_name": "Djeema",
      "phone_number": "01-39979212",
      "postal_code": "95370",
      "siren": "452270184",
      "siret": "45227018400016",
      "status": "P",
      "store_name": "Boulangerie aux Croissants d'Argent",
      "street": "residence de la Gare",
      "street_number": 12,
      "turnover": 210000,
      "user_id": 80,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PONTOISE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890544,
      "email": null,
      "id": 15398,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R8692001",
      "location_areas_ids": [],
      "owner_name": "Olivier Guillaume",
      "phone_number": "01-34241117",
      "postal_code": "95300",
      "siren": "508340205",
      "siret": "50834020500014",
      "status": "G",
      "store_name": "Boulangerie au Pain de Pontoise",
      "street": "av du General Gabriel Delarue",
      "street_number": 10,
      "turnover": 708000,
      "user_id": 78,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FRAIZE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 891375,
      "email": null,
      "id": 15405,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "88230",
      "siren": "798729109",
      "siret": "79872910900016",
      "status": "P",
      "store_name": "Boulangerie Du Four au Moulin",
      "street": "rue du General Ingold",
      "street_number": 15,
      "turnover": 140000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RAUCOURT ET FLABA",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 891982,
      "email": null,
      "id": 15410,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 324267140",
      "postal_code": "08450",
      "siren": "790963623",
      "siret": "79096362300018",
      "status": "P",
      "store_name": "Boulangerie Brule",
      "street": "rue de l Eglise",
      "street_number": 6,
      "turnover": 220000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "1992-01-01",
      "closing_days_ids": [],
      "datlinq_code": 892574,
      "email": "ce.0060033d@ac-nice.fr",
      "id": 199,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0166C001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93971200",
      "postal_code": "06000",
      "siren": "324538560",
      "siret": "32453856000081",
      "status": "P",
      "store_name": "Lycée Honoré d'Estienne d'Orves",
      "street": "avenue d Estienne d Orves",
      "street_number": 13,
      "turnover": 40000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "REIMS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 894382,
      "email": null,
      "id": 15420,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326849293",
      "postal_code": "51100",
      "siren": "488206517",
      "siret": "48820651700010",
      "status": "M",
      "store_name": "Boulangerie Case à Pains",
      "street": "place du Forum",
      "street_number": 5,
      "turnover": 600000,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CLAIR SUR L ELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 894511,
      "email": null,
      "id": 15421,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010031934252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233058624",
      "postal_code": "50680",
      "siren": "539639708",
      "siret": "53963970800012",
      "status": "G",
      "store_name": "Boulangerie Patisserie Saint Clair Sur L'Elle",
      "street": "rue de la Liberation",
      "street_number": 7,
      "turnover": 312000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JEAN DE MONTS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 896028,
      "email": null,
      "id": 15428,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "85160",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Brioche Vendeenne",
      "street": "rue Georges Clemenceau",
      "street_number": 9,
      "turnover": null,
      "user_id": 157,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHALINDREY",
      "client_creation_date": "2014-02-01",
      "closing_days_ids": [],
      "datlinq_code": 902653,
      "email": null,
      "id": 15449,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0010035393252110",
      "location_areas_ids": [],
      "owner_name": "Duc",
      "phone_number": "+33 967028646",
      "postal_code": "52600",
      "siren": "840098164",
      "siret": "84009816400014",
      "status": "M",
      "store_name": "Boulangerie aux Delices des Sorciers",
      "street": "rue de la Republique",
      "street_number": 60,
      "turnover": 260000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST BENOIT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 915305,
      "email": null,
      "id": 39917,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-49434432",
      "postal_code": "86280",
      "siren": "482340973",
      "siret": "48234097300999",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Marie Blachere",
      "street": "rue de la Varenne",
      "street_number": null,
      "turnover": null,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOURGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 920068,
      "email": null,
      "id": 32653,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R7292001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-48241263",
      "postal_code": "18000",
      "siren": "419217724",
      "siret": "41921772400014",
      "status": "M",
      "store_name": "Le Khedive",
      "street": "rue Moyenne",
      "street_number": 18,
      "turnover": 300000,
      "user_id": 51,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANNES",
      "client_creation_date": "1949-04-01",
      "closing_days_ids": [],
      "datlinq_code": 930675,
      "email": null,
      "id": 200,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0109W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93062304",
      "postal_code": "06400",
      "siren": "695520270",
      "siret": "69552027000015",
      "status": "P",
      "store_name": "Ernest Traiteur",
      "street": "rue Meynadier",
      "street_number": 52,
      "turnover": 10000,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAGNES SUR MER",
      "client_creation_date": "1999-01-18",
      "closing_days_ids": [],
      "datlinq_code": 930700,
      "email": null,
      "id": 202,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "M5138001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93310074",
      "postal_code": "06800",
      "siren": "421592783",
      "siret": "42159278300011",
      "status": "G",
      "store_name": "Patisserie Jamais Et Fils",
      "street": "boulevard de la Plage",
      "street_number": 83,
      "turnover": 730000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COUTICHES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 932554,
      "email": null,
      "id": 37335,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003343252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320616175",
      "postal_code": "59310",
      "siren": "452872252",
      "siret": "45287225200013",
      "status": "P",
      "store_name": "Duchateau Christophe",
      "street": "route Nationale",
      "street_number": 1247,
      "turnover": 50000,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 933365,
      "email": "le-havre@classcroute.com",
      "id": 41462,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235243446",
      "postal_code": "76600",
      "siren": "491566550",
      "siret": "49156655000019",
      "status": "EMPTY_STATUS",
      "store_name": "Class'Croute",
      "street": "rue Viviani",
      "street_number": 51,
      "turnover": null,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 937846,
      "email": null,
      "id": 15547,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91522685",
      "postal_code": "13002",
      "siren": "438155863",
      "siret": "43815586300022",
      "status": "P",
      "store_name": "Boulangerie la Fournee de Joseph",
      "street": "avenue Robert Schuman",
      "street_number": 61,
      "turnover": 128000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "METZ",
      "client_creation_date": "1995-01-01",
      "closing_days_ids": [],
      "datlinq_code": 938086,
      "email": null,
      "id": 15565,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016053252110",
      "location_areas_ids": [],
      "owner_name": "Laurent Clément",
      "phone_number": "+33 387750629",
      "postal_code": "57000",
      "siren": "400043030",
      "siret": "40004303000016",
      "status": "P",
      "store_name": "Boulangerie Laurent",
      "street": "rue des Allemands",
      "street_number": 82,
      "turnover": 150000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "1985-04-01",
      "closing_days_ids": [],
      "datlinq_code": 938155,
      "email": null,
      "id": 206,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "03070001",
      "location_areas_ids": [],
      "owner_name": "ANSELMI",
      "phone_number": "04-93877795",
      "postal_code": "06000",
      "siren": "332303718",
      "siret": "33230371800016",
      "status": "G",
      "store_name": "Boulangerie chez Maitre Pierre",
      "street": "rue Massena",
      "street_number": 41,
      "turnover": 488000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTPELLIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938251,
      "email": null,
      "id": 15578,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010028912252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 499625419",
      "postal_code": "34000",
      "siren": "527679104",
      "siret": "52767910400010",
      "status": "P",
      "store_name": "Boulangerie De L Aiguillerie",
      "street": "rue de l Aiguillerie",
      "street_number": 36,
      "turnover": 200000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "METZ",
      "client_creation_date": "1993-09-01",
      "closing_days_ids": [],
      "datlinq_code": 938254,
      "email": null,
      "id": 15579,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Hubert Lemoine",
      "phone_number": "+33 387521918",
      "postal_code": "57000",
      "siren": "392380994",
      "siret": "39238099400013",
      "status": "P",
      "store_name": "Boulangerie Banette Hubert Lemoine",
      "street": "rue de la Chapelle",
      "street_number": 38,
      "turnover": 1154000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "2009",
      "closing_days_ids": [],
      "datlinq_code": 938286,
      "email": null,
      "id": 15584,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78754729",
      "postal_code": "69008",
      "siren": "451245989",
      "siret": "45124598900012",
      "status": "P",
      "store_name": "Boulangerie la Mignardise",
      "street": "boulevard des Etats Unis",
      "street_number": 73,
      "turnover": 267000,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938341,
      "email": null,
      "id": 46572,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 648702238",
      "postal_code": "59800",
      "siren": "509476677",
      "siret": "50947667700018",
      "status": "P",
      "store_name": "La Boite à Sandwich",
      "street": "Boulevard Vauban",
      "street_number": 45,
      "turnover": 80000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRENOBLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938347,
      "email": null,
      "id": 15587,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76963298",
      "postal_code": "38100",
      "siren": "435293352",
      "siret": "43529335200017",
      "status": "M",
      "store_name": "Boulangerie Le Friand",
      "street": "cours Liberation Gal de Gaulle",
      "street_number": 159,
      "turnover": 359000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BORDEAUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938403,
      "email": null,
      "id": 1823,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56810100",
      "postal_code": "33000",
      "siren": "453637498",
      "siret": "45363749800024",
      "status": "EMPTY_STATUS",
      "store_name": "Karl",
      "street": "place du Parlement",
      "street_number": 6,
      "turnover": null,
      "user_id": 204,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAMBRAI",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938431,
      "email": null,
      "id": 36840,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 327818737",
      "postal_code": "59400",
      "siren": "498815844",
      "siret": "49881584400010",
      "status": "EMPTY_STATUS",
      "store_name": "Subway",
      "street": "place Aristide Briand",
      "street_number": 4,
      "turnover": null,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LORIENT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938445,
      "email": null,
      "id": 36852,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-97840432",
      "postal_code": "56100",
      "siren": "750777401",
      "siret": "75077740100019",
      "status": "EMPTY_STATUS",
      "store_name": "Subway",
      "street": "avenue du Faouedic",
      "street_number": 4,
      "turnover": null,
      "user_id": 262,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938447,
      "email": null,
      "id": 36854,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-72539273",
      "postal_code": "69009",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Subway",
      "street": "rue Saint Pierre de Vaise",
      "street_number": 36,
      "turnover": null,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NIORT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938466,
      "email": null,
      "id": 1824,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-49172080",
      "postal_code": "79000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Mie CalineÌÀ",
      "street": "place des Halles",
      "street_number": 1,
      "turnover": null,
      "user_id": 158,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAYEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938471,
      "email": null,
      "id": 1828,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231518743",
      "postal_code": "14400",
      "siren": "500511704",
      "siret": "50051170400016",
      "status": "M",
      "store_name": "La Mie Caline",
      "street": "rue Saint Malo",
      "street_number": 82,
      "turnover": 200000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BELFORT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938477,
      "email": null,
      "id": 1831,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 384285501",
      "postal_code": "90000",
      "siren": "487624512",
      "siret": "48762451200017",
      "status": "EMPTY_STATUS",
      "store_name": "La Mie Caline ",
      "street": "place du Docteur Georges Corbis",
      "street_number": 4,
      "turnover": null,
      "user_id": 411,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938482,
      "email": null,
      "id": 1833,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321104056",
      "postal_code": "62200",
      "siren": "434122149",
      "siret": "43412214900017",
      "status": "M",
      "store_name": "La Mie Caline ",
      "street": "Grande Rue",
      "street_number": 2,
      "turnover": 300000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATEAUROUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938493,
      "email": null,
      "id": 1840,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-54089064",
      "postal_code": "36000",
      "siren": "491896007",
      "siret": "49189600700011",
      "status": "EMPTY_STATUS",
      "store_name": "La Mie Caline ",
      "street": "rue Victor Hugo",
      "street_number": 45,
      "turnover": null,
      "user_id": 52,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938501,
      "email": null,
      "id": 36883,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561122592",
      "postal_code": "31000",
      "siren": "504703174",
      "siret": "50470317400020",
      "status": "EMPTY_STATUS",
      "store_name": "Subway",
      "street": "rue Leon Gambetta",
      "street_number": 41,
      "turnover": null,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NARBONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938522,
      "email": null,
      "id": 1859,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468497762",
      "postal_code": "11100",
      "siren": "500580220",
      "siret": "50058022000027",
      "status": "M",
      "store_name": "La Mie Caline ",
      "street": "cours de la Republique",
      "street_number": 7,
      "turnover": 350000,
      "user_id": 440,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RENNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938524,
      "email": null,
      "id": 1861,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-99315488",
      "postal_code": "35000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Mie CalineÌÀ",
      "street": "rue de Plelo",
      "street_number": 2,
      "turnover": null,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHOLET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938770,
      "email": null,
      "id": 1887,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241650799",
      "postal_code": "49300",
      "siren": "412473969",
      "siret": "41247396900019",
      "status": "M",
      "store_name": "La Mie Caline ",
      "street": "rue Nationale",
      "street_number": 142,
      "turnover": 200000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HETTANGE GRANDE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938879,
      "email": null,
      "id": 15631,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-82531064",
      "postal_code": "57330",
      "siren": "440163640",
      "siret": "44016364000012",
      "status": "P",
      "store_name": "Boulangerie Limacher",
      "street": "rue du General de Gaulle",
      "street_number": 14,
      "turnover": 405000,
      "user_id": 104,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-12-2008",
      "closing_days_ids": [],
      "datlinq_code": 938891,
      "email": null,
      "id": 15634,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0364A001",
      "location_areas_ids": [],
      "owner_name": "PIRES CHEIO",
      "phone_number": "09-53577295",
      "postal_code": "75009",
      "siren": "509251773",
      "siret": "50925177300016",
      "status": "P",
      "store_name": "Boulangerie Banette Cheio",
      "street": "rue des Martyrs",
      "street_number": 65,
      "turnover": 279080,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "2006-10-01",
      "closing_days_ids": [],
      "datlinq_code": 938915,
      "email": null,
      "id": 210,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "M1465001",
      "location_areas_ids": [],
      "owner_name": "LEFEVRE",
      "phone_number": "04-93856888",
      "postal_code": "06300",
      "siren": "492432711",
      "siret": "49243271100017",
      "status": "M",
      "store_name": "Boulangerie La Capeline",
      "street": "rue Centrale",
      "street_number": 12,
      "turnover": 150000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938952,
      "email": null,
      "id": 1895,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Kamel BESSAHA",
      "phone_number": "01-44820469",
      "postal_code": "75001",
      "siren": "482135852",
      "siret": "48213585200010",
      "status": "EMPTY_STATUS",
      "store_name": "Oh! Regalade Du Pont Neuf",
      "street": "quai du Louvre",
      "street_number": 20,
      "turnover": 362000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 939079,
      "email": null,
      "id": 1905,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43463255",
      "postal_code": "75012",
      "siren": "449448059",
      "siret": "44944805900013",
      "status": "P",
      "store_name": "L Esplanade",
      "street": "rue Jean Bouton",
      "street_number": 16,
      "turnover": 302000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 939085,
      "email": null,
      "id": 15650,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91487203",
      "postal_code": "13001",
      "siren": "394430409",
      "siret": "39443040900026",
      "status": "M",
      "store_name": "Boulangerie Praline",
      "street": "rue de Rome",
      "street_number": 167,
      "turnover": 230000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEURBANNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 939157,
      "email": null,
      "id": 1909,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Akbolat",
      "phone_number": "04-78949965",
      "postal_code": "69100",
      "siren": "478283427",
      "siret": "47828342700019",
      "status": "P",
      "store_name": "Boulangerie la Huche aux Pains",
      "street": "avenue Roger Salengro",
      "street_number": 78,
      "turnover": 222000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 939290,
      "email": null,
      "id": 15662,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "L5128001",
      "location_areas_ids": [],
      "owner_name": "BIRKA FATIHA",
      "phone_number": "+33 561596116",
      "postal_code": "31500",
      "siren": "508710308",
      "siret": "50871030800018",
      "status": "P",
      "store_name": "Le Fournil de l'Avenue",
      "street": "avenue de Lyon",
      "street_number": 11,
      "turnover": 82276,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PEYRUIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 878595,
      "email": null,
      "id": 5445,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92680979",
      "postal_code": "04310",
      "siren": "423609304",
      "siret": "42360930400013",
      "status": "P",
      "store_name": "Boulangerie les Alp Pains",
      "street": "place des Platanes",
      "street_number": 5,
      "turnover": 90000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 939329,
      "email": null,
      "id": 15666,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ZAROUI",
      "phone_number": "09-64283663",
      "postal_code": "75018",
      "siren": "340997527",
      "siret": "34099752700023",
      "status": "M",
      "store_name": "Boulangerie Zaroui",
      "street": "rue du Poteau",
      "street_number": 71,
      "turnover": 350000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": "2006",
      "closing_days_ids": [],
      "datlinq_code": 939410,
      "email": null,
      "id": 1923,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "RLA43001",
      "location_areas_ids": [],
      "owner_name": "KEMOUN",
      "phone_number": "04-91419267",
      "postal_code": "13006",
      "siren": "489841585",
      "siret": "48984158500024",
      "status": "M",
      "store_name": "Boulangerie le Fournil des Fourneaux",
      "street": "avenue de Toulon",
      "street_number": 71,
      "turnover": 600000,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 939946,
      "email": null,
      "id": 15697,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-46061826",
      "postal_code": "75018",
      "siren": "478432263",
      "siret": "47843226300018",
      "status": "G",
      "store_name": "Boulangerie le Pain en Fête",
      "street": "boulevard Barbes",
      "street_number": 69,
      "turnover": 555000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 939979,
      "email": null,
      "id": 46573,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-99427765",
      "postal_code": "13003",
      "siren": "451930432",
      "siret": "45193043200013",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Fournil du Racati",
      "street": "rue du Racati",
      "street_number": 2,
      "turnover": null,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHARTRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 940027,
      "email": null,
      "id": 32705,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010014573252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 237239457",
      "postal_code": "28000",
      "siren": "504390519",
      "siret": "50439051900016",
      "status": "P",
      "store_name": "Point Show",
      "street": "Place Des Epars",
      "street_number": 12,
      "turnover": 80000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THIONVILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 940297,
      "email": null,
      "id": 15717,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-82912416",
      "postal_code": "57100",
      "siren": "380626994",
      "siret": "38062699400087",
      "status": "EMPTY_STATUS",
      "store_name": "Snack Marius",
      "street": "avenue Albert 1er",
      "street_number": 23,
      "turnover": null,
      "user_id": 104,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 940443,
      "email": null,
      "id": 15731,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R8471001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "75003",
      "siren": "379124688",
      "siret": "37912468800019",
      "status": "M",
      "store_name": "Sandwicherie Ble d'Or",
      "street": "Rue Saint Martin",
      "street_number": 214,
      "turnover": 400000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 940668,
      "email": null,
      "id": 15748,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1470W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42713036",
      "postal_code": "75003",
      "siren": "312847296",
      "siret": "31284729600018",
      "status": "P",
      "store_name": "Boulangerie Mireille",
      "street": "rue Vieille du Temple",
      "street_number": 133,
      "turnover": 250000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 940793,
      "email": null,
      "id": 32707,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010014333252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386644465",
      "postal_code": "89100",
      "siren": "444687750",
      "siret": "44468775000018",
      "status": "P",
      "store_name": "Boulangerie Croque Chaud Piscine Tournesol",
      "street": "rue Etienne Mimard",
      "street_number": 7,
      "turnover": 100000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BITCHE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 940983,
      "email": null,
      "id": 15772,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010890252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387960104",
      "postal_code": "57230",
      "siren": "489229500",
      "siret": "48922950000017",
      "status": "P",
      "store_name": "Boulangerie Banette Martig",
      "street": "Rue Du Colonel Teyssier",
      "street_number": 8,
      "turnover": 200000,
      "user_id": 395,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HAYANGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 941087,
      "email": null,
      "id": 32708,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "45186001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-82842037",
      "postal_code": "57700",
      "siren": "392424115",
      "siret": "39242411500013",
      "status": "EMPTY_STATUS",
      "store_name": "Vichard Salon De The",
      "street": "rue General De Gaulle",
      "street_number": 1,
      "turnover": null,
      "user_id": 104,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LES LILAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 941133,
      "email": null,
      "id": 15793,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "THOMANN COLETTE MICHELINE",
      "phone_number": "01-43620063",
      "postal_code": "93260",
      "siren": "442376596",
      "siret": "44237659600015",
      "status": "P",
      "store_name": "Boulangerie Delices de Marion",
      "street": "rue de Paris",
      "street_number": 139,
      "turnover": 650000,
      "user_id": 74,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 941176,
      "email": null,
      "id": 15800,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "M0308001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43076305",
      "postal_code": "75012",
      "siren": "500806393",
      "siret": "50080639300012",
      "status": "P",
      "store_name": "Boulangerie Aux Delices De Dorith",
      "street": "rue de Charenton",
      "street_number": 269,
      "turnover": 324000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MULHOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 941347,
      "email": null,
      "id": 15822,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-62722673",
      "postal_code": "68200",
      "siren": "451286579",
      "siret": "45128657900045",
      "status": "G",
      "store_name": "Boulangerie Histoire de Pains",
      "street": "rue de Kingersheim",
      "street_number": 28,
      "turnover": 400000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GENTILLY",
      "client_creation_date": "1-1-2004",
      "closing_days_ids": [],
      "datlinq_code": 941424,
      "email": null,
      "id": 15825,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R9301001",
      "location_areas_ids": [],
      "owner_name": "DE SOUZA",
      "phone_number": "06-88203002",
      "postal_code": "94250",
      "siren": "500731690",
      "siret": "50073169000011",
      "status": "G",
      "store_name": "Boulangerie Pao Quente",
      "street": "rue des Champs Elysees",
      "street_number": 2,
      "turnover": 537470,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "KAYSERSBERG VIGNOBLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 943276,
      "email": null,
      "id": 50210,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-89473040",
      "postal_code": "68240",
      "siren": "335292967",
      "siret": "33529296700023",
      "status": "EMPTY_STATUS",
      "store_name": "Au Peche Mignon",
      "street": "rue du General de Gaulle",
      "street_number": 67,
      "turnover": null,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GUEUGNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 943326,
      "email": null,
      "id": 2002,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010030799252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 385258026",
      "postal_code": "71130",
      "siren": "804812543",
      "siret": "80481254300010",
      "status": "M",
      "store_name": "Pain et Cie",
      "street": "rue de la Convention",
      "street_number": 82,
      "turnover": 160000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GEVREY CHAMBERTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 943414,
      "email": null,
      "id": 2003,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 380341317",
      "postal_code": "21220",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Paul",
      "street": "station Auto Esso Gevrey Est",
      "street_number": null,
      "turnover": 10000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRIMAUD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 943799,
      "email": null,
      "id": 15932,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-94966297",
      "postal_code": "83310",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie la Tarte Tropezienne",
      "street": "quartier Saint Pons les Mures",
      "street_number": null,
      "turnover": null,
      "user_id": 185,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTAUROUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 943990,
      "email": null,
      "id": 15939,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Jasselin",
      "phone_number": "04-94767256",
      "postal_code": "83440",
      "siren": "414962076",
      "siret": "41496207600041",
      "status": "M",
      "store_name": "Boulangerie de l'Olivier",
      "street": "route Departementale 37",
      "street_number": 562,
      "turnover": 638000,
      "user_id": 185,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST BERTHEVIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 944085,
      "email": null,
      "id": 15948,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010009704252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243692599",
      "postal_code": "53940",
      "siren": "384606703",
      "siret": "38460670300021",
      "status": "G",
      "store_name": "Boulangerie la Tentation",
      "street": "avenue de la Liberation",
      "street_number": 63,
      "turnover": 430000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "APT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 944259,
      "email": null,
      "id": 38171,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-22412517",
      "postal_code": "84400",
      "siren": "351603162",
      "siret": "35160316200022",
      "status": "P",
      "store_name": "Snack la Fringale",
      "street": "rue Saint Pierre",
      "street_number": 36,
      "turnover": 73000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAVAILLON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 944260,
      "email": null,
      "id": 15958,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-85491566",
      "postal_code": "84300",
      "siren": "483856365",
      "siret": "48385636500018",
      "status": "G",
      "store_name": "Boulangerie la Fromenterie",
      "street": "avenue du Pont",
      "street_number": 110,
      "turnover": 352754,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAUREPAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 944304,
      "email": null,
      "id": 2009,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-30660092",
      "postal_code": "78310",
      "siren": "582150041",
      "siret": "58215004100827",
      "status": "EMPTY_STATUS",
      "store_name": "Pomme De Pain",
      "street": "avenue Gutenberg",
      "street_number": null,
      "turnover": null,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NEUVIC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 880154,
      "email": null,
      "id": 6705,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-55958152",
      "postal_code": "19160",
      "siren": "418817961",
      "siret": "41881796100018",
      "status": "M",
      "store_name": "Boulangerie Leger",
      "street": "rue de l Eglise",
      "street_number": null,
      "turnover": 180000,
      "user_id": 196,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": "2011-11-25",
      "closing_days_ids": [],
      "datlinq_code": 944533,
      "email": "leconcertgourmand@Orange.fr",
      "id": 15969,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010017865252110",
      "location_areas_ids": [],
      "owner_name": "Chevalier",
      "phone_number": "+33 320510815",
      "postal_code": "59800",
      "siren": "538332081",
      "siret": "53833208100016",
      "status": "G",
      "store_name": "Patisserie Boulangerie le Concert Gourmand",
      "street": "Rue de la Collégiale",
      "street_number": 7,
      "turnover": 415000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAIZIERES LES METZ",
      "client_creation_date": "2014-03-01",
      "closing_days_ids": [],
      "datlinq_code": 946290,
      "email": null,
      "id": 16030,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Benoît Merlin",
      "phone_number": "+33 387802595",
      "postal_code": "57280",
      "siren": "341092393",
      "siret": "34109239300022",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Merlin",
      "street": "Grand Rue",
      "street_number": 59,
      "turnover": 610000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAVAL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 946300,
      "email": null,
      "id": 16032,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243531585",
      "postal_code": "53000",
      "siren": "420321408",
      "siret": "42032140800023",
      "status": "M",
      "store_name": "Boulangerie Ribot",
      "street": "rue Echelle Marteau",
      "street_number": 6,
      "turnover": 150000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DIVES SUR MER",
      "client_creation_date": "2007-03-03",
      "closing_days_ids": [],
      "datlinq_code": 946630,
      "email": null,
      "id": 16078,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005234252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231247846",
      "postal_code": "14160",
      "siren": "494601487",
      "siret": "49460148700015",
      "status": "M",
      "store_name": "La Fournee des Delices",
      "street": "rue du General de Gaulle",
      "street_number": 95,
      "turnover": 641100,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DUNKERQUE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 946635,
      "email": null,
      "id": 32733,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016656252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328669748",
      "postal_code": "59140",
      "siren": "333840254",
      "siret": "33384025400010",
      "status": "P",
      "store_name": "Patisserie au Petit Mitron",
      "street": "place de la Gare",
      "street_number": 14,
      "turnover": 150000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": "2006-04-26",
      "closing_days_ids": [],
      "datlinq_code": 946806,
      "email": null,
      "id": 16091,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320061612",
      "postal_code": "59800",
      "siren": "423696574",
      "siret": "42369657400023",
      "status": "M",
      "store_name": "Boulangerie Debuiche",
      "street": "Rue du Faubourg de Roubaix",
      "street_number": 160,
      "turnover": 420000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTPELLIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 946843,
      "email": null,
      "id": 2040,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467751141",
      "postal_code": "34080",
      "siren": "488510876",
      "siret": "48851087600011",
      "status": "EMPTY_STATUS",
      "store_name": "Salade Rit",
      "street": "place Pierre Renaudel",
      "street_number": 3,
      "turnover": 79000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BULLY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 946981,
      "email": null,
      "id": 16113,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0172G001",
      "location_areas_ids": [],
      "owner_name": "Coquard",
      "phone_number": "04-74013632",
      "postal_code": "69210",
      "siren": "329511547",
      "siret": "32951154700021",
      "status": "M",
      "store_name": "Fournil des Pierres Dorées",
      "street": "route de Paris",
      "street_number": 30,
      "turnover": 350000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLICHY",
      "client_creation_date": "7-3-2014",
      "closing_days_ids": [],
      "datlinq_code": 947357,
      "email": "lesmignardises92@gmail.com",
      "id": 16145,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0742E001",
      "location_areas_ids": [],
      "owner_name": "AHMED CHMOURK",
      "phone_number": "01-47392858",
      "postal_code": "92110",
      "siren": "491043931",
      "siret": "49104393100014",
      "status": "M",
      "store_name": "Boulangerie les Mignardises",
      "street": "rue de Neuilly",
      "street_number": 70,
      "turnover": 500000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RETHEL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 947370,
      "email": "sarlbecue@wanadoo.fr",
      "id": 16147,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010161252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 324383323",
      "postal_code": "08300",
      "siren": "392049227",
      "siret": "39204922700011",
      "status": "M",
      "store_name": "Becue Boulangerie",
      "street": "place Hourtoule",
      "street_number": 2,
      "turnover": 539616,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PUID",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 947576,
      "email": null,
      "id": 32947,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "63280001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-29410539",
      "postal_code": "88210",
      "siren": "404067720",
      "siret": "40406772000015",
      "status": "P",
      "store_name": "Auberge du Raybois",
      "street": "Haut du Village",
      "street_number": 15,
      "turnover": 1000,
      "user_id": 109,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTERRE",
      "client_creation_date": "1-1-2014",
      "closing_days_ids": [],
      "datlinq_code": 947621,
      "email": null,
      "id": 16159,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "2158C001",
      "location_areas_ids": [],
      "owner_name": "HOUCINE SMIDA",
      "phone_number": "01-71974909",
      "postal_code": "92000",
      "siren": "800309163",
      "siret": "80030916300015",
      "status": "P",
      "store_name": "Boulangerie Delices de Nanterre",
      "street": "avenue du General Gallieni",
      "street_number": 6,
      "turnover": 250000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 947686,
      "email": null,
      "id": 2056,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 607084461",
      "postal_code": "62200",
      "siren": "400881835",
      "siret": "40088183500054",
      "status": "EMPTY_STATUS",
      "store_name": "Confiserie De Tradition",
      "street": "rue de Lille",
      "street_number": 48,
      "turnover": null,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BESANCON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 949082,
      "email": null,
      "id": 16210,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010505252110",
      "location_areas_ids": [],
      "owner_name": "RICOT",
      "phone_number": "+33 381808354",
      "postal_code": "25000",
      "siren": "524125614",
      "siret": "52412561400015",
      "status": "G",
      "store_name": "La Passion des Pains",
      "street": "rue de Belfort",
      "street_number": 67,
      "turnover": 535000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AMIENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 949580,
      "email": null,
      "id": 32743,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "A3101001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-22926515",
      "postal_code": "80000",
      "siren": "441720364",
      "siret": "44172036400021",
      "status": "P",
      "store_name": "Sandwicherie Comptoir les Encas",
      "street": "place Rene Goblet",
      "street_number": 45,
      "turnover": 60000,
      "user_id": 121,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": "2005-05-19",
      "closing_days_ids": [],
      "datlinq_code": 949905,
      "email": null,
      "id": 16240,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320978995",
      "postal_code": "59800",
      "siren": "434764957",
      "siret": "43476495700024",
      "status": "P",
      "store_name": "Boulangerie le Kennedy",
      "street": "Avenue du Président John F. Kennedy",
      "street_number": 43,
      "turnover": 160000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 950189,
      "email": null,
      "id": 2088,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561235830",
      "postal_code": "31200",
      "siren": "318906591",
      "siret": "31890659102252",
      "status": "EMPTY_STATUS",
      "store_name": "La Brioche Doree",
      "street": "chemin de Gabardie",
      "street_number": null,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RAMBOUILLET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 950408,
      "email": null,
      "id": 2093,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-34857351",
      "postal_code": "78120",
      "siren": "325509214",
      "siret": "32550921400020",
      "status": "EMPTY_STATUS",
      "store_name": "La Croissanterie",
      "street": "Centre Commercial Du Bel Air",
      "street_number": null,
      "turnover": null,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LANNION",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 950470,
      "email": null,
      "id": 2094,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-96483215",
      "postal_code": "22300",
      "siren": "322314410",
      "siret": "32231441000075",
      "status": "EMPTY_STATUS",
      "store_name": "La Croissanterie",
      "street": "Route De Perros",
      "street_number": null,
      "turnover": null,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST ETIENNE DE TULMONT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 950478,
      "email": null,
      "id": 16257,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010025401252140",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 563645043",
      "postal_code": "82410",
      "siren": "332555325",
      "siret": "33255532500049",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Maison Paga",
      "street": "rue du Tulmonenc",
      "street_number": 31,
      "turnover": null,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NIMES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 950611,
      "email": "lacroissanterie@lacroissanterie.fr",
      "id": 2102,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466646782",
      "postal_code": "30900",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "La Croissanterie",
      "street": "rue Andre Dupont",
      "street_number": 116,
      "turnover": 500000,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "OUISTREHAM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 950658,
      "email": null,
      "id": 46578,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231360140",
      "postal_code": "14150",
      "siren": "480400001",
      "siret": "48040000100016",
      "status": "P",
      "store_name": "Snack l'Americain",
      "street": "esplanade Alexandre Lofi",
      "street_number": null,
      "turnover": 50000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PLAISIR",
      "client_creation_date": "29/12/2006",
      "closing_days_ids": [],
      "datlinq_code": 950924,
      "email": null,
      "id": 16268,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ANCELET",
      "phone_number": "01-34810505",
      "postal_code": "78370",
      "siren": "491200119",
      "siret": "49120011900015",
      "status": "G",
      "store_name": "Boulangerie le Fournil A l'ancienne",
      "street": "centre Commercial Grand Plaisir",
      "street_number": null,
      "turnover": 728800,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SEDAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 878924,
      "email": null,
      "id": 5653,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 324291290",
      "postal_code": "08200",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Moullois Franck",
      "street": "place Turenne",
      "street_number": null,
      "turnover": 260000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ELBEUF",
      "client_creation_date": "2000-01-01",
      "closing_days_ids": [],
      "datlinq_code": 951085,
      "email": null,
      "id": 32749,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012087252110",
      "location_areas_ids": [],
      "owner_name": "PIERRE SYLVIE",
      "phone_number": "+33 235780664",
      "postal_code": "76500",
      "siren": "490286481",
      "siret": "49028648100018",
      "status": "P",
      "store_name": "Boulangerie Croq Chaud",
      "street": "rue des Martyrs",
      "street_number": 15,
      "turnover": 100000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ECULLY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 951622,
      "email": null,
      "id": 2125,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78331199",
      "postal_code": "69130",
      "siren": "310097092",
      "siret": "31009709201184",
      "status": "P",
      "store_name": "La Brioche Doree",
      "street": "chemin du Perollier",
      "street_number": null,
      "turnover": 387000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUVAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 951652,
      "email": null,
      "id": 16310,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-44452648",
      "postal_code": "60000",
      "siren": "493576094",
      "siret": "49357609400012",
      "status": "G",
      "store_name": "Boulangerie de la Cathedrale",
      "street": "rue Saint Pierre",
      "street_number": 71,
      "turnover": 240000,
      "user_id": 78,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TROYES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 952544,
      "email": null,
      "id": 16341,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010033100252110",
      "location_areas_ids": [],
      "owner_name": "GOBLET",
      "phone_number": "+33 325467914",
      "postal_code": "10000",
      "siren": "503035792",
      "siret": "50303579200012",
      "status": "P",
      "store_name": "Boulangerie Croustillant",
      "street": "Rue des Bas Trevois",
      "street_number": 23,
      "turnover": 122100,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AIRE SUR LA LYS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 952660,
      "email": null,
      "id": 16345,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BOURDON",
      "phone_number": "+33 321390048",
      "postal_code": "62120",
      "siren": "484055595",
      "siret": "48405559500017",
      "status": "M",
      "store_name": "Boulangerie Le Fournil De La Lys",
      "street": "rue du Bourg",
      "street_number": 38,
      "turnover": 200000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VITRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 952699,
      "email": null,
      "id": 2141,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-99728241",
      "postal_code": "35500",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Mie CalineÌÀ",
      "street": "Rue Garengeot",
      "street_number": 23,
      "turnover": null,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAUREPAS",
      "client_creation_date": "23-8-2006",
      "closing_days_ids": [],
      "datlinq_code": 952870,
      "email": null,
      "id": 16354,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R7150001",
      "location_areas_ids": [],
      "owner_name": "IMLAHI",
      "phone_number": "01-30666320",
      "postal_code": "78310",
      "siren": "491484879",
      "siret": "49148487900011",
      "status": "G",
      "store_name": "Boulangerie la Panetière aux Mille et une Saveur",
      "street": "place du Doubs",
      "street_number": 7,
      "turnover": 837300,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CESTAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953071,
      "email": null,
      "id": 16363,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "3189E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56215707",
      "postal_code": "33610",
      "siren": "453736068",
      "siret": "45373606800033",
      "status": "M",
      "store_name": "Boulangerie Le Moulin De Cestas",
      "street": "rue Valmon Agard",
      "street_number": 2,
      "turnover": 450000,
      "user_id": 206,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COMPIEGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953237,
      "email": null,
      "id": 16366,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R5266001",
      "location_areas_ids": [],
      "owner_name": "HAMARD GILLES",
      "phone_number": "03-44206478",
      "postal_code": "60200",
      "siren": "388712135",
      "siret": "38871213500028",
      "status": "G",
      "store_name": "Boulangerie la Seigneurie",
      "street": "rue des Capucins",
      "street_number": 14,
      "turnover": 800000,
      "user_id": 311,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURBEVOIE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953332,
      "email": null,
      "id": 2148,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47881940",
      "postal_code": "92400",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "Centre Commercial Charras",
      "street_number": null,
      "turnover": null,
      "user_id": 94,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953364,
      "email": null,
      "id": 32757,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013071252110",
      "location_areas_ids": [],
      "owner_name": "Pérez",
      "phone_number": "+33 561990126",
      "postal_code": "31000",
      "siren": "442398277",
      "siret": "44239827700024",
      "status": "G",
      "store_name": "Briocherie Des 3J",
      "street": "Rue De Bayard",
      "street_number": 70,
      "turnover": 860000,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953456,
      "email": null,
      "id": 16372,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010009832252110",
      "location_areas_ids": [],
      "owner_name": "SARRUS PHILIPPE",
      "phone_number": "+33 561213564",
      "postal_code": "31000",
      "siren": "415111665",
      "siret": "41511166500014",
      "status": "P",
      "store_name": "Patisserie le Gateautier",
      "street": "avenue Paul Sejourne",
      "street_number": 1,
      "turnover": 299000,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SCHWEIGHOUSE SUR MODER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953763,
      "email": null,
      "id": 16388,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "LAMEGER",
      "phone_number": "03-88727654",
      "postal_code": "67590",
      "siren": "400058913",
      "siret": "40005891300015",
      "status": "M",
      "store_name": "Boulangerie L'amandine",
      "street": "rue du General de Gaulle",
      "street_number": 42,
      "turnover": 450000,
      "user_id": 112,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AVIGNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953802,
      "email": null,
      "id": 2153,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "84000",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "Le Fournil des Roues",
      "street": "rue des Teinturiers",
      "street_number": 65,
      "turnover": 230000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE THOR",
      "client_creation_date": "01/2000",
      "closing_days_ids": [],
      "datlinq_code": 953857,
      "email": "sarl.gourmandise@laposte.net",
      "id": 16391,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Roisse",
      "phone_number": "04-90338795",
      "postal_code": "84250",
      "siren": "429036098",
      "siret": "42903609800029",
      "status": "M",
      "store_name": "Boulangerie Pains Et Gourmandises",
      "street": "place du 8 Mai et du 11 Novembre",
      "street_number": 6,
      "turnover": 281949,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PERRAY EN YVELINES",
      "client_creation_date": "11/09/2014",
      "closing_days_ids": [],
      "datlinq_code": 954077,
      "email": null,
      "id": 16402,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-34848005",
      "postal_code": "78610",
      "siren": "479507535",
      "siret": "479507535",
      "status": "P",
      "store_name": "Boulangerie Cosemans",
      "street": "rue de Chartres",
      "street_number": 2,
      "turnover": 380000,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 954301,
      "email": null,
      "id": 2162,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91672410",
      "postal_code": "13008",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "place Ernest Delibes",
      "street_number": 1,
      "turnover": null,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GENECH",
      "client_creation_date": "1993-06-11",
      "closing_days_ids": [],
      "datlinq_code": 954495,
      "email": null,
      "id": 16445,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0010011734252110",
      "location_areas_ids": [],
      "owner_name": "MONNIEZ CHRISTOPHE",
      "phone_number": "+33 320845025",
      "postal_code": "59242",
      "siren": "391297389",
      "siret": "39129738900010",
      "status": "G",
      "store_name": "Boulangerie au Moulin",
      "street": "rue de la Liberation",
      "street_number": 1118,
      "turnover": 375000,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THUMERIES",
      "client_creation_date": "2000-11-15",
      "closing_days_ids": [],
      "datlinq_code": 954521,
      "email": null,
      "id": 16452,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010002674252110",
      "location_areas_ids": [],
      "owner_name": "IDZIK STANISLAS",
      "phone_number": "+33 320869114",
      "postal_code": "59239",
      "siren": "433504990",
      "siret": "43350499000014",
      "status": "G",
      "store_name": "Boulangerie Idzik",
      "street": "rue Leon Blum",
      "street_number": 3,
      "turnover": 340000,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 954920,
      "email": null,
      "id": 16493,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93621039",
      "postal_code": "6300",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Multari",
      "street": "boulevard Jean Jaures",
      "street_number": 8,
      "turnover": null,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MULSANNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 955366,
      "email": null,
      "id": 16506,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010015852252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243428499",
      "postal_code": "72230",
      "siren": "437727191",
      "siret": "43772719100011",
      "status": "G",
      "store_name": "Boulangerie Dupont",
      "street": "centre Commercial des Rocheres",
      "street_number": null,
      "turnover": 450000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BALARUC LE VIEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 955645,
      "email": null,
      "id": 2190,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467691064",
      "postal_code": "34540",
      "siren": "324355205",
      "siret": "32435520500034",
      "status": "G",
      "store_name": "La Croissanterie",
      "street": "centre Commercial Carrefour",
      "street_number": null,
      "turnover": 800000,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 955725,
      "email": null,
      "id": 16513,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-37706731",
      "postal_code": "69007",
      "siren": "511242679",
      "siret": "51124267900013",
      "status": "P",
      "store_name": "Croq Pain",
      "street": "Place Gabriel Peri",
      "street_number": 12,
      "turnover": 140000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THIAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 955964,
      "email": null,
      "id": 2195,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45600458",
      "postal_code": "94320",
      "siren": "508892593",
      "siret": "50889259300015",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "centre commercial Carrefour",
      "street_number": null,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEFRANCHE SUR SAONE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 956554,
      "email": null,
      "id": 2222,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-74039744",
      "postal_code": "69400",
      "siren": "437589377",
      "siret": "43758937700021",
      "status": "EMPTY_STATUS",
      "store_name": "Au Fournil",
      "street": "rue Nationale",
      "street_number": 576,
      "turnover": null,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 956610,
      "email": null,
      "id": 2224,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235423613",
      "postal_code": "76600",
      "siren": "403052111",
      "siret": "40305211102079",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "centre commercial Rene Coty",
      "street_number": null,
      "turnover": null,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 956860,
      "email": null,
      "id": 2229,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45963515",
      "postal_code": "75009",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Brioche Doree",
      "street": "Rue De La Chaussee D Antin",
      "street_number": 56,
      "turnover": null,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "2002",
      "closing_days_ids": [],
      "datlinq_code": 957473,
      "email": null,
      "id": 2253,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1018F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78620163",
      "postal_code": "69003",
      "siren": "444340202",
      "siret": "44434020200019",
      "status": "P",
      "store_name": "Resto Confi",
      "street": "rue Villeroy",
      "street_number": 34,
      "turnover": 63000,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LABEGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 957506,
      "email": "toulouselabege@classcroute.com",
      "id": 41498,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561005050",
      "postal_code": "31670",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Class'croute",
      "street": "rue Pierre Gille de Gennes",
      "street_number": 1,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARCUEIL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 957594,
      "email": null,
      "id": 2257,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-57218939",
      "postal_code": "94110",
      "siren": "321716821",
      "siret": "32171682100053",
      "status": "EMPTY_STATUS",
      "store_name": "La Croissanterie",
      "street": "Centre commerciale Vache Noire",
      "street_number": null,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 957713,
      "email": null,
      "id": 16584,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42099968",
      "postal_code": "75018",
      "siren": "380214361",
      "siret": "38021436100012",
      "status": "P",
      "store_name": "Boulangerie Messedi",
      "street": "Rue Des Roses",
      "street_number": 22,
      "turnover": 350000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "11/2004",
      "closing_days_ids": [],
      "datlinq_code": 957776,
      "email": null,
      "id": 16589,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-46368711",
      "postal_code": "75020",
      "siren": "479467755",
      "siret": "47946775500019",
      "status": "G",
      "store_name": "Patisserie C B 4",
      "street": "avenue Gambetta",
      "street_number": 89,
      "turnover": 700000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 957807,
      "email": null,
      "id": 36915,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-24830071",
      "postal_code": "75012",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Subway",
      "street": "Rue De Reuilly",
      "street_number": 85,
      "turnover": null,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FOUQUIERES LES LENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958019,
      "email": null,
      "id": 32772,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016883252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321438976",
      "postal_code": "62740",
      "siren": "432442226",
      "siret": "43244222600010",
      "status": "P",
      "store_name": "Au Bon Accueil",
      "street": "Rue Roger Salengro",
      "street_number": 53,
      "turnover": 70000,
      "user_id": 416,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GEROGES DE DIDONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958075,
      "email": null,
      "id": 16595,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "LI527001",
      "location_areas_ids": [],
      "owner_name": "Desgris",
      "phone_number": "05-46939238",
      "postal_code": "17110",
      "siren": "325667442",
      "siret": "32566744200066",
      "status": "G",
      "store_name": "Boulangerie Degris",
      "street": "boulevard du Général Fresnal",
      "street_number": 18,
      "turnover": 650000,
      "user_id": 152,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "POITIERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958089,
      "email": null,
      "id": 2266,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-23022487",
      "postal_code": "86000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Mie CalineÌÀ",
      "street": "avenue De Paris",
      "street_number": 215,
      "turnover": null,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GOLBEY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958517,
      "email": null,
      "id": 16612,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Vinter",
      "phone_number": "03-29679554",
      "postal_code": "88190",
      "siren": "504963711",
      "siret": "50496371100024",
      "status": "M",
      "store_name": "Boulangerie Bothine",
      "street": "rue du General Leclerc",
      "street_number": 73,
      "turnover": 850000,
      "user_id": 109,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JOUY AUX ARCHES",
      "client_creation_date": "2014-01-01",
      "closing_days_ids": [],
      "datlinq_code": 958611,
      "email": null,
      "id": 16617,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0955E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 619709484",
      "postal_code": "57130",
      "siren": "800501652",
      "siret": "49949357500017",
      "status": "M",
      "store_name": "Boulangerie Histoire De Pains",
      "street": "Route De Metz",
      "street_number": 57,
      "turnover": 650000,
      "user_id": 395,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTPELLIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958756,
      "email": null,
      "id": 41504,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467723525",
      "postal_code": "34090",
      "siren": "434376653",
      "siret": "43437665300011",
      "status": "P",
      "store_name": "Boulangerie les Delices de Rimbaud",
      "street": "place Emile Combes",
      "street_number": 17,
      "turnover": 200000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROCHEFORT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958844,
      "email": null,
      "id": 33302,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "22172001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46832338",
      "postal_code": "17300",
      "siren": "514847888",
      "siret": "51484788800013",
      "status": "P",
      "store_name": "Snack Look Pizza",
      "street": "rue Gaston Baril",
      "street_number": 1,
      "turnover": 50000,
      "user_id": 155,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTBONNOT ST MARTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958856,
      "email": null,
      "id": 47649,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76448366",
      "postal_code": "38330",
      "siren": "492431168",
      "siret": "49243116800029",
      "status": "P",
      "store_name": "Boulangerie Epicuria",
      "street": "avenue de l Europe",
      "street_number": 1323,
      "turnover": 1,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958993,
      "email": null,
      "id": 16636,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40484850",
      "postal_code": "44000",
      "siren": "422051698",
      "siret": "42205169800021",
      "status": "P",
      "store_name": "La Boulangerie",
      "street": "allee Duquesne",
      "street_number": 4,
      "turnover": 264000,
      "user_id": 144,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TRITH ST LEGER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 959134,
      "email": null,
      "id": 38176,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010027390252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 662531252",
      "postal_code": "59125",
      "siren": "394169288",
      "siret": null,
      "status": "G",
      "store_name": "Sandwicherie aux Delices Trithois",
      "street": "rue de l Egalite",
      "street_number": null,
      "turnover": 375000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FROUZINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 959171,
      "email": null,
      "id": 16644,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561723493",
      "postal_code": "31270",
      "siren": "382403343",
      "siret": "38240334300033",
      "status": "P",
      "store_name": "Boulangerie Karin",
      "street": "avenue des Pyrenees",
      "street_number": 8,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VERSAILLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 959854,
      "email": null,
      "id": 32785,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R6141001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "78000",
      "siren": "487675969",
      "siret": "48767596900017",
      "status": "M",
      "store_name": "Boualngerie chez Juliette",
      "street": "rue Ducis",
      "street_number": 1,
      "turnover": 300000,
      "user_id": 96,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 959983,
      "email": null,
      "id": 16671,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "LUGOL JEAN MARC",
      "phone_number": "+33 561225905",
      "postal_code": "31000",
      "siren": "511725459",
      "siret": "51172545900016",
      "status": "M",
      "store_name": "Boulangerie O Délices d'Amandine",
      "street": "rue Leon Gambetta",
      "street_number": 17,
      "turnover": 522996,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 959997,
      "email": null,
      "id": 2305,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "75018",
      "siren": "479303836",
      "siret": "47930383600015",
      "status": "P",
      "store_name": "Croque Minute Gericot",
      "street": "rue du Mont Cenis",
      "street_number": 9,
      "turnover": 1000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SARZEAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960145,
      "email": null,
      "id": 32787,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "24826001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-97482247",
      "postal_code": "56370",
      "siren": "330405176",
      "siret": "33040517600034",
      "status": "M",
      "store_name": "Le Galichan",
      "street": "rue de la Corderie",
      "street_number": 8,
      "turnover": 150000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PRADES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960261,
      "email": null,
      "id": 16679,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468964410",
      "postal_code": "66500",
      "siren": "410865356",
      "siret": "0",
      "status": "G",
      "store_name": "Boulangerie la Justinette",
      "street": "rue Jean Jaures",
      "street_number": 10,
      "turnover": 310000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CADOLIVE",
      "client_creation_date": "10-11-2005",
      "closing_days_ids": [],
      "datlinq_code": 960268,
      "email": null,
      "id": 16683,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "bertochini",
      "phone_number": "000-000",
      "postal_code": "13950",
      "siren": "487530628",
      "siret": "48753062800022",
      "status": "P",
      "store_name": "Boulangerie Au Coin Provencal",
      "street": "Rue Du Village",
      "street_number": 12,
      "turnover": 139000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COLOMIERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960282,
      "email": null,
      "id": 16692,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013236252110",
      "location_areas_ids": [],
      "owner_name": "PONS",
      "phone_number": "+33 561783603",
      "postal_code": "31770",
      "siren": "413955055",
      "siret": "41395505500046",
      "status": "G",
      "store_name": "Boulangerie La Fougasse",
      "street": "rue d Auch",
      "street_number": 2,
      "turnover": 1431661,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ESPIRA DE L AGLY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960288,
      "email": null,
      "id": 16696,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010004926252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468622017",
      "postal_code": "66600",
      "siren": "507392967",
      "siret": "50739296700018",
      "status": "P",
      "store_name": "Boulangerie de l'Agly",
      "street": "rue du 4 Septembre",
      "street_number": 28,
      "turnover": 192000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BRISSAC LOIRE AUBANCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960301,
      "email": null,
      "id": 16704,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241912908",
      "postal_code": "49320",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie de l'Aubance",
      "street": "place des Freres de Montgolfier",
      "street_number": 4,
      "turnover": 320000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATILLON SUR CHALARONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960302,
      "email": null,
      "id": 16705,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467818563",
      "postal_code": "01400",
      "siren": "494262587",
      "siret": "49426258700012",
      "status": "P",
      "store_name": "Boulangerie aux Plaisirs Gourmands",
      "street": "rue Barrit",
      "street_number": 4,
      "turnover": 80000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA CROIX VALMER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960595,
      "email": null,
      "id": 16715,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010015248252110",
      "location_areas_ids": [],
      "owner_name": "CHRISTOPHE ROUX",
      "phone_number": "+33 494795797",
      "postal_code": "83420",
      "siren": "444892186",
      "siret": "44489218600057",
      "status": "M",
      "store_name": "Boulangerie Odysee Bleue (Roux)",
      "street": "rue Louis Martin",
      "street_number": 159,
      "turnover": 450000,
      "user_id": 451,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JUVISY SUR ORGE",
      "client_creation_date": "25-5-1992",
      "closing_days_ids": [],
      "datlinq_code": 960875,
      "email": null,
      "id": 32789,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1546C001",
      "location_areas_ids": [],
      "owner_name": "LOUATI Helene",
      "phone_number": "01-69217300",
      "postal_code": "91260",
      "siren": "387560873",
      "siret": "38756087300011",
      "status": "P",
      "store_name": "Intermarché Courdim",
      "street": "rue Camille Desmoulins",
      "street_number": 27,
      "turnover": 270600,
      "user_id": 84,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST NICOLAS LES CITEAUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960895,
      "email": null,
      "id": 16718,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010635252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 380613723",
      "postal_code": "21700",
      "siren": "794623827",
      "siret": "79462382700019",
      "status": "P",
      "store_name": "Boulangerie Remy",
      "street": "route de Citeaux",
      "street_number": 3,
      "turnover": 153000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA ROQUE D ANTHERON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961017,
      "email": null,
      "id": 16720,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-42505184",
      "postal_code": "13640",
      "siren": "349787432",
      "siret": "34978743200021",
      "status": "P",
      "store_name": "Au Peche Mignon",
      "street": "boulevard Adam de Craponne",
      "street_number": 18,
      "turnover": 30000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALLEROY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961199,
      "email": null,
      "id": 16722,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 382462117",
      "postal_code": "54910",
      "siren": "423227610",
      "siret": "42322761000015",
      "status": "P",
      "store_name": "Boulangerie Guilpain au Bon Pain",
      "street": "avenue Charles de Gaulle",
      "street_number": 52,
      "turnover": 200000,
      "user_id": 393,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHABLIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961202,
      "email": null,
      "id": 16723,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010000096252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386421028",
      "postal_code": "89800",
      "siren": "493259964",
      "siret": "49325996400010",
      "status": "G",
      "store_name": "Boulangerie Le Pilier De Chablis",
      "street": "rue du Mal de Lattre de Tassigny",
      "street_number": 6,
      "turnover": 440000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BERGUES",
      "client_creation_date": "2000-01-01",
      "closing_days_ids": [],
      "datlinq_code": 961203,
      "email": null,
      "id": 16724,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Franchois ",
      "phone_number": "+33 328686212",
      "postal_code": "59380",
      "siren": "524110558",
      "siret": "52411055800011",
      "status": "M",
      "store_name": "Boulangerie Franchois",
      "street": "rue Lamartine",
      "street_number": 6,
      "turnover": 420000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "UGINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961210,
      "email": "florian.allais@outlook.fr",
      "id": 258,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "SF023001",
      "location_areas_ids": [],
      "owner_name": "Allais",
      "phone_number": "04-79375760",
      "postal_code": "73400",
      "siren": "452065618",
      "siret": "45206561800012",
      "status": "P",
      "store_name": "Boulangerie La Floraline",
      "street": "avenue Paul Girod",
      "street_number": 40,
      "turnover": 220000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROMANS SUR ISERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961215,
      "email": null,
      "id": 16728,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-75020636",
      "postal_code": "26100",
      "siren": "442272381",
      "siret": "44227238100017",
      "status": "P",
      "store_name": "Boulangerie aux Galets de l'Isere",
      "street": "place Maurice Faure",
      "street_number": 7,
      "turnover": 120000,
      "user_id": 170,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GOBAIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961222,
      "email": null,
      "id": 16731,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 323528057",
      "postal_code": "02410",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie au Bon Pain",
      "street": "rue Lucas de Nehou",
      "street_number": 9,
      "turnover": 180000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURNEFEUILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961224,
      "email": null,
      "id": 16733,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561064906",
      "postal_code": "31170",
      "siren": "379498868",
      "siret": "37949886800023",
      "status": "P",
      "store_name": "Boulangerie le Petit Coquin",
      "street": "rue Gaston Doumergue",
      "street_number": 94,
      "turnover": 248800,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CRAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961227,
      "email": null,
      "id": 16735,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76077207",
      "postal_code": "38210",
      "siren": "451711428",
      "siret": "45171142800016",
      "status": "M",
      "store_name": "Boulangerie Maison Franchini",
      "street": "chemin de Montferrier",
      "street_number": 699,
      "turnover": 825000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLERMONT FERRAND",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961228,
      "email": null,
      "id": 16736,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ROUX",
      "phone_number": "04-73912572",
      "postal_code": "63000",
      "siren": "451323869",
      "siret": "45132386900011",
      "status": "P",
      "store_name": "Boulangerie La Pyramide",
      "street": "rue Ballainvilliers",
      "street_number": 48,
      "turnover": 177000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VENCE",
      "client_creation_date": "2003-10-22",
      "closing_days_ids": [],
      "datlinq_code": 961232,
      "email": null,
      "id": 16740,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93580564",
      "postal_code": "06140",
      "siren": "450656137",
      "siret": "45065613700012",
      "status": "P",
      "store_name": "Boulangerie Aux Saveurs Retrouvees",
      "street": "avenue Marechal Foch",
      "street_number": null,
      "turnover": 170000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST VICTORET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961233,
      "email": null,
      "id": 16741,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-42104302",
      "postal_code": "13730",
      "siren": "441207883",
      "siret": "44120788300014",
      "status": "M",
      "store_name": "Boulangerie Maitre Crousti",
      "street": "avenue Jacque Prevert",
      "street_number": null,
      "turnover": 513000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAMPIGNY SUR MARNE",
      "client_creation_date": "2012",
      "closing_days_ids": [],
      "datlinq_code": 961239,
      "email": null,
      "id": 16744,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0266C001",
      "location_areas_ids": [],
      "owner_name": "Hartoun",
      "phone_number": "01-45160056",
      "postal_code": "94500",
      "siren": "450800644",
      "siret": "45080064400012",
      "status": "G",
      "store_name": "Boulangerie La Rose Des Sables",
      "street": "Place rodin",
      "street_number": 2,
      "turnover": 420000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUMES DE VENISE",
      "client_creation_date": "19-7-2005",
      "closing_days_ids": [],
      "datlinq_code": 961251,
      "email": null,
      "id": 16754,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "bessac",
      "phone_number": "09-60061155",
      "postal_code": "84190",
      "siren": "343101457",
      "siret": "34310145700038",
      "status": "P",
      "store_name": "Boulangerie Bessac",
      "street": "avenue Raspail",
      "street_number": null,
      "turnover": 218000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PLATS",
      "client_creation_date": "2005-01-01",
      "closing_days_ids": [],
      "datlinq_code": 961255,
      "email": null,
      "id": 16756,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 475066818",
      "postal_code": "07300",
      "siren": "394789382",
      "siret": "39478938200022",
      "status": "P",
      "store_name": "Boulangerie Bruniere",
      "street": "le Village",
      "street_number": null,
      "turnover": 130000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GERGY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961256,
      "email": null,
      "id": 16757,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 385916198",
      "postal_code": "71590",
      "siren": "821232899",
      "siret": "82123289900012",
      "status": "P",
      "store_name": "Boulanger Secret des Pains",
      "street": "rue Louis Loranchet",
      "street_number": 2,
      "turnover": 150000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PERPIGNAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961257,
      "email": null,
      "id": 16758,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005959252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468347554",
      "postal_code": "66000",
      "siren": "801868845",
      "siret": "80186884500026",
      "status": "M",
      "store_name": "Boulangerie Au Levain D Helios Les Pains D",
      "street": "boulevard Georges Clemenceau",
      "street_number": 21,
      "turnover": 200000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PLOUMILLIAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 880362,
      "email": null,
      "id": 6880,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "23305001",
      "location_areas_ids": [],
      "owner_name": "ROLLAND DAVID",
      "phone_number": "02-96354438",
      "postal_code": "22300",
      "siren": "442917662",
      "siret": "44291766200011",
      "status": "P",
      "store_name": "Boulangerie au Pain Plie",
      "street": "rue Croix Oges",
      "street_number": 6,
      "turnover": 272854,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LABOURSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961265,
      "email": null,
      "id": 16765,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011825252110",
      "location_areas_ids": [],
      "owner_name": "BIGET",
      "phone_number": "+33 321012773",
      "postal_code": "62113",
      "siren": "492858980",
      "siret": "49285898000021",
      "status": "P",
      "store_name": "Boulangerie La Bourse Aux Pains",
      "street": "rue Achille Larue",
      "street_number": 14,
      "turnover": 140000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLECHENEVE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961273,
      "email": null,
      "id": 16768,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-74701586",
      "postal_code": "69770",
      "siren": "380799494",
      "siret": "38079949400022",
      "status": "P",
      "store_name": "Lyonnaise de Boulangerie Gastronomique",
      "street": "parc d Activites",
      "street_number": null,
      "turnover": 17000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CARCASSONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961275,
      "email": null,
      "id": 16770,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468252701",
      "postal_code": "11000",
      "siren": "424358141",
      "siret": "42435814100010",
      "status": "M",
      "store_name": "Boulangerie Bimas",
      "street": "avenue Arthur Mullot",
      "street_number": 7,
      "turnover": 309000,
      "user_id": 440,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST SERNIN SUR RANCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961277,
      "email": null,
      "id": 16772,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "AMALRIC MARIE FRANCOISE",
      "phone_number": "+33 565996006",
      "postal_code": "12380",
      "siren": "414209742",
      "siret": "41420974200017",
      "status": "M",
      "store_name": "Boulangerie Maison Nespoulous",
      "street": "place du Fort",
      "street_number": null,
      "turnover": 362000,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST PORQUIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961292,
      "email": null,
      "id": 16778,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010030926252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 563687575",
      "postal_code": "82700",
      "siren": "352996383",
      "siret": "35299638300035",
      "status": "M",
      "store_name": "Boulangerie Chafi Nordine",
      "street": "Route départementale 813",
      "street_number": null,
      "turnover": 290000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SALINDRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961297,
      "email": null,
      "id": 16782,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466856178",
      "postal_code": "30340",
      "siren": "402390744",
      "siret": "40239074400017",
      "status": "P",
      "store_name": "Patisserie Galia",
      "street": "rue Henri Merle",
      "street_number": 79,
      "turnover": 100000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COMBS LA VILLE",
      "client_creation_date": "1-5-2004",
      "closing_days_ids": [],
      "datlinq_code": 961309,
      "email": null,
      "id": 16789,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R6219001",
      "location_areas_ids": [],
      "owner_name": "COURTALON",
      "phone_number": "01-60024725",
      "postal_code": "77380",
      "siren": "453609562",
      "siret": "45360956200013",
      "status": "G",
      "store_name": "Boulangerie la Frangine (Atelier des Pains)",
      "street": "rue Pierre et Marie Curie",
      "street_number": 0,
      "turnover": 456000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NIORT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961312,
      "email": null,
      "id": 16791,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "22109001",
      "location_areas_ids": [],
      "owner_name": "CASAJOUX",
      "phone_number": "05-59243783",
      "postal_code": "79000",
      "siren": "504122151",
      "siret": "50412215100013",
      "status": "M",
      "store_name": "Boulangerie La Farandole Des Pains",
      "street": "rue Vaumorin",
      "street_number": 2,
      "turnover": 680000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "L ISLE SUR LA SORGUE",
      "client_creation_date": "7-12-1998",
      "closing_days_ids": [],
      "datlinq_code": 961343,
      "email": null,
      "id": 16814,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Tudury eric",
      "phone_number": "04-90380371",
      "postal_code": "84800",
      "siren": "344885504",
      "siret": "34488550400037",
      "status": "P",
      "store_name": "Boulangerie Le Petit Palais",
      "street": "route de Petit Palais",
      "street_number": 353,
      "turnover": 110000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PACY SUR EURE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961354,
      "email": null,
      "id": 16822,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232360207",
      "postal_code": "27120",
      "siren": "482809134",
      "siret": "48280913400018",
      "status": "M",
      "store_name": "Boulangerie Ballay",
      "street": "rue Edouard Isambard",
      "street_number": 79,
      "turnover": 550000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ORAISON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961357,
      "email": null,
      "id": 16824,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92786294",
      "postal_code": "04700",
      "siren": "419763933",
      "siret": "41976393300019",
      "status": "P",
      "store_name": "Boulangerie Kyrilis Olivier",
      "street": "place Clement Plane",
      "street_number": null,
      "turnover": 90000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROSULT",
      "client_creation_date": "2006-02-23",
      "closing_days_ids": [],
      "datlinq_code": 961359,
      "email": null,
      "id": 16826,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010027991252110",
      "location_areas_ids": [],
      "owner_name": "VERMEILLE",
      "phone_number": "+33 327355702",
      "postal_code": "59230",
      "siren": "817519242",
      "siret": "81751924200017",
      "status": "M",
      "store_name": "Le Fournil de Rosult",
      "street": "rue de l Adjudant Dufour",
      "street_number": 45,
      "turnover": 260000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST ANTHEME",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961378,
      "email": null,
      "id": 16841,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "SL001001",
      "location_areas_ids": [],
      "owner_name": "SBEGHEN",
      "phone_number": "04-73954068",
      "postal_code": "63660",
      "siren": "431528181",
      "siret": "43152818100024",
      "status": "M",
      "store_name": "Boulangerie Sbeghen",
      "street": "place de l Aubepin",
      "street_number": null,
      "turnover": 350000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961382,
      "email": null,
      "id": 16845,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91051989",
      "postal_code": "13013",
      "siren": "489816843",
      "siret": "48981684300028",
      "status": "M",
      "store_name": "Boulangerie Frigoli",
      "street": "rue Albert Einstein",
      "street_number": 305,
      "turnover": 602000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FEURS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961394,
      "email": null,
      "id": 16854,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-77261011",
      "postal_code": "42110",
      "siren": "381919315",
      "siret": "38191931500030",
      "status": "P",
      "store_name": "Boulangerie Levrat Philippe",
      "street": "avenue Jean Jaures",
      "street_number": 16,
      "turnover": 200000,
      "user_id": 62,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST ROMAIN DE COLBOSC",
      "client_creation_date": "2006-09-18",
      "closing_days_ids": [],
      "datlinq_code": 961396,
      "email": null,
      "id": 16855,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235205276",
      "postal_code": "76430",
      "siren": "434307872",
      "siret": null,
      "status": "G",
      "store_name": "Boulangerie Lucas",
      "street": "place Theodule Benoist",
      "street_number": 18,
      "turnover": 750000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA PORTE DU DER",
      "client_creation_date": "2006-11-22",
      "closing_days_ids": [],
      "datlinq_code": 961402,
      "email": null,
      "id": 16859,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Monteleon",
      "phone_number": "+33 325042159",
      "postal_code": "52220",
      "siren": "492908793",
      "siret": "49290879300010",
      "status": "P",
      "store_name": "Boulangerie Monteleone",
      "street": "rue de l Isle",
      "street_number": 4,
      "turnover": 350000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961404,
      "email": null,
      "id": 16860,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010031646252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235264033",
      "postal_code": "76600",
      "siren": "809997034",
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Tiphaigne",
      "street": "rue de la Vallee",
      "street_number": 110,
      "turnover": 180000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DANNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961409,
      "email": null,
      "id": 16865,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010029254252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321327100",
      "postal_code": "62187",
      "siren": "493540991",
      "siret": "49354099100012",
      "status": "M",
      "store_name": "Boulangerie Mangard",
      "street": "rue du Stade",
      "street_number": 22,
      "turnover": 500000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURNONSEC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961417,
      "email": null,
      "id": 16873,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467699384",
      "postal_code": "34660",
      "siren": "492339908",
      "siret": "49233990800013",
      "status": "P",
      "store_name": "Boulangerie Le Petrin De Steph Anne",
      "street": "rue de la Cave Cooperative",
      "street_number": 10,
      "turnover": 192000,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LEVIGNAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961418,
      "email": null,
      "id": 16874,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010008425252110",
      "location_areas_ids": [],
      "owner_name": "HOLTZ",
      "phone_number": "+33 561857581",
      "postal_code": "31530",
      "siren": "478876253",
      "siret": "47887625300020",
      "status": "P",
      "store_name": "Boulangerie Holtz",
      "street": "avenue de la Republique",
      "street_number": 50,
      "turnover": 306000,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TERGNIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961426,
      "email": null,
      "id": 16880,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "FRANCOIS JEROME",
      "phone_number": "+33 323570216",
      "postal_code": "02700",
      "siren": "433251972",
      "siret": "43325197200025",
      "status": "P",
      "store_name": "Boulangerie Francois",
      "street": "boulevard Gambetta",
      "street_number": 14,
      "turnover": 150000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JULIEN EN BORN",
      "client_creation_date": "2007-08-30",
      "closing_days_ids": [],
      "datlinq_code": 961441,
      "email": null,
      "id": 16892,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RP565001",
      "location_areas_ids": [],
      "owner_name": "PAREAU",
      "phone_number": "05-58428019",
      "postal_code": "40170",
      "siren": "499996049",
      "siret": "49999604900023",
      "status": "M",
      "store_name": "Boulangerie Pareau Regis",
      "street": "Route des lacs",
      "street_number": null,
      "turnover": 264910,
      "user_id": 210,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOUARGAT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 880493,
      "email": null,
      "id": 6995,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-96431380",
      "postal_code": "22540",
      "siren": "432323806",
      "siret": "43232380600013",
      "status": "P",
      "store_name": "Boulangerie Scaviner",
      "street": "avenue des Prunus",
      "street_number": 16,
      "turnover": 270000,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CONDE SUR L ESCAUT",
      "client_creation_date": "2007-10-01",
      "closing_days_ids": [],
      "datlinq_code": 961443,
      "email": null,
      "id": 16893,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SANTRAINE",
      "phone_number": "+33 327401052",
      "postal_code": "59163",
      "siren": "500630538",
      "siret": "50063053800014",
      "status": "P",
      "store_name": "Boulangerie Santraine",
      "street": "rue Gambetta",
      "street_number": 32,
      "turnover": 150000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST SEVER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961444,
      "email": null,
      "id": 16894,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "laborde",
      "phone_number": "05-58765335",
      "postal_code": "40500",
      "siren": "500798509",
      "siret": "50079850900013",
      "status": "P",
      "store_name": "Boulangerie la Rose des Sables",
      "street": "zone Artisanale Escales",
      "street_number": null,
      "turnover": 400000,
      "user_id": 211,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STRAZEELE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961447,
      "email": null,
      "id": 16897,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328435606",
      "postal_code": "59270",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie au Pain à l'Ancienne",
      "street": "Route d'Hazebrouck",
      "street_number": 26,
      "turnover": 110000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PORTES",
      "client_creation_date": "2012-01-01",
      "closing_days_ids": [],
      "datlinq_code": 961456,
      "email": null,
      "id": 16901,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010029217252110",
      "location_areas_ids": [],
      "owner_name": "Argaud",
      "phone_number": "+33 609613690",
      "postal_code": "30530",
      "siren": "422062075",
      "siret": "42206207500029",
      "status": "M",
      "store_name": "Boulangerie la Paillasse Cevenole (Argaud)",
      "street": "rue de la Mairie",
      "street_number": 7,
      "turnover": 125000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA SENTINELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961463,
      "email": null,
      "id": 16906,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 327464131",
      "postal_code": "59174",
      "siren": "504287483",
      "siret": "50428748300011",
      "status": "M",
      "store_name": "Boulangerie Boutoille",
      "street": "rue Roger Salengro",
      "street_number": 71,
      "turnover": 280000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "POISSY",
      "client_creation_date": "1-1-2008",
      "closing_days_ids": [],
      "datlinq_code": 961468,
      "email": null,
      "id": 16909,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0418F001",
      "location_areas_ids": [],
      "owner_name": "CHEVRIEUX",
      "phone_number": "01-30740518",
      "postal_code": "78300",
      "siren": "814256020",
      "siret": "48384608500015",
      "status": "G",
      "store_name": "Boulangerie au Pere Petrin",
      "street": "boulevard Devaux",
      "street_number": 4,
      "turnover": 700000,
      "user_id": 96,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MELUN",
      "client_creation_date": "1-12-2006",
      "closing_days_ids": [],
      "datlinq_code": 961478,
      "email": null,
      "id": 16919,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ZITRINI",
      "phone_number": "01-64520834",
      "postal_code": "77000",
      "siren": "493440481",
      "siret": "49344048100015",
      "status": "P",
      "store_name": "Boulangerie le Cygne Blanc",
      "street": "place Saint Jean",
      "street_number": 23,
      "turnover": 280000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GERMAIN DU PUCH",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961488,
      "email": null,
      "id": 16926,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-57240056",
      "postal_code": "33750",
      "siren": "500682984",
      "siret": "50068298400017",
      "status": "P",
      "store_name": "Boulangerie Revidat",
      "street": "route de Creon",
      "street_number": 10,
      "turnover": 300000,
      "user_id": 202,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "2008-10-01",
      "closing_days_ids": [],
      "datlinq_code": 961490,
      "email": null,
      "id": 16928,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DANJOUX",
      "phone_number": "04-93891213",
      "postal_code": "06300",
      "siren": "508806320",
      "siret": "50880632000018",
      "status": "P",
      "store_name": "Boulangerie Danjoux",
      "street": "rue Monseigneur Alfred Daumas",
      "street_number": 42,
      "turnover": 270000,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAILLAGOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961493,
      "email": null,
      "id": 16931,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468041007",
      "postal_code": "66800",
      "siren": "410391601",
      "siret": "41039160100029",
      "status": "P",
      "store_name": "Boulangerie Ribas Joseph",
      "street": "rue des Ceretes",
      "street_number": 3,
      "turnover": 150000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALES",
      "client_creation_date": "2009-01-01",
      "closing_days_ids": [],
      "datlinq_code": 961505,
      "email": "alespainauburtin@hotmail.fr",
      "id": 16942,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010004437252110",
      "location_areas_ids": [],
      "owner_name": "auburtin",
      "phone_number": "+33 466867170",
      "postal_code": "30100",
      "siren": "509552378",
      "siret": "50955237800010",
      "status": "G",
      "store_name": "Boulangerie Ales Pain (Auburtin)",
      "street": "Avenue Jean Perrin",
      "street_number": 170,
      "turnover": 650000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAROST",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961508,
      "email": null,
      "id": 16944,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R6976001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-48262717",
      "postal_code": "18290",
      "siren": "493703268",
      "siret": "49370326800018",
      "status": "M",
      "store_name": "Boulangerie Aguilar",
      "street": "Grande Rue",
      "street_number": 40,
      "turnover": 250000,
      "user_id": 52,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAMPIGNY SUR MARNE",
      "client_creation_date": "2003",
      "closing_days_ids": [],
      "datlinq_code": 961509,
      "email": null,
      "id": 16945,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R2117001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "94500",
      "siren": "434885703",
      "siret": "43488570300018",
      "status": "M",
      "store_name": "Boulangerie Le Coin Des Gourmands",
      "street": "avenue Elisa Mercoeur",
      "street_number": 2,
      "turnover": 300000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAVAILLON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961510,
      "email": null,
      "id": 16946,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-90780751",
      "postal_code": "84300",
      "siren": "479252736",
      "siret": "47925273600018",
      "status": "M",
      "store_name": "Boulangerie l Etoile du Delice",
      "street": "place Castil Blaze",
      "street_number": 57,
      "turnover": 239000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARGENTEUIL",
      "client_creation_date": "1-1-2012",
      "closing_days_ids": [],
      "datlinq_code": 961513,
      "email": null,
      "id": 16948,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1632D001",
      "location_areas_ids": [],
      "owner_name": "BEN KHALIFAT",
      "phone_number": "01-34103896",
      "postal_code": "95100",
      "siren": "539607721",
      "siret": "53960772100013",
      "status": "P",
      "store_name": "Boulangerie l'Epi Dore",
      "street": "boulevard Jean Allemane",
      "street_number": 116,
      "turnover": 150000,
      "user_id": 79,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JUVISY SUR ORGE",
      "client_creation_date": "2-5-2005",
      "closing_days_ids": [],
      "datlinq_code": 961518,
      "email": null,
      "id": 16950,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0302E001",
      "location_areas_ids": [],
      "owner_name": "SABRI",
      "phone_number": "01-69214809",
      "postal_code": "91260",
      "siren": "482080603",
      "siret": "48208060300012",
      "status": "M",
      "store_name": "Boulangerie Sabri",
      "street": "avenue Gabriel Peri",
      "street_number": 72,
      "turnover": 342400,
      "user_id": 84,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PANTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961521,
      "email": null,
      "id": 16952,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "Z0146001",
      "location_areas_ids": [],
      "owner_name": "SELLAMI KARIMA",
      "phone_number": "000-000",
      "postal_code": "93500",
      "siren": "511581670",
      "siret": "51158167000011",
      "status": "P",
      "store_name": "Boulangerie Guyot",
      "street": "rue Mehul",
      "street_number": 32,
      "turnover": 180000,
      "user_id": 74,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CHRISTOL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961522,
      "email": null,
      "id": 16953,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "RAZON",
      "phone_number": "+33 467544526",
      "postal_code": "34400",
      "siren": "503680621",
      "siret": "50368062100011",
      "status": "P",
      "store_name": "Boulangerie Razon Freres",
      "street": "rue de la Barbe",
      "street_number": 3,
      "turnover": 130000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLENEUVE LE ROI",
      "client_creation_date": "1-1-2011",
      "closing_days_ids": [],
      "datlinq_code": 961523,
      "email": null,
      "id": 16954,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "FERREIRA",
      "phone_number": "01-49614019",
      "postal_code": "94290",
      "siren": "530751783",
      "siret": "53075178300016",
      "status": "P",
      "store_name": "Boulangerie Petrin d'Antan",
      "street": "avenue de la Republique",
      "street_number": 47,
      "turnover": 375000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MAUR DES FOSSES",
      "client_creation_date": "2001",
      "closing_days_ids": [],
      "datlinq_code": 961524,
      "email": null,
      "id": 16955,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48852606",
      "postal_code": "94100",
      "siren": "480707603",
      "siret": "48070760300027",
      "status": "G",
      "store_name": "Boulangerie Luna Traiteur",
      "street": "rue Ledru Rollin",
      "street_number": 127,
      "turnover": 13879000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LONGVIC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961527,
      "email": null,
      "id": 50449,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Zanneta",
      "phone_number": "+33 380660340",
      "postal_code": "21600",
      "siren": "524520517",
      "siret": "52452051700029",
      "status": "G",
      "store_name": "Boulangerie Maison Roger",
      "street": "rue du Professeur Louis Neel",
      "street_number": 12,
      "turnover": 7615290,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FORCALQUIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961537,
      "email": null,
      "id": 16961,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92745121",
      "postal_code": "04300",
      "siren": "509344578",
      "siret": "50934457800018",
      "status": "P",
      "store_name": "Boulangerie Une Fournee En Provence",
      "street": "place Martial Sicard",
      "street_number": 11,
      "turnover": 173000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MOYENMOUTIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961539,
      "email": null,
      "id": 16963,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "66211001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-29415411",
      "postal_code": "88420",
      "siren": "492018338",
      "siret": "49201833800011",
      "status": "M",
      "store_name": "Boulangerie Levy",
      "street": "rue de l Hotel de Ville",
      "street_number": 8,
      "turnover": 200000,
      "user_id": 109,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAUZET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961541,
      "email": null,
      "id": 16964,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-75467149",
      "postal_code": "26740",
      "siren": "447553231",
      "siret": "44755323100021",
      "status": "P",
      "store_name": "Boulangerie Garrione",
      "street": "chemin de Ronde",
      "street_number": 7,
      "turnover": 186000,
      "user_id": 170,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PONCHEL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961560,
      "email": null,
      "id": 16977,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010001604252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321411500",
      "postal_code": "62390",
      "siren": "432690063",
      "siret": "43269006300016",
      "status": "G",
      "store_name": "Boulangerie Lagache",
      "street": "Route de berck",
      "street_number": 3,
      "turnover": 400000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MANTES LA JOLIE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961590,
      "email": "guerridazine@Hotmail.com",
      "id": 17001,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1921F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-34769955",
      "postal_code": "78200",
      "siren": "511832347",
      "siret": "51183234700013",
      "status": "P",
      "store_name": "Boulangerie Guerrida",
      "street": "rue Jean Baptiste Corot",
      "street_number": 18,
      "turnover": 195000,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MELLECEY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961601,
      "email": null,
      "id": 17007,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012552252110",
      "location_areas_ids": [],
      "owner_name": "BUATOIS",
      "phone_number": "+33 385980417",
      "postal_code": "71640",
      "siren": "450378484",
      "siret": "45037848400015",
      "status": "M",
      "store_name": "Le Fournil de Mellecey",
      "street": "Route de la Vallée",
      "street_number": 616,
      "turnover": 150000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALLAUCH",
      "client_creation_date": "24-8-1988",
      "closing_days_ids": [],
      "datlinq_code": 961603,
      "email": null,
      "id": 17009,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91071348",
      "postal_code": "13190",
      "siren": "345358022",
      "siret": "34535802200019",
      "status": "P",
      "store_name": "Boulangerie Perugini",
      "street": "rue Pierre Queirel",
      "street_number": 20,
      "turnover": 10000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COUTANCES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961644,
      "email": null,
      "id": 17033,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233450408",
      "postal_code": "50200",
      "siren": "351441886",
      "siret": "35144188600014",
      "status": "M",
      "store_name": "Boulangerie Lemonnier",
      "street": "rue Geoffroy de Montbray",
      "street_number": 5,
      "turnover": 290000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FIENNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961697,
      "email": null,
      "id": 17063,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011661252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 960128376",
      "postal_code": "62132",
      "siren": "453592057",
      "siret": "45359205700013",
      "status": "M",
      "store_name": "Boulangerie Ivart",
      "street": "rue de l Eglise",
      "street_number": 242,
      "turnover": 480000,
      "user_id": 422,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TARASCON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961705,
      "email": null,
      "id": 2314,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "13150",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Les Mille Et Un Delices",
      "street": "rue Neuve",
      "street_number": 1,
      "turnover": null,
      "user_id": 177,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962062,
      "email": "lyonpartdieu@classcroute.com",
      "id": 41513,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-37430101",
      "postal_code": "69003",
      "siren": "499530681",
      "siret": "49953068100018",
      "status": "EMPTY_STATUS",
      "store_name": "Class'croute",
      "street": "rue Lavoisier",
      "street_number": 12,
      "turnover": 0,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HYERES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962260,
      "email": null,
      "id": 32797,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "V0404001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-94353592",
      "postal_code": "83400",
      "siren": "480206895",
      "siret": "48020689500017",
      "status": "P",
      "store_name": "Patisserie Pblonna",
      "street": "PLACE CLEMENCEAU",
      "street_number": 1,
      "turnover": 350000,
      "user_id": 188,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-1-2014",
      "closing_days_ids": [],
      "datlinq_code": 962402,
      "email": null,
      "id": 17097,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Achack",
      "phone_number": "000-000",
      "postal_code": "13011",
      "siren": "383272994",
      "siret": "38327299400047",
      "status": "P",
      "store_name": "Boulangerie Achchak",
      "street": "boulevard Saint Marcel",
      "street_number": 165,
      "turnover": 120000,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962598,
      "email": null,
      "id": 17109,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43723953",
      "postal_code": "75012",
      "siren": "501176275",
      "siret": "50117627500011",
      "status": "M",
      "store_name": "Boulangerie Aux Delices De Paris",
      "street": "rue de Reuilly",
      "street_number": 33,
      "turnover": 484900,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURNEFEUILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962655,
      "email": null,
      "id": 17115,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010004627252110",
      "location_areas_ids": [],
      "owner_name": "MATHEU",
      "phone_number": "+33 561865683",
      "postal_code": "31170",
      "siren": "501343412",
      "siret": "50134341200018",
      "status": "M",
      "store_name": "Boulangerie le Colibri",
      "street": "boulevard Vincent Auriol",
      "street_number": 49,
      "turnover": 344160,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURCOING",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962791,
      "email": null,
      "id": 17123,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320260028",
      "postal_code": "59200",
      "siren": "314187048",
      "siret": "31418704800132",
      "status": "P",
      "store_name": "Boulangerie Tout Chaud",
      "street": "rue Saint Jacques",
      "street_number": 2,
      "turnover": 65000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JEAN CAP FERRAT",
      "client_creation_date": "2009-06-01",
      "closing_days_ids": [],
      "datlinq_code": 962838,
      "email": null,
      "id": 17141,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BONFIGLI",
      "phone_number": "04-93760575",
      "postal_code": "06230",
      "siren": "512419730",
      "siret": "51241973000019",
      "status": "P",
      "store_name": "Boulangerie Banette Du Port",
      "street": "avenue Jean Mermoz",
      "street_number": 5,
      "turnover": 350000,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAUJON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962928,
      "email": null,
      "id": 17192,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46224068",
      "postal_code": "17600",
      "siren": "443204862",
      "siret": "44320486200033",
      "status": "P",
      "store_name": "Boulangerie Artisanale",
      "street": "rue Thiers",
      "street_number": 71,
      "turnover": 180000,
      "user_id": 152,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST DOULCHARD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962930,
      "email": null,
      "id": 17193,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-48242651",
      "postal_code": "18230",
      "siren": null,
      "siret": null,
      "status": "G",
      "store_name": "Boulangerie Pouillard",
      "street": "rue du Paradis",
      "street_number": 24,
      "turnover": 1000000,
      "user_id": 51,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LONGECOURT EN PLAINE",
      "client_creation_date": "2009-06-01",
      "closing_days_ids": [],
      "datlinq_code": 962937,
      "email": null,
      "id": 17198,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Perrussot",
      "phone_number": null,
      "postal_code": "21110",
      "siren": "513403204",
      "siret": "51340320400011",
      "status": "M",
      "store_name": "Boulangerie La Halte Gourmande",
      "street": "route de Dijon",
      "street_number": 39,
      "turnover": 495000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JEAN DE LINIERES",
      "client_creation_date": "2007-10-03",
      "closing_days_ids": [],
      "datlinq_code": 962945,
      "email": null,
      "id": 2332,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010009779252110",
      "location_areas_ids": [],
      "owner_name": "MOURGUES pierre",
      "phone_number": "+33 964066655",
      "postal_code": "49070",
      "siren": "500273461",
      "siret": "50027346100011",
      "status": "P",
      "store_name": "Le Fournee de Pierre",
      "street": "place des Plantagenets",
      "street_number": 15,
      "turnover": 191600,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LANNION",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962967,
      "email": null,
      "id": 17201,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MANSUIS PHILIPPE",
      "phone_number": "06-75257845",
      "postal_code": "22300",
      "siren": "314796152",
      "siret": "31479615200069",
      "status": "P",
      "store_name": "Boulangerie au Pain d'Antan",
      "street": "route de Perros Guirec",
      "street_number": null,
      "turnover": 200000,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DREUX",
      "client_creation_date": "2009-03-05",
      "closing_days_ids": [],
      "datlinq_code": 962994,
      "email": null,
      "id": 17223,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ACHAFI",
      "phone_number": "+33 237502814",
      "postal_code": "28100",
      "siren": "510816218",
      "siret": "51081621800018",
      "status": "M",
      "store_name": "Boulangerie Pâtisserie Melissa",
      "street": "Avenue du General Marceau",
      "street_number": 25,
      "turnover": 256600,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PONTGOUIN",
      "client_creation_date": "2009-04-16",
      "closing_days_ids": [],
      "datlinq_code": 962995,
      "email": null,
      "id": 17224,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SABLONS",
      "phone_number": "+33 237374135",
      "postal_code": "28190",
      "siren": "350348173",
      "siret": "35034817300039",
      "status": "P",
      "store_name": "Boulangerie Sablons",
      "street": "rue du Pont de l Aumone",
      "street_number": 9,
      "turnover": 130000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTASTRUC LA CONSEILLERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963027,
      "email": null,
      "id": 17246,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010009899252110",
      "location_areas_ids": [],
      "owner_name": "THIBAULT JEROME",
      "phone_number": "+33 561842595",
      "postal_code": "31380",
      "siren": "511294449",
      "siret": "51129444900018",
      "status": "M",
      "store_name": "Boulangerie Thibault",
      "street": "avenue du General Castelnau",
      "street_number": 76,
      "turnover": 540000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ORGERES",
      "client_creation_date": "2013-05-22",
      "closing_days_ids": [],
      "datlinq_code": 963090,
      "email": null,
      "id": 17287,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "PROD'HOMMES",
      "phone_number": "02-99054956",
      "postal_code": "35230",
      "siren": "511176604",
      "siret": "51117660400011",
      "status": "P",
      "store_name": "Boulangerie aux Saveurs d'Antan",
      "street": "rue de la Mairie",
      "street_number": 2,
      "turnover": 248560,
      "user_id": 148,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AIGURANDE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963121,
      "email": null,
      "id": 17297,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "36140001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-54063151",
      "postal_code": "36140",
      "siren": "494818131",
      "siret": "49481813100026",
      "status": "P",
      "store_name": "Boulangerie Banette Ocean Et Llilian",
      "street": "place du Champ de Foire",
      "street_number": null,
      "turnover": 418000,
      "user_id": 52,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARTANNES SUR INDRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963126,
      "email": null,
      "id": 17300,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0601E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-47268182",
      "postal_code": "37260",
      "siren": "788775658",
      "siret": "51205619300018",
      "status": "M",
      "store_name": "Boulangerie Horde",
      "street": "rue du Commerce",
      "street_number": 3,
      "turnover": 180000,
      "user_id": 140,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST DENIS",
      "client_creation_date": "1-4-2008",
      "closing_days_ids": [],
      "datlinq_code": 963193,
      "email": null,
      "id": 2337,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42432355",
      "postal_code": "93200",
      "siren": "508617677",
      "siret": "50861767700010",
      "status": "EMPTY_STATUS",
      "store_name": "Sakura",
      "street": "place des Pianos",
      "street_number": 4,
      "turnover": 170000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HAZEBROUCK",
      "client_creation_date": "2016-01-01",
      "closing_days_ids": [],
      "datlinq_code": 963224,
      "email": null,
      "id": 41515,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016608252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328418202",
      "postal_code": "59190",
      "siren": "804225431",
      "siret": "80422543100019",
      "status": "M",
      "store_name": "Patisserie Prum",
      "street": "place du General de Gaulle",
      "street_number": 25,
      "turnover": 300000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MARTIN DE FUGERES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963237,
      "email": null,
      "id": 17329,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "43152001",
      "location_areas_ids": [],
      "owner_name": "Elodie FRADET",
      "phone_number": "06-64419928",
      "postal_code": "43150",
      "siren": "511462376",
      "siret": "51146237600019",
      "status": "M",
      "store_name": "Boulangerie Chez Lilian et Elodie",
      "street": "le Bourg",
      "street_number": null,
      "turnover": 110000,
      "user_id": 54,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANCENIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963239,
      "email": null,
      "id": 17331,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31321001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40830126",
      "postal_code": "44150",
      "siren": "512890328",
      "siret": "51289032800028",
      "status": "G",
      "store_name": "Boulangerie O Saveurs d'Ancenis",
      "street": "rue Pierre de Coubertin",
      "street_number": 37,
      "turnover": 600000,
      "user_id": 138,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LUDRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963297,
      "email": null,
      "id": 17373,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83256070",
      "postal_code": "54710",
      "siren": "513834804",
      "siret": "51383480400017",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Maison Chone",
      "street": "place Ferri de Ludre",
      "street_number": 118,
      "turnover": null,
      "user_id": 102,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LUDRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963298,
      "email": null,
      "id": 17374,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83258201",
      "postal_code": "54710",
      "siren": "491183588",
      "siret": "49118358800020",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Banette Noaremy",
      "street": "avenue du Bon Cure",
      "street_number": null,
      "turnover": null,
      "user_id": 102,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SOCX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963343,
      "email": null,
      "id": 17380,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328682240",
      "postal_code": "59380",
      "siren": "340171883",
      "siret": "34017188300010",
      "status": "P",
      "store_name": "Boulangerie Quaghebeur",
      "street": "passage Fleuri",
      "street_number": 2,
      "turnover": 180000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE KREMLIN BICETRE",
      "client_creation_date": "1-1-2008",
      "closing_days_ids": [],
      "datlinq_code": 963460,
      "email": null,
      "id": 17387,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R8491001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-46724582",
      "postal_code": "94270",
      "siren": "505103622",
      "siret": "50510362200013",
      "status": "P",
      "store_name": "Boulangerie La Folie Du Pain",
      "street": "avenue Charles Gide",
      "street_number": 25,
      "turnover": 300000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TRIEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963490,
      "email": null,
      "id": 17388,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "PF206001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-82463341",
      "postal_code": "54750",
      "siren": "408729572",
      "siret": "40872957200029",
      "status": "P",
      "store_name": "Boulangerie Calvisi Fabrice",
      "street": "avenue de la Liberation",
      "street_number": 9,
      "turnover": 434,
      "user_id": 108,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SEREMANGE ERZANGE",
      "client_creation_date": "2016-03-01",
      "closing_days_ids": [],
      "datlinq_code": 963503,
      "email": null,
      "id": 17400,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010028105252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 382582922",
      "postal_code": "57290",
      "siren": "818320186",
      "siret": "81832018600021",
      "status": "G",
      "store_name": "Boulangerie NJGM",
      "street": "rue Charles de Gaulle",
      "street_number": 20,
      "turnover": 1000000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLAMECY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963505,
      "email": null,
      "id": 17402,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386271610",
      "postal_code": "58500",
      "siren": "511500043",
      "siret": "51150004300019",
      "status": "P",
      "store_name": "Boulangerie Roy",
      "street": "rue du Petit Marche",
      "street_number": 4,
      "turnover": 150000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BELLEME",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963521,
      "email": null,
      "id": 17416,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233830418",
      "postal_code": "61130",
      "siren": "512303280",
      "siret": "51230328000014",
      "status": "G",
      "store_name": "Boulangerie le Carre Bellemois",
      "street": "place de la Liberte",
      "street_number": null,
      "turnover": 325000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GERMAIN DU CORBEIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963524,
      "email": null,
      "id": 17419,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012389252110",
      "location_areas_ids": [],
      "owner_name": "LEFORT",
      "phone_number": "+33 962120801",
      "postal_code": "61000",
      "siren": "511647497",
      "siret": "51164749700011",
      "status": "G",
      "store_name": "Boulangerie Panis Trad",
      "street": "rue du General Leclerc",
      "street_number": 95,
      "turnover": 643230,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LANNEMEZAN",
      "client_creation_date": "2009-06-01",
      "closing_days_ids": [],
      "datlinq_code": 963544,
      "email": null,
      "id": 17427,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-62402519",
      "postal_code": "65300",
      "siren": "512575846",
      "siret": "51257584600013",
      "status": "P",
      "store_name": "Boulangerie Le Fournil Du Lustou",
      "street": "rue du 8 Mai 1945",
      "street_number": 285,
      "turnover": 633651,
      "user_id": 208,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARTHENAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963593,
      "email": null,
      "id": 17460,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31296001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-49711083",
      "postal_code": "79200",
      "siren": "514093186",
      "siret": "51409318600013",
      "status": "G",
      "store_name": "Boulangerie Le Fournil Des Loges",
      "street": "rue Ludwig Van Beethoven",
      "street_number": 32,
      "turnover": 900000,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PUYLAROQUE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963602,
      "email": null,
      "id": 17465,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010033397252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 563304819",
      "postal_code": "82240",
      "siren": "511158149",
      "siret": "51115814900019",
      "status": "P",
      "store_name": "Boulangerie L'etoile Des Saveurs",
      "street": "lieu dit Les Experts",
      "street_number": null,
      "turnover": 169000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WISSOUS",
      "client_creation_date": "11-3-2009",
      "closing_days_ids": [],
      "datlinq_code": 963683,
      "email": null,
      "id": 17493,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "2536E001",
      "location_areas_ids": [],
      "owner_name": "SALVADOS Sergio",
      "phone_number": "01-69531677",
      "postal_code": "91320",
      "siren": "511008021",
      "siret": "51100802100012",
      "status": "P",
      "store_name": "Boulangerie La Gourmandise Lg",
      "street": "rue Fernand Leger",
      "street_number": 2,
      "turnover": 455300,
      "user_id": 86,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAUTERETS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963706,
      "email": null,
      "id": 17504,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "65110",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Au Peche Mignon",
      "street": "place Marechal Foch",
      "street_number": 2,
      "turnover": null,
      "user_id": 208,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEZONS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963786,
      "email": null,
      "id": 17518,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "Z0286001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-39613319",
      "postal_code": "95870",
      "siren": "510513310",
      "siret": "51051331000019",
      "status": "G",
      "store_name": "Boulangerie Le Fournil de Bezons",
      "street": "rue Jean Jaures",
      "street_number": 124,
      "turnover": 350000,
      "user_id": 80,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHARENTON DU CHER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963804,
      "email": null,
      "id": 17528,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0750D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-48608078",
      "postal_code": "18210",
      "siren": "438862302",
      "siret": "43886230200025",
      "status": "P",
      "store_name": "Boulangerie Reuillard",
      "street": "rue Nationale",
      "street_number": 70,
      "turnover": 200000,
      "user_id": 51,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ENSISHEIM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963819,
      "email": null,
      "id": 46586,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0449G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-89810252",
      "postal_code": "68190",
      "siren": "491606224",
      "siret": "49160622400013",
      "status": "P",
      "store_name": "Patisserie Ruthmann",
      "street": "rue de la 1ere Armee Francaise",
      "street_number": 33,
      "turnover": 280000,
      "user_id": 111,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FABREGUES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963823,
      "email": null,
      "id": 17542,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467852157",
      "postal_code": "34690",
      "siren": "398862870",
      "siret": "39886287000019",
      "status": "M",
      "store_name": "Boulangerie Les Bles Tendres",
      "street": "rue Paul Doumer",
      "street_number": 35,
      "turnover": 215000,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FLEURY SUR ANDELLE",
      "client_creation_date": "2009-03-11",
      "closing_days_ids": [],
      "datlinq_code": 963825,
      "email": null,
      "id": 17544,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012388252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232490181",
      "postal_code": "27380",
      "siren": "438624330",
      "siret": "43862433000025",
      "status": "P",
      "store_name": "Boulangerie Aux Mille Et Une Saveurs",
      "street": "rue Pouyer Quertier",
      "street_number": 84,
      "turnover": 145000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FISMES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 853186,
      "email": null,
      "id": 5040,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326488017",
      "postal_code": "51170",
      "siren": "539838409",
      "siret": "53983840900016",
      "status": "M",
      "store_name": "Boulangerie Bayart",
      "street": "rue Charles Ledru",
      "street_number": 2,
      "turnover": 200000,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963986,
      "email": null,
      "id": 17574,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78240413",
      "postal_code": "69006",
      "siren": "514990837",
      "siret": "51499083700015",
      "status": "P",
      "store_name": "Boulangerie Duranton",
      "street": "petite Rue de la Viabert",
      "street_number": 24,
      "turnover": 230000,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963993,
      "email": null,
      "id": 17580,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "13F98001",
      "location_areas_ids": [],
      "owner_name": "BENHEBBA Mohamed",
      "phone_number": "04-91913020",
      "postal_code": "13002",
      "siren": "306490756",
      "siret": "30649075600013",
      "status": "P",
      "store_name": "Boulangerie Benhebba Mohamed",
      "street": "rue du Bon Pasteur",
      "street_number": 13,
      "turnover": 220000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "OBERSCHAEFFOLSHEIM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964024,
      "email": null,
      "id": 17600,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-88761774",
      "postal_code": "67203",
      "siren": "798812558",
      "siret": "79881255800020",
      "status": "P",
      "store_name": "Boulangerie Passion Pains",
      "street": "rue du General de Gaulle",
      "street_number": 74,
      "turnover": 250000,
      "user_id": 112,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STE SAVINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964094,
      "email": null,
      "id": 17646,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Gervais",
      "phone_number": "+33 325792469",
      "postal_code": "10300",
      "siren": "422931055",
      "siret": "42293105500012",
      "status": "P",
      "store_name": "Pâtisserie aux Comtes de Champagne",
      "street": "avenue du General Gallieni",
      "street_number": 16,
      "turnover": 57700,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALENCE",
      "client_creation_date": "2005-10-01",
      "closing_days_ids": [],
      "datlinq_code": 964112,
      "email": null,
      "id": 17655,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010031460252110",
      "location_areas_ids": [],
      "owner_name": "CHAPEY Jean Luc",
      "phone_number": "+33 475437635",
      "postal_code": "26000",
      "siren": "422843672",
      "siret": "42284367200029",
      "status": "P",
      "store_name": "Boulangerie Chapey",
      "street": "avenue de Verdun",
      "street_number": 38,
      "turnover": 150000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEMUR SUR TARN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964121,
      "email": null,
      "id": 32801,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013285252110",
      "location_areas_ids": [],
      "owner_name": "??",
      "phone_number": "+33 561351066",
      "postal_code": "31340",
      "siren": "505400416",
      "siret": "50540041600036",
      "status": "G",
      "store_name": "Boulangerie le Pétrin de Villemur",
      "street": "avenue Michel Rocard",
      "street_number": 28,
      "turnover": 510000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PIERREFITTE SUR SEINE",
      "client_creation_date": "1-7-1985",
      "closing_days_ids": [],
      "datlinq_code": 964759,
      "email": null,
      "id": 17685,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1377W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48235592",
      "postal_code": "93380",
      "siren": "800536617",
      "siret": "80053661700015",
      "status": "P",
      "store_name": "Boulangerie Aissaoui",
      "street": "avenue Elisee Reclus",
      "street_number": 221,
      "turnover": 90000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MEUDON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964762,
      "email": null,
      "id": 17687,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "04074001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45341990",
      "postal_code": "92190",
      "siren": "429071525",
      "siret": "42907152500019",
      "status": "P",
      "store_name": "Boulangerie Gie Alain",
      "street": "rue Banes",
      "street_number": 19,
      "turnover": 430000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RAIMBEAUCOURT",
      "client_creation_date": "2006-10-06",
      "closing_days_ids": [],
      "datlinq_code": 964774,
      "email": null,
      "id": 17692,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "PLUCHART",
      "phone_number": "+33 327800887",
      "postal_code": "59283",
      "siren": "492085527",
      "siret": "49208552700017",
      "status": "M",
      "store_name": "Boulangerie Artesienne Des Pains",
      "street": "Rue marechal joffre",
      "street_number": 7,
      "turnover": 190000,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST LYS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964793,
      "email": null,
      "id": 17709,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561769866",
      "postal_code": "31470",
      "siren": "499691947",
      "siret": "49969194700018",
      "status": "M",
      "store_name": "Boulangerie aux Delys",
      "street": "avenue de Toulouse",
      "street_number": 19,
      "turnover": 459754,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAMBERSART",
      "client_creation_date": "2003-10-28",
      "closing_days_ids": [],
      "datlinq_code": 964810,
      "email": null,
      "id": 17723,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BELE CHARLES",
      "phone_number": "+33 320923290",
      "postal_code": "59130",
      "siren": "450487327",
      "siret": "45048732700014",
      "status": "P",
      "store_name": "Boulangerie Bele",
      "street": "avenue Henri Delecaux",
      "street_number": 38,
      "turnover": 350000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ESTREES ST DENIS",
      "client_creation_date": "24-7-2008",
      "closing_days_ids": [],
      "datlinq_code": 964846,
      "email": null,
      "id": 17740,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R8533001",
      "location_areas_ids": [],
      "owner_name": "BRANLANT",
      "phone_number": "03-44413179",
      "postal_code": "60190",
      "siren": "429755804",
      "siret": "42975580400029",
      "status": "G",
      "store_name": "Boulangerie Branlant",
      "street": "rue de la Republique",
      "street_number": 42,
      "turnover": 340000,
      "user_id": 311,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NEUVILLE AUX BOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964884,
      "email": null,
      "id": 17765,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 238910018",
      "postal_code": "45170",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Coint Gerard",
      "street": "rue Dollon",
      "street_number": 21,
      "turnover": 197000,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SOUMOULOU",
      "client_creation_date": "1993-07-01",
      "closing_days_ids": [],
      "datlinq_code": 964895,
      "email": null,
      "id": 17774,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1456D001",
      "location_areas_ids": [],
      "owner_name": "cuyala",
      "phone_number": "05-59046019",
      "postal_code": "64420",
      "siren": "393058193",
      "siret": "39305819300011",
      "status": "P",
      "store_name": "Boulangerie Cuyala",
      "street": "avenue Lasbordes",
      "street_number": 25,
      "turnover": 366969,
      "user_id": 208,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOIS EN ARDRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964932,
      "email": null,
      "id": 17808,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321199920",
      "postal_code": "62610",
      "siren": "499830362",
      "siret": "49983036200012",
      "status": "P",
      "store_name": "Boulangerie du Village",
      "street": "Rue General De Saint Just",
      "street_number": 123,
      "turnover": 150000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TREMBLAY EN FRANCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964959,
      "email": null,
      "id": 17829,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Lefèvre ",
      "phone_number": "01-49639088",
      "postal_code": "93290",
      "siren": "478835648",
      "siret": "47883564800047",
      "status": "P",
      "store_name": "Boulangerie Lefèvre",
      "street": "avenue Roger Salengro",
      "street_number": 68,
      "turnover": 400000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLENEUVE D ASCQ",
      "client_creation_date": "2004-02-17",
      "closing_days_ids": [],
      "datlinq_code": 964976,
      "email": null,
      "id": 17843,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011723252110",
      "location_areas_ids": [],
      "owner_name": "GHILLEBAERT",
      "phone_number": "+33 320568820",
      "postal_code": "59650",
      "siren": "342590767",
      "siret": "34259076700022",
      "status": "G",
      "store_name": "Boulangerie Banette Ghillebaert Philippe",
      "street": "rue du General Leclerc",
      "street_number": 2,
      "turnover": 390000,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GONESSE",
      "client_creation_date": "1-9-2008",
      "closing_days_ids": [],
      "datlinq_code": 964978,
      "email": null,
      "id": 17844,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1760F001",
      "location_areas_ids": [],
      "owner_name": "FRIAA",
      "phone_number": "000-000",
      "postal_code": "95500",
      "siren": "508135712",
      "siret": "50813571200018",
      "status": "P",
      "store_name": "Boulangerie Pâtisserie Gonesse",
      "street": "square des Sports",
      "street_number": 1,
      "turnover": 269942,
      "user_id": 79,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AUBERVILLIERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964992,
      "email": "erouel.ali@gmail.com",
      "id": 17856,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "14122001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48349656/06117994",
      "postal_code": "93300",
      "siren": "497592766",
      "siret": "49759276600016",
      "status": "M",
      "store_name": "Boulangerie les Saveurs de l'Orient",
      "street": "rue Danielle Casanova",
      "street_number": 126,
      "turnover": 170000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHOISY LE ROI",
      "client_creation_date": "1-1-2004",
      "closing_days_ids": [],
      "datlinq_code": 965065,
      "email": null,
      "id": 17920,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "YAKLEF LACHAAL",
      "phone_number": "01-48535988",
      "postal_code": "94600",
      "siren": "449596980",
      "siret": "44959698000010",
      "status": "P",
      "store_name": "Boulangerie Lachaal",
      "street": "avenue Victor Hugo",
      "street_number": 57,
      "turnover": 280000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MANDE",
      "client_creation_date": "2009",
      "closing_days_ids": [],
      "datlinq_code": 965072,
      "email": null,
      "id": 17925,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R9004001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43653217",
      "postal_code": "94160",
      "siren": "508225166",
      "siret": "50822516600018",
      "status": "M",
      "store_name": "Boulangerie Blavette",
      "street": "avenue Alphand",
      "street_number": 20,
      "turnover": 350000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LIANCOURT",
      "client_creation_date": "2015",
      "closing_days_ids": [],
      "datlinq_code": 965083,
      "email": null,
      "id": 17930,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1653D001",
      "location_areas_ids": [],
      "owner_name": "Corbière et Beranger ",
      "phone_number": "03-44602543",
      "postal_code": "60140",
      "siren": "391969557",
      "siret": "39196955700092",
      "status": "M",
      "store_name": "Boulangerie le Four à Bois",
      "street": "rue Roger Duplessis",
      "street_number": 14,
      "turnover": 730000,
      "user_id": 78,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLETY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965086,
      "email": null,
      "id": 17933,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "AUXENFANTS",
      "phone_number": "+33 321952048",
      "postal_code": "62380",
      "siren": "433120011",
      "siret": "43312001100021",
      "status": "M",
      "store_name": "Boulangerie Auxenfants René",
      "street": "route Nationale",
      "street_number": 57,
      "turnover": 400000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANNEZIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965125,
      "email": "jean-Marc.legrand9@orange.fr",
      "id": 17962,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012003252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321564493",
      "postal_code": "62232",
      "siren": "402239040",
      "siret": "40223904000023",
      "status": "G",
      "store_name": "Boulangerie Au Boulot",
      "street": "rue de la Mairie",
      "street_number": 22,
      "turnover": 310000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BALMA",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965150,
      "email": null,
      "id": 17979,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013217252110",
      "location_areas_ids": [],
      "owner_name": "GUILLOT LAURENT",
      "phone_number": "+33 561240064",
      "postal_code": "31130",
      "siren": "424880391",
      "siret": "42488039100026",
      "status": "G",
      "store_name": "Boulangerie Maison Guillot",
      "street": "avenue Pierre Coupeau",
      "street_number": 2,
      "turnover": 586000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAURAINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965154,
      "email": null,
      "id": 17982,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321235827",
      "postal_code": "62217",
      "siren": "504819392",
      "siret": "50481939200011",
      "status": "P",
      "store_name": "Boulangerie Maleska",
      "street": "avenue Pierre Bolle",
      "street_number": 8,
      "turnover": 250000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WATTEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965170,
      "email": null,
      "id": 17991,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321882367",
      "postal_code": "59143",
      "siren": "433604295",
      "siret": "43360429500017",
      "status": "P",
      "store_name": "Boulangerie Martinez",
      "street": "rue Saint Antoine",
      "street_number": 8,
      "turnover": 210000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLERMONT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965175,
      "email": null,
      "id": 17995,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561963003",
      "postal_code": "09420",
      "siren": "411744634",
      "siret": "41174463400014",
      "status": "P",
      "store_name": "Boulangerie Mauret",
      "street": "Peyruc",
      "street_number": null,
      "turnover": 110000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MEUDON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965211,
      "email": null,
      "id": 18025,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0565B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "92190",
      "siren": "512742974",
      "siret": "51274297400011",
      "status": "P",
      "store_name": "Boulangerie Yousra",
      "street": "rue des Marais",
      "street_number": 60,
      "turnover": 300000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PUYCALVEL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965217,
      "email": null,
      "id": 18028,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "GONTIE MICHEL",
      "phone_number": "+33 563759744",
      "postal_code": "81440",
      "siren": "391914512",
      "siret": "39191451200010",
      "status": "M",
      "store_name": "Boulangerie Pain Et Nature",
      "street": "Douasso",
      "street_number": null,
      "turnover": 256000,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AUCHEL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965271,
      "email": null,
      "id": 18066,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010002754252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321270362",
      "postal_code": "62260",
      "siren": "521731281",
      "siret": "52173128100015",
      "status": "M",
      "store_name": "Boulangerie Pâtisserie Salomez",
      "street": "rue Arthur Lamendin",
      "street_number": 39,
      "turnover": 400000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "17/07/2009",
      "closing_days_ids": [],
      "datlinq_code": 965321,
      "email": null,
      "id": 18103,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "75011",
      "siren": "513785600",
      "siret": "51378560000018",
      "status": "P",
      "store_name": "Boulangerie Moisson Des Saveurs",
      "street": "boulevard Beaumarchais",
      "street_number": 86,
      "turnover": 590000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUNE",
      "client_creation_date": "2007-07-01",
      "closing_days_ids": [],
      "datlinq_code": 965457,
      "email": null,
      "id": 18116,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Gagelin",
      "phone_number": "+33 380228475",
      "postal_code": "21200",
      "siren": "499895142",
      "siret": "49989514200010",
      "status": "M",
      "store_name": "Boulangerie la Fournée Beaunoise",
      "street": "route de Dijon",
      "street_number": 166,
      "turnover": 515000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA BUSSIERE SUR OUCHE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965578,
      "email": "ouchotte@orange.fr",
      "id": 18142,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010390252110",
      "location_areas_ids": [],
      "owner_name": "benoit guyod bruno",
      "phone_number": "+33 380490162",
      "postal_code": "21360",
      "siren": "495145781",
      "siret": "49514578100011",
      "status": "P",
      "store_name": "Boulangerie Artisanale l'Ouchotte",
      "street": "la Forge",
      "street_number": 0,
      "turnover": 140000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAIGNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965587,
      "email": null,
      "id": 18144,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "galimard patrice",
      "phone_number": "+33 380814171",
      "postal_code": "21330",
      "siren": "382843258",
      "siret": "38284325800015",
      "status": "P",
      "store_name": "Boulangerie La Belle Fournee",
      "street": "Route de Tonnerre",
      "street_number": null,
      "turnover": 140000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRANDPARIGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965614,
      "email": null,
      "id": 18150,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233490069",
      "postal_code": "50600",
      "siren": "342840873",
      "siret": "34284087300034",
      "status": "P",
      "store_name": "Boulangerie Jean-Claude",
      "street": "le Bourg",
      "street_number": null,
      "turnover": 140000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST EVROULT NOTRE DAME DU BOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965653,
      "email": null,
      "id": 18163,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "61550",
      "siren": "327294641",
      "siret": "32729464100011",
      "status": "P",
      "store_name": "Boulangerie Crépinel",
      "street": "Grande Rue",
      "street_number": null,
      "turnover": 135000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THORIGNE FOUILLARD",
      "client_creation_date": "2010-02-19",
      "closing_days_ids": [],
      "datlinq_code": 965960,
      "email": null,
      "id": 18190,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "GUERROIS",
      "phone_number": "02-99620543",
      "postal_code": "35235",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie l'Atelier du Pain",
      "street": "rue Beaumanoir",
      "street_number": 6,
      "turnover": 250000,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ECULLY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 966002,
      "email": null,
      "id": 2365,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "69130",
      "siren": "520488586",
      "siret": "52048858600014",
      "status": "P",
      "store_name": "E.K",
      "street": "chemin des Cerisiers",
      "street_number": 40,
      "turnover": 150000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VENDIN LES BETHUNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 966016,
      "email": null,
      "id": 18195,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010000316252110",
      "location_areas_ids": [],
      "owner_name": "DUPONT FRANSOIS",
      "phone_number": "000-000",
      "postal_code": "62232",
      "siren": "789681376",
      "siret": "78968137600016",
      "status": "M",
      "store_name": "Boulangerie Pains Et Delices",
      "street": "rue Pierre Mendes France",
      "street_number": 8,
      "turnover": 211000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "REIMS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 966179,
      "email": "la-fournee-croquante@orange.fr",
      "id": 18207,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003151252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326248393",
      "postal_code": "51100",
      "siren": "479137507",
      "siret": "47913750700022",
      "status": "G",
      "store_name": "Boulangerie la Fournée Croquante",
      "street": "rue Gambetta",
      "street_number": 100,
      "turnover": 323633,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AVANNE AVENEY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 968078,
      "email": null,
      "id": 18222,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010528252110",
      "location_areas_ids": [],
      "owner_name": "CLERGET",
      "phone_number": "+33 381521839",
      "postal_code": "25720",
      "siren": "531784338",
      "siret": "53178433800018",
      "status": "M",
      "store_name": "Boulangerie Pains & Delices",
      "street": "rue de l Eglise",
      "street_number": 22,
      "turnover": 230000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VERTOU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 968367,
      "email": null,
      "id": 38188,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-51794600",
      "postal_code": "44120",
      "siren": "856801519",
      "siret": "85680151900070",
      "status": "EMPTY_STATUS",
      "store_name": "United Biscuit France",
      "street": "route du Mortier Vannerie",
      "street_number": 27,
      "turnover": null,
      "user_id": 138,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SABLE SUR SARTHE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 968557,
      "email": null,
      "id": 2369,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243957888",
      "postal_code": "72300",
      "siren": "520423294",
      "siret": "52042329400013",
      "status": "P",
      "store_name": "Le Régal",
      "street": "rue Aristide Briand",
      "street_number": 2,
      "turnover": 0,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-1-2002",
      "closing_days_ids": [],
      "datlinq_code": 969100,
      "email": "maisonbichon@hotmail.com",
      "id": 18226,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "U0503001",
      "location_areas_ids": [],
      "owner_name": "DELGADO ELISEE",
      "phone_number": "01-9596036035",
      "postal_code": "75010",
      "siren": "440672970",
      "siret": "44067297000025",
      "status": "M",
      "store_name": "Boulangerie Maison Bichon",
      "street": "rue Cail",
      "street_number": 2,
      "turnover": 650000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VANDOEUVRE LES NANCY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 970319,
      "email": null,
      "id": 18235,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1270C001",
      "location_areas_ids": [],
      "owner_name": "Clop",
      "phone_number": "03-83515767",
      "postal_code": "54500",
      "siren": "502752108",
      "siret": "50275210800022",
      "status": "M",
      "store_name": "Boulangerie le Blé d'Or",
      "street": "rue Aristide Briand",
      "street_number": 9,
      "turnover": 200000,
      "user_id": 106,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAGNES SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 972066,
      "email": null,
      "id": 2377,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93733734",
      "postal_code": "06800",
      "siren": "410599534",
      "siret": "41059953400014",
      "status": "P",
      "store_name": "Le Fournil Pasqualini",
      "street": "rue J P Pasqualini",
      "street_number": 3,
      "turnover": 20000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MIGNALOUX BEAUVOIR",
      "client_creation_date": "2001-01-01",
      "closing_days_ids": [],
      "datlinq_code": 972234,
      "email": null,
      "id": 18246,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0630A001",
      "location_areas_ids": [],
      "owner_name": "BOULOUX",
      "phone_number": "05-49475297",
      "postal_code": "86550",
      "siren": "531941656",
      "siret": "53194165600013",
      "status": "M",
      "store_name": "Boulangerie La Mie Do Re",
      "street": "route de Limoges",
      "street_number": 1480,
      "turnover": 350000,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIZILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 972765,
      "email": null,
      "id": 47659,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0109C001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76087000",
      "postal_code": "38220",
      "siren": "514488113",
      "siret": "51448811300010",
      "status": "G",
      "store_name": "Croissanterie Lili Croutille (Liviz)",
      "street": "avenue Maurice Thorez",
      "street_number": 742,
      "turnover": 1441891,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PROPRIANO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 973121,
      "email": null,
      "id": 18251,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-95760171",
      "postal_code": "20110",
      "siren": "812537744",
      "siret": "81253774400011",
      "status": "P",
      "store_name": "Patisserie Peche Mignon",
      "street": "avenue Napoleon III",
      "street_number": 9,
      "turnover": 10000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "METZ",
      "client_creation_date": "2007-02-01",
      "closing_days_ids": [],
      "datlinq_code": 973446,
      "email": null,
      "id": 18254,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010960252110",
      "location_areas_ids": [],
      "owner_name": "Jean singler",
      "phone_number": "000-000",
      "postal_code": "57000",
      "siren": "494921240",
      "siret": "49492124000011",
      "status": "P",
      "store_name": "Boulangerie Patisserie Lacyleen",
      "street": "place des Charrons",
      "street_number": 9,
      "turnover": 170000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 974307,
      "email": null,
      "id": 2382,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "75008",
      "siren": "502407976",
      "siret": "50240797600039",
      "status": "M",
      "store_name": "Romantica Café",
      "street": "Rue Du Chevalier de Saint Georges",
      "street_number": 7,
      "turnover": 729770,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ELANCOURT",
      "client_creation_date": "21-9-2005",
      "closing_days_ids": [],
      "datlinq_code": 974345,
      "email": null,
      "id": 18260,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "EEUWAERT",
      "phone_number": "01-30513140",
      "postal_code": "78990",
      "siren": "484163688",
      "siret": "48416368800027",
      "status": "G",
      "store_name": "Boulangerie Eeuwaert",
      "street": "centre Commercial des 7 Mares",
      "street_number": null,
      "turnover": 1364400,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIRE NORMANDIE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 974892,
      "email": null,
      "id": 18270,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231682547",
      "postal_code": "14500",
      "siren": "798222337",
      "siret": "79822233700015",
      "status": "P",
      "store_name": "Boulangerie aux Douceurs de Martilly",
      "street": "place de Martilly",
      "street_number": 1,
      "turnover": 100000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 975200,
      "email": null,
      "id": 2387,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48244675",
      "postal_code": "75009",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Sandwicherie Jour Apres Jour",
      "street": "rue Cadet",
      "street_number": 1,
      "turnover": 10000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PORT VENDRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 975228,
      "email": null,
      "id": 2388,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010026020252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468839713",
      "postal_code": "66660",
      "siren": "812780732",
      "siret": "0",
      "status": "M",
      "store_name": "Les Pains du Quai",
      "street": "quai Pierre Forgas",
      "street_number": 11,
      "turnover": 150000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 975438,
      "email": null,
      "id": 2392,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45863641",
      "postal_code": "75013",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie Pomme de Pain",
      "street": "rue Marie Andree Lagroud Weill Halle",
      "street_number": 9,
      "turnover": null,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 975511,
      "email": null,
      "id": 18274,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Saibron",
      "phone_number": "01-43350107",
      "postal_code": "75014",
      "siren": "510944275",
      "siret": "51094427500013",
      "status": "P",
      "store_name": "Boulangerie Macaron's Café Dominique Saibron",
      "street": "avenue du General Leclerc",
      "street_number": 77,
      "turnover": 2000000,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GUERIGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 975739,
      "email": null,
      "id": 18276,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386373141",
      "postal_code": "58130",
      "siren": "523883130",
      "siret": "52388313000016",
      "status": "M",
      "store_name": "Boulanderie l'Amarena",
      "street": "Grande Rue",
      "street_number": 16,
      "turnover": 200000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AVIGNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 975865,
      "email": null,
      "id": 2394,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-32741308",
      "postal_code": "84000",
      "siren": "500676085",
      "siret": "50067608500011",
      "status": "P",
      "store_name": "Restaurant le Pêché de la Gourmandise",
      "street": "rue Petramale",
      "street_number": 18,
      "turnover": 125000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BREST",
      "client_creation_date": "2009",
      "closing_days_ids": [],
      "datlinq_code": 975897,
      "email": null,
      "id": 47662,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "09-67465484",
      "postal_code": "29200",
      "siren": "518027438",
      "siret": "51802743800036",
      "status": "P",
      "store_name": "Le Fournil du Port (Sounalisa)",
      "street": "quai de la Douane",
      "street_number": 22,
      "turnover": 150000,
      "user_id": 147,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-10-2009",
      "closing_days_ids": [],
      "datlinq_code": 975942,
      "email": null,
      "id": 2397,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "VENTURA SERGE",
      "phone_number": "01-42613758",
      "postal_code": "75001",
      "siren": "515299741",
      "siret": "51529974100014",
      "status": "EMPTY_STATUS",
      "store_name": "IL Café",
      "street": "rue des Capucines",
      "street_number": 23,
      "turnover": 400000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEBON SUR YVETTE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 976104,
      "email": null,
      "id": 2398,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-64868141",
      "postal_code": "91140",
      "siren": "582150041",
      "siret": "58215004101031",
      "status": "EMPTY_STATUS",
      "store_name": "Pomme de Pain",
      "street": "rue du Chemin de Briis",
      "street_number": 2,
      "turnover": 1227562,
      "user_id": 84,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VOIRON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 977235,
      "email": null,
      "id": 18298,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "38508001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76658888",
      "postal_code": "38500",
      "siren": "394213649",
      "siret": "39421364900038",
      "status": "M",
      "store_name": "Au Pain d'Antan",
      "street": "cours Becquart Castelbon",
      "street_number": 42,
      "turnover": 350000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COUZON AU MONT D OR",
      "client_creation_date": "2008",
      "closing_days_ids": [],
      "datlinq_code": 977347,
      "email": null,
      "id": 18309,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "69273001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78222119",
      "postal_code": "69270",
      "siren": "434526810",
      "siret": "43452681000016",
      "status": "G",
      "store_name": "Boulangerie le Moulin de Couzon",
      "street": "avenue du General de Gaulle",
      "street_number": 89,
      "turnover": 440000,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "OUCHES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 977348,
      "email": null,
      "id": 18310,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1258C001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-77668322",
      "postal_code": "42155",
      "siren": "449585272",
      "siret": "44958527200023",
      "status": "P",
      "store_name": "Boulangerie Bardou",
      "street": "rue Principale",
      "street_number": 180,
      "turnover": 200000,
      "user_id": 62,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST ANDRE DE L EURE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 977762,
      "email": null,
      "id": 2404,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232372474",
      "postal_code": "27220",
      "siren": "522735208",
      "siret": "52273520800012",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Vernoline",
      "street": "place de Gaulle",
      "street_number": 2,
      "turnover": null,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST REMY DE PROVENCE",
      "client_creation_date": "2009",
      "closing_days_ids": [],
      "datlinq_code": 978013,
      "email": null,
      "id": 38190,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-90921108",
      "postal_code": "13210",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Confiserie Lilamand",
      "street": "avenue Albert Schweitzer",
      "street_number": 5,
      "turnover": 40000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAUSSONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 979683,
      "email": null,
      "id": 18457,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Eric OUTIN",
      "phone_number": "04-71051106",
      "postal_code": "43150",
      "siren": "504217753",
      "siret": "50421775300012",
      "status": "P",
      "store_name": "Fournil de la Fontaine",
      "street": "Le Bourg",
      "street_number": null,
      "turnover": 160000,
      "user_id": 54,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 980022,
      "email": null,
      "id": 18465,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40205773",
      "postal_code": "44000",
      "siren": "521867226",
      "siret": "52186722600024",
      "status": "P",
      "store_name": "Boulangerie Irla",
      "street": "rue des Hauts Paves",
      "street_number": 8,
      "turnover": 250000,
      "user_id": 144,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NEUVILLE SUR ESCAUT",
      "client_creation_date": "2007-01-01",
      "closing_days_ids": [],
      "datlinq_code": 980369,
      "email": null,
      "id": 18476,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 327440061",
      "postal_code": "59293",
      "siren": "520914854",
      "siret": "52091485400010",
      "status": "P",
      "store_name": "Boulangerie aux Petits Délices",
      "street": "rue Louis Pasteur",
      "street_number": 19,
      "turnover": 190000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALLAURIS",
      "client_creation_date": "2010-03-01",
      "closing_days_ids": [],
      "datlinq_code": 980435,
      "email": null,
      "id": 274,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0047E001",
      "location_areas_ids": [],
      "owner_name": "Pauget Véronique",
      "phone_number": "04-92969559",
      "postal_code": "06220",
      "siren": "521000547",
      "siret": "52100054700013",
      "status": "M",
      "store_name": "Boulangerie Cheminat Et Cie",
      "street": "avenue de la Liberte",
      "street_number": 50,
      "turnover": 488000,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TANNERON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 980466,
      "email": null,
      "id": 18477,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93662495",
      "postal_code": "83440",
      "siren": "521219212",
      "siret": "52121921200011",
      "status": "P",
      "store_name": "Boulangerie le P'tit Pain",
      "street": "place de la Mairie",
      "street_number": null,
      "turnover": 100000,
      "user_id": 185,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MIRAMAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 980487,
      "email": null,
      "id": 18478,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-18934726",
      "postal_code": "13140",
      "siren": "520923715",
      "siret": "52092371500012",
      "status": "P",
      "store_name": "Boulangerie Falbo",
      "street": "boulevard Aristide Briand",
      "street_number": 24,
      "turnover": 210000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 981058,
      "email": null,
      "id": 276,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1676D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93134026",
      "postal_code": "06000",
      "siren": "388506586",
      "siret": "38850658600014",
      "status": "P",
      "store_name": "Boulangerie la Nicoise",
      "street": "rue Gubernatis",
      "street_number": 21,
      "turnover": 250000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MANTES LA JOLIE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 981532,
      "email": null,
      "id": 2448,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0520C001",
      "location_areas_ids": [],
      "owner_name": "HASSAN",
      "phone_number": "000-000",
      "postal_code": "78200",
      "siren": "521020859",
      "siret": "52102085900018",
      "status": "P",
      "store_name": "Sandwicherie Gassichaud",
      "street": "rue Maurice Braunstein",
      "street_number": 108,
      "turnover": 180000,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARTIGNAS SUR JALLE",
      "client_creation_date": "2011-01-01",
      "closing_days_ids": [],
      "datlinq_code": 981732,
      "email": null,
      "id": 18527,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXD47001",
      "location_areas_ids": [],
      "owner_name": "Charriot",
      "phone_number": "05-56214150",
      "postal_code": "33127",
      "siren": "521487355",
      "siret": "52148735500013",
      "status": "G",
      "store_name": "Boulangerie le Remède d'epicure",
      "street": "avenue du 18 Juin 1940",
      "street_number": null,
      "turnover": 757969,
      "user_id": 206,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PIERREFITTE SUR SEINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 981870,
      "email": null,
      "id": 38191,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "93380",
      "siren": "521805713",
      "siret": "52180571300018",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie BLA Distribution",
      "street": "avenue Nungesser et Coli",
      "street_number": 46,
      "turnover": null,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAGNEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 981893,
      "email": null,
      "id": 41535,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "09-52564213",
      "postal_code": "92220",
      "siren": "521756486",
      "siret": "52175648600010",
      "status": "P",
      "store_name": "Sandwicherie Best Of",
      "street": "place de la Republique",
      "street_number": 4,
      "turnover": 150000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 982241,
      "email": null,
      "id": 2468,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42365811",
      "postal_code": "75002",
      "siren": "433432820",
      "siret": "43343282000176",
      "status": "P",
      "store_name": "CO Jean",
      "street": "rue Reaumur",
      "street_number": 121,
      "turnover": 10000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GIRONS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 982657,
      "email": null,
      "id": 18560,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561048388",
      "postal_code": "09200",
      "siren": "408531234",
      "siret": "40853123400032",
      "status": "P",
      "store_name": "Boulangerie Soum",
      "street": "place Pasteur",
      "street_number": 5,
      "turnover": 145000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BLAGNAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 982700,
      "email": null,
      "id": 18561,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 663841063",
      "postal_code": "31700",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie la Goutte d'Or",
      "street": "rue de la Croix Blanche",
      "street_number": 1,
      "turnover": 160000,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA SALVETAT ST GILLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 983375,
      "email": null,
      "id": 18576,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "GUICHET MARC",
      "phone_number": "+33 561077818",
      "postal_code": "31880",
      "siren": "509786976",
      "siret": "50978697600019",
      "status": "M",
      "store_name": "Boulangerie Valse Des Pains",
      "street": "avenue des Pyrenees",
      "street_number": 36,
      "turnover": 404110,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LIEUSAINT",
      "client_creation_date": "1-10-2003",
      "closing_days_ids": [],
      "datlinq_code": 983765,
      "email": null,
      "id": 2482,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R4040001",
      "location_areas_ids": [],
      "owner_name": "SOTTEAU",
      "phone_number": "01-64880723",
      "postal_code": "77127",
      "siren": "752137463",
      "siret": "0",
      "status": "M",
      "store_name": "Boulangerie Pains et Viennoiseries du Colombier",
      "street": "place du Colombier",
      "street_number": 21,
      "turnover": 250000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE MANS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 983929,
      "email": null,
      "id": 18631,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Guyot",
      "phone_number": "+33 243841479",
      "postal_code": "72100",
      "siren": "504851007",
      "siret": "50485100700014",
      "status": "P",
      "store_name": "Boulangerie Davoust",
      "street": "avenue Felix Geneslay",
      "street_number": 422,
      "turnover": 209000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAULIEU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 984703,
      "email": null,
      "id": 32854,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012554252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 380641713",
      "postal_code": "21210",
      "siren": "016850422",
      "siret": "01685042200011",
      "status": "P",
      "store_name": "Pâtisserie Guillemard",
      "street": "rue du Marche",
      "street_number": 11,
      "turnover": 180000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 984711,
      "email": null,
      "id": 32855,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R6773001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43077759",
      "postal_code": "75012",
      "siren": "492342746",
      "siret": "49234274600012",
      "status": "EMPTY_STATUS",
      "store_name": "Patisserie le Panthéon",
      "street": "rue Saint-Jacques",
      "street_number": 200,
      "turnover": null,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTGERON",
      "client_creation_date": "20-3-2003",
      "closing_days_ids": [],
      "datlinq_code": 984744,
      "email": null,
      "id": 18677,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "PIOT",
      "phone_number": "01-69036763",
      "postal_code": "91230",
      "siren": "448148080",
      "siret": "44814808000022",
      "status": "P",
      "store_name": "Boulangerie Cedric Piot",
      "street": "avenue de la Republique",
      "street_number": 176,
      "turnover": 160000,
      "user_id": 84,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HAGONDANGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 984848,
      "email": null,
      "id": 18722,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387715053",
      "postal_code": "57300",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie la Petite Douceur",
      "street": "rue de la Gare",
      "street_number": 21,
      "turnover": null,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTROUGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 984869,
      "email": null,
      "id": 18732,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42534348",
      "postal_code": "92120",
      "siren": "512893272",
      "siret": "51289327200017",
      "status": "P",
      "store_name": "Boulangerie Bonheur et Gourmandise (Guerard)",
      "street": "avenue de la Republique",
      "street_number": 78,
      "turnover": 320000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHOISY LE ROI",
      "client_creation_date": "29-6-2007",
      "closing_days_ids": [],
      "datlinq_code": 984879,
      "email": null,
      "id": 18737,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R7429001",
      "location_areas_ids": [],
      "owner_name": "AMINE BOUHARBA",
      "phone_number": "01-48907934",
      "postal_code": "94600",
      "siren": "498800192",
      "siret": "49880019200011",
      "status": "P",
      "store_name": "Boulangerie la Princesse",
      "street": "avenue Gambetta",
      "street_number": 9,
      "turnover": 240000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTEILS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 984924,
      "email": null,
      "id": 18761,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "GROS FABRICE",
      "phone_number": "+33 565296316",
      "postal_code": "12200",
      "siren": "517745030",
      "siret": "51774503000018",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Gros",
      "street": "le Bourg",
      "street_number": null,
      "turnover": null,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2005",
      "closing_days_ids": [],
      "datlinq_code": 985004,
      "email": null,
      "id": 2504,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1829D001",
      "location_areas_ids": [],
      "owner_name": "DALHOUMI",
      "phone_number": null,
      "postal_code": "75018",
      "siren": "504032277",
      "siret": "50403227700015",
      "status": "P",
      "store_name": "Boulangerie le Fournil de Vaunenargue",
      "street": "rue Vauvenargues",
      "street_number": 70,
      "turnover": 200000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PERPIGNAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985096,
      "email": null,
      "id": 2509,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468576033",
      "postal_code": "66000",
      "siren": "501676746",
      "siret": "50167674600024",
      "status": "M",
      "store_name": "La Mie Caline",
      "street": "rue Alsace Lorraine",
      "street_number": 2,
      "turnover": 350000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BRUGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985521,
      "email": null,
      "id": 32869,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "20042001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56430606",
      "postal_code": "33520",
      "siren": "353618564",
      "siret": "35361856400010",
      "status": "P",
      "store_name": "Patisserie Le Bouchon De Bordeaux",
      "street": "chemin de Bacchus",
      "street_number": 12,
      "turnover": 100,
      "user_id": 207,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAULEON LICHARRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985573,
      "email": null,
      "id": 18854,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BESSAGNET Jean",
      "phone_number": "05-59280033",
      "postal_code": "64130",
      "siren": "402158992",
      "siret": "40215899200014",
      "status": "P",
      "store_name": "Boulangerie Bessagnet",
      "street": "rue Victor Hugo",
      "street_number": 35,
      "turnover": 250000,
      "user_id": 214,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARTHENAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985627,
      "email": null,
      "id": 18875,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "79005001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-49941129",
      "postal_code": "79200",
      "siren": "343926267",
      "siret": "34392626700034",
      "status": "M",
      "store_name": "Boulangerie Wypych",
      "street": "av du 114e Regiment d Infanterie",
      "street_number": 23,
      "turnover": 230000,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PESSAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985665,
      "email": null,
      "id": 18897,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56453538",
      "postal_code": "33600",
      "siren": "382496032",
      "siret": "38249603200014",
      "status": "P",
      "store_name": "Boulangerie à la Marquise d Arago",
      "street": "avenue Arago",
      "street_number": null,
      "turnover": 300000,
      "user_id": 206,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AULNAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985737,
      "email": null,
      "id": 18934,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "LI045001",
      "location_areas_ids": [],
      "owner_name": "BOUILLON",
      "phone_number": "05-46331183",
      "postal_code": "17470",
      "siren": "421768789",
      "siret": "42176878900016",
      "status": "P",
      "store_name": "Boulangerie Jacky Bouillon",
      "street": "rue Porte Matha",
      "street_number": 34,
      "turnover": 80000,
      "user_id": 152,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARTELANGE",
      "client_creation_date": "2000-02-01",
      "closing_days_ids": [],
      "datlinq_code": 477541,
      "email": null,
      "id": 50268,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010121252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+32 63600157",
      "postal_code": "6630",
      "siren": "441332875",
      "siret": "2049415505",
      "status": "P",
      "store_name": "Boulangerie-Patisserie Stouvenaker",
      "street": "route de Bastogne",
      "street_number": 3,
      "turnover": 200000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BONINNE-GELBRESSÉE",
      "client_creation_date": "2001-02-01",
      "closing_days_ids": [],
      "datlinq_code": 502196,
      "email": null,
      "id": 50286,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016369252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+32 81214877",
      "postal_code": "5021",
      "siren": "837084858",
      "siret": "2200091741",
      "status": "P",
      "store_name": "Boulangerie la Maison Demoulin",
      "street": "route de Hannut",
      "street_number": 278,
      "turnover": 100000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NALINNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 531259,
      "email": null,
      "id": 50316,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016326252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+32 71215558",
      "postal_code": "6120",
      "siren": "0810933361",
      "siret": "2180417864",
      "status": "M",
      "store_name": "Boulangerie la Palette Sucrée",
      "street": "rue Couture",
      "street_number": 18,
      "turnover": 350000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARCINELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 556561,
      "email": "douceursetgourmandises@hotmail.com",
      "id": 50321,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012053252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+32 71562636",
      "postal_code": "6001",
      "siren": "836526911",
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Douceurs et gourmandises - SPRL Kimmes",
      "street": "rue Destrée",
      "street_number": 96,
      "turnover": 150000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LONGWY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 556841,
      "email": null,
      "id": 4577,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010030328252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 382444241",
      "postal_code": "54400",
      "siren": "823990767",
      "siret": null,
      "status": "G",
      "store_name": "DPDG",
      "street": "rue Carnot",
      "street_number": 11,
      "turnover": 500000,
      "user_id": 393,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HERZEELE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 632022,
      "email": null,
      "id": 33233,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010002706252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328276600",
      "postal_code": "59470",
      "siren": "344847827",
      "siret": "34484782700013",
      "status": "P",
      "store_name": "Coccimarket",
      "street": "rue de Bambecque",
      "street_number": 162,
      "turnover": 70000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MACON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 634563,
      "email": null,
      "id": 50343,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 385383325",
      "postal_code": "71000",
      "siren": "342689940",
      "siret": "34268994000027",
      "status": "M",
      "store_name": "Etablissements Got",
      "street": "rue du Port",
      "street_number": null,
      "turnover": 2351155,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MARTIN DE VALGALGUES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 674059,
      "email": null,
      "id": 32279,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010000843252140",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466300886",
      "postal_code": "30520",
      "siren": "318759941",
      "siret": "31875994100038",
      "status": "EMPTY_STATUS",
      "store_name": "Societe Nouvelle Alesienne De Produits De Patisser",
      "street": "le Devois",
      "street_number": null,
      "turnover": null,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RONCHIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 678683,
      "email": null,
      "id": 4611,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016867252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 674085737",
      "postal_code": "59790",
      "siren": "304979032",
      "siret": "30497903200014",
      "status": "P",
      "store_name": "Boulangeriec au Pain d'Aujourd'hui",
      "street": "avenue Jean Jaures",
      "street_number": 137,
      "turnover": 85000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VENCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 684410,
      "email": "reservation@chateau-st-martin.com",
      "id": 6,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "05223001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93580202",
      "postal_code": "06140",
      "siren": "382846418",
      "siret": "38284641800020",
      "status": "P",
      "store_name": "Hôtel Restaurant Chateau du Domaine Saint Martin",
      "street": "avenue des Templiers",
      "street_number": 2490,
      "turnover": 10000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "REIMS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 684950,
      "email": "colpart.carine@yahoo.fr",
      "id": 4640,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326072819",
      "postal_code": "51100",
      "siren": "440969939",
      "siret": "44096993900022",
      "status": "M",
      "store_name": "Boulangerie Colpart",
      "street": "rue Camille Lenoir",
      "street_number": 135,
      "turnover": 263117,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TALLOIRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 688798,
      "email": "reception@perebise.com",
      "id": 10,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "02034001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50607201",
      "postal_code": "74290",
      "siren": "350547816",
      "siret": "35054781600016",
      "status": "P",
      "store_name": "Hotel Restaurant Auberge Du Pere Bise",
      "street": "route du Port",
      "street_number": null,
      "turnover": 1000,
      "user_id": 263,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLOHARS FOUESNANT",
      "client_creation_date": "Mr Hervé",
      "closing_days_ids": [],
      "datlinq_code": 704695,
      "email": "info@campingbenodet.fr",
      "id": 32331,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "22248001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-98570238",
      "postal_code": "29950",
      "siren": "390289221",
      "siret": "39028922100017",
      "status": "M",
      "store_name": "Camping du Port de Plaisance",
      "street": "Prad Poullou",
      "street_number": null,
      "turnover": 200000,
      "user_id": 147,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THUIR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985756,
      "email": null,
      "id": 18943,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468534037",
      "postal_code": "66300",
      "siren": "434524740",
      "siret": "43452474000025",
      "status": "P",
      "store_name": "Boulangerie Le Pain Du Roussillon",
      "street": "rue de la Salanque",
      "street_number": 3,
      "turnover": 295000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AURILLAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985759,
      "email": null,
      "id": 18944,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012143252110",
      "location_areas_ids": [],
      "owner_name": "CASSAN",
      "phone_number": "000-000",
      "postal_code": "15000",
      "siren": "439578469",
      "siret": "43957846900017",
      "status": "G",
      "store_name": "Boulangerie Cassan",
      "street": "rue d Illzach",
      "street_number": 1,
      "turnover": 250000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAULEON LICHARRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985760,
      "email": null,
      "id": 18945,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-59283730",
      "postal_code": "64130",
      "siren": "439739301",
      "siret": "43973930100018",
      "status": "P",
      "store_name": "Boulangerie Ludovic",
      "street": "avenue de Belzunce",
      "street_number": 26,
      "turnover": 200000,
      "user_id": 214,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA ROCHELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985852,
      "email": "philippe.loiseau67@gmail.com",
      "id": 19004,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXC60001",
      "location_areas_ids": [],
      "owner_name": "loiseau",
      "phone_number": "05-46437611",
      "postal_code": "17000",
      "siren": "430334656",
      "siret": "43033465600039",
      "status": "G",
      "store_name": "Boulangerie Philippe Loiseau",
      "street": "place de l Ile de France",
      "street_number": 1,
      "turnover": 500000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985888,
      "email": null,
      "id": 19025,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SAINT CRIQ JEAN PIERRE",
      "phone_number": "+33 561493507",
      "postal_code": "31300",
      "siren": "797466752",
      "siret": "79746675200012",
      "status": "P",
      "store_name": "Boulangerie aux Petits Fours",
      "street": "place de la Patte d Oie",
      "street_number": 7,
      "turnover": 500000,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DAX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985889,
      "email": "boulangerie.depart@wanadoo.fr",
      "id": 19026,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RP345001",
      "location_areas_ids": [],
      "owner_name": "DEPART",
      "phone_number": "05-58742712",
      "postal_code": "40100",
      "siren": "398937391",
      "siret": "39893739100017",
      "status": "M",
      "store_name": "Boulangerie Depart",
      "street": "place du Marechal Joffre",
      "street_number": 16,
      "turnover": 300000,
      "user_id": 210,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BIARRITZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985974,
      "email": null,
      "id": 19078,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-59039785",
      "postal_code": "64200",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Bourgeais Dominique",
      "street": "avenue Reine Victoria",
      "street_number": 49,
      "turnover": null,
      "user_id": 214,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CASTRES GIRONDE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985997,
      "email": null,
      "id": 19088,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "33640",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Soci‰Û_t‰Û_ De Panification",
      "street": "rue du President Carnot",
      "street_number": null,
      "turnover": null,
      "user_id": 202,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PUYLAURENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986042,
      "email": null,
      "id": 19114,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DULAC DENIS",
      "phone_number": "+33 563820589",
      "postal_code": "81700",
      "siren": "494931389",
      "siret": "49493138900014",
      "status": "M",
      "store_name": "Boulangerie Le Moulin Du Girou",
      "street": "Prat Martel",
      "street_number": null,
      "turnover": 350000,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986048,
      "email": "artak.apoyan@yahoo.fr",
      "id": 19120,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91265293",
      "postal_code": "13009",
      "siren": "489768275",
      "siret": "48976827500013",
      "status": "P",
      "store_name": "Boulangerie Alice Et Arsen",
      "street": "boulevard Romain Rolland",
      "street_number": 397,
      "turnover": 228000,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST LAURENT DE LA SALANQUE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986061,
      "email": "edithchristophe66@orange.fr / stephane.grotter@orange.fr",
      "id": 19130,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013225252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468282461",
      "postal_code": "66250",
      "siren": "518962873",
      "siret": "51896287300015",
      "status": "G",
      "store_name": "Boulangerie Stéphane Grotter",
      "street": "rue Gabriel Peri",
      "street_number": 13,
      "turnover": 380000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROYAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986102,
      "email": null,
      "id": 19166,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0961F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46390137",
      "postal_code": "17200",
      "siren": "499221364",
      "siret": "49536011700016",
      "status": "G",
      "store_name": "Boulangerie Binjamin",
      "street": "boulevard Champlain",
      "street_number": 85,
      "turnover": 360000,
      "user_id": 152,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CASTELNAUD LA CHAPELLE",
      "client_creation_date": "2005-06-01",
      "closing_days_ids": [],
      "datlinq_code": 986496,
      "email": null,
      "id": 19195,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXB99001",
      "location_areas_ids": [],
      "owner_name": "CARRE",
      "phone_number": "05-53593390",
      "postal_code": "24250",
      "siren": "510445885",
      "siret": "51044588500013",
      "status": "G",
      "store_name": "Boulangerie Delices et Traditions",
      "street": "lieu dit Tournepique",
      "street_number": null,
      "turnover": 600000,
      "user_id": 198,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STE MAURE DE TOURAINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986675,
      "email": null,
      "id": 19227,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "37800",
      "siren": "528371412",
      "siret": "52837141200016",
      "status": "P",
      "store_name": "Boulangerie La Baguette Rustique",
      "street": "rue Auguste Chevallier",
      "street_number": 27,
      "turnover": 170000,
      "user_id": 140,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAUDENEY SUR MOSELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986736,
      "email": null,
      "id": 19239,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83432041",
      "postal_code": "54200",
      "siren": "323583047",
      "siret": "32358304700010",
      "status": "P",
      "store_name": "Boulangerie Gerard Alison",
      "street": "rue Edmond Gerard",
      "street_number": 61,
      "turnover": 130000,
      "user_id": 108,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986812,
      "email": null,
      "id": 19271,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231930288",
      "postal_code": "14000",
      "siren": "330461773",
      "siret": "33046177300054",
      "status": "P",
      "store_name": "Boulangerie Dominique",
      "street": "avenue Professeur Horatio Smith",
      "street_number": 15,
      "turnover": 280000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FONTAINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986816,
      "email": null,
      "id": 19274,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "38857001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76271213",
      "postal_code": "38600",
      "siren": "330675828",
      "siret": "33067582800025",
      "status": "G",
      "store_name": "Boulangerie De Freitas",
      "street": "avenue du Vercors",
      "street_number": 73,
      "turnover": 506000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ÉPERNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986819,
      "email": null,
      "id": 50462,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 237834052",
      "postal_code": "28230",
      "siren": "330725839",
      "siret": "33072583900022",
      "status": "P",
      "store_name": "Patisserie Ravel",
      "street": "Rue Paul Painlevé",
      "street_number": 2,
      "turnover": 350000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986821,
      "email": null,
      "id": 46589,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43595231",
      "postal_code": "75008",
      "siren": "503436214",
      "siret": "50343621400012",
      "status": "EMPTY_STATUS",
      "store_name": "la Suite Haussmann",
      "street": "boulevard Haussmann",
      "street_number": 146,
      "turnover": null,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AVIGNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986838,
      "email": null,
      "id": 32905,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0727G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-90862472",
      "postal_code": "84000",
      "siren": "505333351",
      "siret": "50533335100011",
      "status": "P",
      "store_name": "Patisserie La Tropezienne",
      "street": "rue Saint Agricol",
      "street_number": 22,
      "turnover": 150000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NEUFCHATEAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986871,
      "email": null,
      "id": 32911,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "43266001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-29941129",
      "postal_code": "88300",
      "siren": "333254993",
      "siret": "33325499300012",
      "status": "P",
      "store_name": "Patisserie Chocolaterie Goujaud Cavanna",
      "street": "rue Saint Jean",
      "street_number": 51,
      "turnover": 160000,
      "user_id": 109,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARCHES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987066,
      "email": null,
      "id": 19371,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-29327729",
      "postal_code": "88380",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie les Moulins de Séverine",
      "street": "rue de Remiremont",
      "street_number": 10,
      "turnover": 180000,
      "user_id": 109,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NOVALAISE",
      "client_creation_date": "2004",
      "closing_days_ids": [],
      "datlinq_code": 987074,
      "email": null,
      "id": 19375,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79287129",
      "postal_code": "73470",
      "siren": "330561259",
      "siret": "33056125900020",
      "status": "P",
      "store_name": "Boulangerie Bonnet",
      "street": "route du Col de l Epine",
      "street_number": 47,
      "turnover": 270000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARZON",
      "client_creation_date": "2-5-2010",
      "closing_days_ids": [],
      "datlinq_code": 987135,
      "email": null,
      "id": 19407,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1006D001",
      "location_areas_ids": [],
      "owner_name": "BRUNET",
      "phone_number": "02-97537217",
      "postal_code": "56640",
      "siren": "388758609",
      "siret": "38875860900050",
      "status": "G",
      "store_name": "Boulangerie Brunet",
      "street": "rue des Mouettes",
      "street_number": 1,
      "turnover": 450000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LES MOUTIERS EN RETZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987181,
      "email": null,
      "id": 19430,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40827547",
      "postal_code": "44760",
      "siren": "344373931",
      "siret": "34437393100015",
      "status": "P",
      "store_name": "Boulangerie Mellerin",
      "street": "rue de l Abbe Baconnais",
      "street_number": 11,
      "turnover": 180000,
      "user_id": 144,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROQUEBILLIERE",
      "client_creation_date": "2002-05-01",
      "closing_days_ids": [],
      "datlinq_code": 987311,
      "email": null,
      "id": 291,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0103D001",
      "location_areas_ids": [],
      "owner_name": "SOMAINI",
      "phone_number": "04-93034081",
      "postal_code": "06450",
      "siren": "338969454",
      "siret": "33896945400010",
      "status": "G",
      "store_name": "Boulangerie Jean Pierre Somaini",
      "street": "av Philippe Corniglion Molinier",
      "street_number": 9,
      "turnover": 450000,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAULNIERES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987335,
      "email": null,
      "id": 19515,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-99446195",
      "postal_code": "35320",
      "siren": "341300580",
      "siret": "34130058000022",
      "status": "P",
      "store_name": "Patisserie Ruaudel",
      "street": "rue des Saulniers",
      "street_number": 6,
      "turnover": 120000,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA MOTTE D AVEILLANS",
      "client_creation_date": "07/1989",
      "closing_days_ids": [],
      "datlinq_code": 987435,
      "email": null,
      "id": 19563,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Broutin",
      "phone_number": "04-76306126",
      "postal_code": "38770",
      "siren": "352138457",
      "siret": "35213845700036",
      "status": "P",
      "store_name": "Boulangerie Des Mottes",
      "street": "route de la Roche",
      "street_number": 2,
      "turnover": 100000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JARD SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987462,
      "email": null,
      "id": 19582,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-51334009",
      "postal_code": "85520",
      "siren": "402756324",
      "siret": "40275632400024",
      "status": "M",
      "store_name": "Boulangerie Patisserie Fradet",
      "street": "place de l Hotel de Ville",
      "street_number": 5,
      "turnover": 730000,
      "user_id": 153,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHARPEY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987478,
      "email": null,
      "id": 19589,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-75598695",
      "postal_code": "26300",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Au Pain Vivant",
      "street": "route de Chabeuil",
      "street_number": null,
      "turnover": 110000,
      "user_id": 170,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PRECIGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987480,
      "email": null,
      "id": 19591,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 962246545",
      "postal_code": "72300",
      "siren": "378918114",
      "siret": "37891811400026",
      "status": "M",
      "store_name": "Boulangerie Thierry Gaugain",
      "street": "rue Abbe Louis Chevallier",
      "street_number": 3,
      "turnover": 360000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAICHE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987489,
      "email": null,
      "id": 19598,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003950252110",
      "location_areas_ids": [],
      "owner_name": "RICHARD",
      "phone_number": "+33 381640047",
      "postal_code": "25120",
      "siren": "379490246",
      "siret": "37949024600012",
      "status": "P",
      "store_name": "Boulangerie Richard",
      "street": "rue du General de Gaulle",
      "street_number": 13,
      "turnover": 410000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STE FOY LES LYON",
      "client_creation_date": "2013",
      "closing_days_ids": [],
      "datlinq_code": 718435,
      "email": null,
      "id": 19,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "69811001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78844862",
      "postal_code": "69110",
      "siren": "798483491",
      "siret": "79848349100014",
      "status": "M",
      "store_name": "Boulangerie la Caserne des Pains",
      "street": "avenue de Limburg",
      "street_number": 5,
      "turnover": 320000,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST BREVIN LES PINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 718631,
      "email": null,
      "id": 4723,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40270602",
      "postal_code": "44250",
      "siren": "492818414",
      "siret": "49281841400038",
      "status": "M",
      "store_name": "Boulangerie Denion",
      "street": "avenue du President Roosevelt",
      "street_number": 48,
      "turnover": 250000,
      "user_id": 144,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST QUENTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 719241,
      "email": null,
      "id": 32360,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010006966252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 323683908",
      "postal_code": "02100",
      "siren": "804059632",
      "siret": "80405963200013",
      "status": "P",
      "store_name": "Le Neuville",
      "street": "avenue Pierre Choquart",
      "street_number": 1,
      "turnover": 140000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 719310,
      "email": null,
      "id": 20,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "M2924001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93387279",
      "postal_code": "06400",
      "siren": "316919174",
      "siret": "31691917400029",
      "status": "P",
      "store_name": "Restaurant Canelle",
      "street": "rue des Serbes",
      "street_number": 32,
      "turnover": 10000,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEMOMBLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 719494,
      "email": null,
      "id": 725,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48556981",
      "postal_code": "93250",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Chocolaterie Viridiana",
      "street": "avenue Outrebon",
      "street_number": 35,
      "turnover": null,
      "user_id": 74,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 719817,
      "email": null,
      "id": 46537,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561252827",
      "postal_code": "31400",
      "siren": "489349449",
      "siret": "48934944900020",
      "status": "EMPTY_STATUS",
      "store_name": "Le Zagora",
      "street": "avenue de l Urss",
      "street_number": 6,
      "turnover": null,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STRASBOURG",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 719913,
      "email": null,
      "id": 4725,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "70074001",
      "location_areas_ids": [],
      "owner_name": "Bouali",
      "phone_number": "03-88324347",
      "postal_code": "67000",
      "siren": "523107126",
      "siret": "52310712600014",
      "status": "M",
      "store_name": "Boulangerie la Petite France",
      "street": "Grand Rue",
      "street_number": 98,
      "turnover": 320000,
      "user_id": 112,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLENAVE D ORNON",
      "client_creation_date": "2010-01-01",
      "closing_days_ids": [],
      "datlinq_code": 720842,
      "email": null,
      "id": 4728,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXD74001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56871763",
      "postal_code": "33140",
      "siren": "523291896",
      "siret": "52329189600018",
      "status": "M",
      "store_name": "Boulangerie Wildah Chapelle",
      "street": "rue Marcel Cachin",
      "street_number": 13,
      "turnover": 315000,
      "user_id": 202,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 721407,
      "email": null,
      "id": 32361,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "J1007001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42610590",
      "postal_code": "75001",
      "siren": "479256760",
      "siret": "47925676000014",
      "status": "M",
      "store_name": "Ebisu",
      "street": "rue Saint Roch",
      "street_number": 19,
      "turnover": 300000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARRAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 721878,
      "email": null,
      "id": 41403,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010029757252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321512970",
      "postal_code": "62000",
      "siren": "508588845",
      "siret": "50858884500018",
      "status": "P",
      "store_name": "Restaurant le Petit Rat Porteur",
      "street": "Rue de la Taillerie",
      "street_number": 11,
      "turnover": 20000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "L ILE ROUSSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 722687,
      "email": null,
      "id": 33454,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RLQ02001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "20220",
      "siren": "520730680",
      "siret": "52073068000011",
      "status": "M",
      "store_name": "Point chaud Pane Untu",
      "street": "Place Du Monument aux morts",
      "street_number": 0,
      "turnover": 347400,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PORT MARLY",
      "client_creation_date": "Pizzeria",
      "closing_days_ids": [],
      "datlinq_code": 724060,
      "email": null,
      "id": 32363,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "U0796001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-39584456",
      "postal_code": "78560",
      "siren": "478255896",
      "siret": "47825589600019",
      "status": "P",
      "store_name": "le Bistrot Italien",
      "street": "rue de Paris",
      "street_number": 7,
      "turnover": 200000,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JULIEN EN ST ALBAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 724277,
      "email": null,
      "id": 729,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Martinez",
      "phone_number": "+33 475653278",
      "postal_code": "07000",
      "siren": "403281884",
      "siret": "40328188400011",
      "status": "P",
      "store_name": "Point Chaud la Valentine",
      "street": "route Departementale 104",
      "street_number": null,
      "turnover": 100000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "METZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 724336,
      "email": null,
      "id": 32364,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010004811252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387386060",
      "postal_code": "57000",
      "siren": "957503931",
      "siret": "95750393100579",
      "status": "EMPTY_STATUS",
      "store_name": "Galeries Lafayette",
      "street": "rue Winston Churchill",
      "street_number": 4,
      "turnover": null,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "USSEAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 725142,
      "email": null,
      "id": 32365,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "LI360001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-49049302",
      "postal_code": "79210",
      "siren": "327635058",
      "siret": "32763505800024",
      "status": "P",
      "store_name": "Restaurant Chez Dominique",
      "street": "route de la Foret",
      "street_number": 4,
      "turnover": 20000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COLMAR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 725284,
      "email": null,
      "id": 32366,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "63286001",
      "location_areas_ids": [],
      "owner_name": "Hébert ",
      "phone_number": "03-89237081",
      "postal_code": "68000",
      "siren": "342974367",
      "siret": "34297436700019",
      "status": "P",
      "store_name": "Au Croissant Dore",
      "street": "rue des Marchands",
      "street_number": 28,
      "turnover": 1000,
      "user_id": 111,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 725844,
      "email": null,
      "id": 32368,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010014744252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386653199",
      "postal_code": "89100",
      "siren": "305541757",
      "siret": "30554175700020",
      "status": "P",
      "store_name": "Bar Du Palais",
      "street": "Grande Rue",
      "street_number": 7,
      "turnover": 50000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOCHES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 726110,
      "email": null,
      "id": 47541,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1223G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-47592559",
      "postal_code": "37600",
      "siren": "508916012",
      "siret": "50891601200018",
      "status": "M",
      "store_name": "Restaurant La Crepicoise",
      "street": "rue Picois",
      "street_number": 3,
      "turnover": 200000,
      "user_id": 140,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 727731,
      "email": null,
      "id": 46539,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-11089341",
      "postal_code": "75019",
      "siren": "423086610",
      "siret": "42308661000015",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie Itsik",
      "street": "avenue Secretan",
      "street_number": 78,
      "turnover": null,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RENNES",
      "client_creation_date": "2010-08-02",
      "closing_days_ids": [],
      "datlinq_code": 728396,
      "email": null,
      "id": 4740,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Andrieux",
      "phone_number": "02-99368901",
      "postal_code": "35000",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "Boulangerie aux Gourmandises de Gregoire",
      "street": "rue de Paris",
      "street_number": 111,
      "turnover": 306843,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANNECY LE VIEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 728965,
      "email": null,
      "id": 4743,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50232503",
      "postal_code": "74940",
      "siren": "531831253",
      "siret": "53183125300012",
      "status": "G",
      "store_name": "Rispe pan et gato",
      "street": "rue du Pre d Avril",
      "street_number": 6,
      "turnover": 925000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAGNES SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 729024,
      "email": null,
      "id": 24,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "05378001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93310775",
      "postal_code": "06800",
      "siren": "798506051",
      "siret": "0",
      "status": "P",
      "store_name": "Restaurant la Bourride",
      "street": "rue Capitaine de Fregate H Vial",
      "street_number": 5,
      "turnover": 10000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAILLY ROMAINVILLIERS",
      "client_creation_date": "1-12-2010",
      "closing_days_ids": [],
      "datlinq_code": 729352,
      "email": null,
      "id": 4744,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Lelievre Isabelle De Sousa",
      "phone_number": "01-60422835",
      "postal_code": "77700",
      "siren": "528865660",
      "siret": "52886566000013",
      "status": "M",
      "store_name": "Boulangerie la Boite a Pain",
      "street": "boulevard des Sports",
      "street_number": 7,
      "turnover": 435599,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "EYMET",
      "client_creation_date": "2008",
      "closing_days_ids": [],
      "datlinq_code": 730049,
      "email": null,
      "id": 32372,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "IF136001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-53227283",
      "postal_code": "24500",
      "siren": "448106161",
      "siret": "44810616100012",
      "status": "P",
      "store_name": "Restaurant la Cour d'Eymet",
      "street": "boulevard National",
      "street_number": 32,
      "turnover": 100,
      "user_id": 198,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAGNES SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 730223,
      "email": null,
      "id": 34411,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0114W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93310007",
      "postal_code": "06800",
      "siren": "312733975",
      "siret": "31273397500014",
      "status": "P",
      "store_name": "Restaurant Charlot 1er",
      "street": "promenade de la Plage",
      "street_number": 87,
      "turnover": 20000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NARBONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 730554,
      "email": null,
      "id": 50373,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468327670",
      "postal_code": "11100",
      "siren": "508599271",
      "siret": "50859927100014",
      "status": "EMPTY_STATUS",
      "store_name": "La Grande Brasserie",
      "street": "boulevard de Creissel",
      "street_number": 24,
      "turnover": null,
      "user_id": 440,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BERCK",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 730641,
      "email": null,
      "id": 50374,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321843820",
      "postal_code": "62600",
      "siren": "792765711",
      "siret": "79276571100025",
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant la Grilladine",
      "street": "rue Carnot",
      "street_number": 76,
      "turnover": null,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PEISEY NANCROIX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 730864,
      "email": null,
      "id": 25,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0159E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79075092",
      "postal_code": "73210",
      "siren": "534561519",
      "siret": "53456151900016",
      "status": "P",
      "store_name": "Restaurant l'Alpage de Peisey",
      "street": "Peisey",
      "street_number": null,
      "turnover": 150000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MARTIN AUX BOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 731062,
      "email": null,
      "id": 37282,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0055C001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-44506124",
      "postal_code": "60420",
      "siren": "509724233",
      "siret": "50972423300010",
      "status": "P",
      "store_name": "Bar Restaurant de l Abbaye",
      "street": "rue de l Abbaye",
      "street_number": 487,
      "turnover": 100000,
      "user_id": 311,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "2007-08-01",
      "closing_days_ids": [],
      "datlinq_code": 731099,
      "email": null,
      "id": 26,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "ND031001",
      "location_areas_ids": [],
      "owner_name": "Alexandre Heissat",
      "phone_number": "04-78610028",
      "postal_code": "69007",
      "siren": "498789460",
      "siret": "49878946000017",
      "status": "G",
      "store_name": "Boulangerie La Mie du Pain",
      "street": "rue Garibaldi",
      "street_number": 304,
      "turnover": 529637,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 731105,
      "email": null,
      "id": 736,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-44064565",
      "postal_code": "75013",
      "siren": "449636042",
      "siret": "44963604200011",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie la Grignote",
      "street": "rue de Tolbiac",
      "street_number": 10,
      "turnover": 208106,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 731596,
      "email": null,
      "id": 37283,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1043E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45395541",
      "postal_code": "75014",
      "siren": "538485665",
      "siret": "53848566500011",
      "status": "P",
      "store_name": "Restaurant la Porte Didot",
      "street": "boulevard Brune",
      "street_number": 77,
      "turnover": 100,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BERNIN",
      "client_creation_date": "2010",
      "closing_days_ids": [],
      "datlinq_code": 731759,
      "email": null,
      "id": 4750,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "OD298001",
      "location_areas_ids": [],
      "owner_name": "MORHAIN",
      "phone_number": "09-83400260",
      "postal_code": "38190",
      "siren": "523953842",
      "siret": "52395384200011",
      "status": "M",
      "store_name": "Boulangerie la Boulange",
      "street": "route Departementale 1090",
      "street_number": 134,
      "turnover": 180000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "2010-07-01",
      "closing_days_ids": [],
      "datlinq_code": 731825,
      "email": null,
      "id": 27,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "M2955001",
      "location_areas_ids": [],
      "owner_name": "LAMINE",
      "phone_number": "06-14913382",
      "postal_code": "06000",
      "siren": "523899854",
      "siret": "52389985400013",
      "status": "P",
      "store_name": "Boulangerie Lamine",
      "street": "avenue du Marechal Lyautey",
      "street_number": 79,
      "turnover": 220000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATENOY EN BRESSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 731856,
      "email": null,
      "id": 50375,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010033819252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 385415714",
      "postal_code": "71380",
      "siren": "422609107",
      "siret": "42260910700012",
      "status": "G",
      "store_name": "Restaurant la Roseraie Chalon",
      "street": "Prairie Saint Nicolas",
      "street_number": null,
      "turnover": 200000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHANTELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 732214,
      "email": null,
      "id": 39893,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0424F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "09-50755366",
      "postal_code": "03140",
      "siren": "802333856",
      "siret": null,
      "status": "P",
      "store_name": "Restaurant la Taverne",
      "street": "Grande Rue",
      "street_number": 22,
      "turnover": 190000,
      "user_id": 51,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE THOLONET",
      "client_creation_date": "31-10-2012",
      "closing_days_ids": [],
      "datlinq_code": 732801,
      "email": null,
      "id": 4751,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Anthony Guichard",
      "phone_number": "06-62525585",
      "postal_code": "13100",
      "siren": "789034774",
      "siret": "78903477400016",
      "status": "M",
      "store_name": "Boulangerie Anthony",
      "street": "Espace commercial du Moulin - lot 11 - avenue Paul JULLIEN",
      "street_number": 1652,
      "turnover": 500000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOUGUENAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 733144,
      "email": null,
      "id": 4752,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "3471E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-20315364",
      "postal_code": "44340",
      "siren": "431612704",
      "siret": "43161270400020",
      "status": "P",
      "store_name": "Boulangerie les Saveurs d'Autrefois",
      "street": "rue de la Paix",
      "street_number": 10,
      "turnover": 200000,
      "user_id": 138,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LUMIO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 733269,
      "email": null,
      "id": 32375,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0975D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-95651120",
      "postal_code": "20260",
      "siren": "321500472",
      "siret": "32150047200022",
      "status": "M",
      "store_name": "Restaurant le Blockos",
      "street": "route de Calvi",
      "street_number": null,
      "turnover": 350000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BORDEAUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 733297,
      "email": null,
      "id": 4753,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56930015",
      "postal_code": "33000",
      "siren": "422756122",
      "siret": "42275612200111",
      "status": "P",
      "store_name": "Boulangerie Pain Maitre",
      "street": "rue du Chateau d Eau",
      "street_number": 54,
      "turnover": 200000,
      "user_id": 205,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANCY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 733630,
      "email": null,
      "id": 32377,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "40022001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83351756",
      "postal_code": "54000",
      "siren": "493793889",
      "siret": "49379388900012",
      "status": "P",
      "store_name": "Pizzeria Le Capri",
      "street": "rue Stanislas",
      "street_number": 26,
      "turnover": 1000,
      "user_id": 106,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NIEPPE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 733849,
      "email": null,
      "id": 37284,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016896252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320489713",
      "postal_code": "59850",
      "siren": "349259127",
      "siret": "34925912700026",
      "status": "P",
      "store_name": "Restaurant le Clos du Bac",
      "street": "rue de la Croix du Bac",
      "street_number": 664,
      "turnover": 110000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 733861,
      "email": null,
      "id": 32378,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010002759252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321314395",
      "postal_code": "62200",
      "siren": "333531044",
      "siret": "33353104400019",
      "status": "P",
      "store_name": "Restaurant Le Chatillon",
      "street": "rue Charles Tellier",
      "street_number": 6,
      "turnover": 80000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANGERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 734221,
      "email": null,
      "id": 37285,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010006725252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241708884",
      "postal_code": "49100",
      "siren": "801369786",
      "siret": "80136978600018",
      "status": "P",
      "store_name": "Fabricant le Fournil du Levant",
      "street": "rue du Soleil Levant",
      "street_number": 7,
      "turnover": 160000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 734244,
      "email": null,
      "id": 32379,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R4005001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43542455",
      "postal_code": "75005",
      "siren": "315430793",
      "siret": "31543079300010",
      "status": "EMPTY_STATUS",
      "store_name": "Le Depart",
      "street": "place Saint Michel",
      "street_number": 1,
      "turnover": null,
      "user_id": 91,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURCOING",
      "client_creation_date": "2009-04-29",
      "closing_days_ids": [],
      "datlinq_code": 736207,
      "email": null,
      "id": 740,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "HADHOM",
      "phone_number": "+33 320947091",
      "postal_code": "59200",
      "siren": "512177924",
      "siret": "51217792400010",
      "status": "P",
      "store_name": "Au Ble Dorer",
      "street": "rue du Pont de Neuville",
      "street_number": 232,
      "turnover": 8000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHELLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 736784,
      "email": null,
      "id": 46542,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Barba",
      "phone_number": "01-64729716",
      "postal_code": "77500",
      "siren": "351285069",
      "siret": "35128506900016",
      "status": "M",
      "store_name": "Restaurant le Rocael Club",
      "street": "rue Auguste Meunier",
      "street_number": 74,
      "turnover": 300000,
      "user_id": 311,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUCROISSANT",
      "client_creation_date": "2011-05-01",
      "closing_days_ids": [],
      "datlinq_code": 736883,
      "email": "yoann.palomino@yahoo.fr",
      "id": 4760,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1304F001",
      "location_areas_ids": [],
      "owner_name": "Palomino",
      "phone_number": "04-76329821",
      "postal_code": "38140",
      "siren": "821598810",
      "siret": "53159930600010",
      "status": "P",
      "store_name": "Boulangerie le Beau Croissant",
      "street": "rue du Bourg",
      "street_number": 75,
      "turnover": 120000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AIX EN PROVENCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 737271,
      "email": null,
      "id": 741,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "13090",
      "siren": "484474184",
      "siret": "48447418400013",
      "status": "P",
      "store_name": "Restaurant l'Escargot",
      "street": "avenue Winston Churchill",
      "street_number": 10,
      "turnover": 10000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANCY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 737291,
      "email": "lescesars@wanadoo.fr",
      "id": 41405,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1140F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83320886",
      "postal_code": "54000",
      "siren": "378232789",
      "siret": "37823278900016",
      "status": "P",
      "store_name": "Pizzeria les Cesars (Michelangelo)",
      "street": "place Stanislas",
      "street_number": 8,
      "turnover": 50000,
      "user_id": 106,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAVAY",
      "client_creation_date": "1992-01-01",
      "closing_days_ids": [],
      "datlinq_code": 737676,
      "email": null,
      "id": 37288,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010006682252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 327668700",
      "postal_code": "59570",
      "siren": "793602830",
      "siret": "79360283000028",
      "status": "P",
      "store_name": "Restaurant le Bagacum",
      "street": "rue d Audignies",
      "street_number": 2,
      "turnover": 160000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST EMILION",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 738183,
      "email": null,
      "id": 32384,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "IF137001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-57744633",
      "postal_code": "33330",
      "siren": "432174001",
      "siret": "43217400100011",
      "status": "P",
      "store_name": "Restaurant le Tertre",
      "street": "tertre de la Tente",
      "street_number": 5,
      "turnover": 100,
      "user_id": 203,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JASSANS RIOTTIER",
      "client_creation_date": "2006-06-13",
      "closing_days_ids": [],
      "datlinq_code": 738405,
      "email": null,
      "id": 4766,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012947252110",
      "location_areas_ids": [],
      "owner_name": "GRIZARD",
      "phone_number": "+33 474609203",
      "postal_code": "01480",
      "siren": "490498029",
      "siret": "49049802900019",
      "status": "G",
      "store_name": "Pains et Gourmandises",
      "street": "rue du Beaujolais",
      "street_number": 220,
      "turnover": 590000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WORMHOUT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 738697,
      "email": null,
      "id": 37289,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011981252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328656638",
      "postal_code": "59470",
      "siren": "418579413",
      "siret": "41857941300018",
      "status": "P",
      "store_name": "Restaurant l'Hofland",
      "street": "route d Herzeele",
      "street_number": 730,
      "turnover": 50000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAZAN",
      "client_creation_date": "02/06/2016",
      "closing_days_ids": [],
      "datlinq_code": 739375,
      "email": null,
      "id": 47544,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Maillaud ",
      "phone_number": "04-90698764",
      "postal_code": "84380",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "Restaurant l'Oulo",
      "street": "la Venue de Mormoiron",
      "street_number": 500,
      "turnover": 500000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTERRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 739547,
      "email": null,
      "id": 41406,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-46950796",
      "postal_code": "92000",
      "siren": "435291471",
      "siret": "43529147100025",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwichs Alvaro Cafe",
      "street": "rue des 3 Fontanot",
      "street_number": 70,
      "turnover": null,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THONON LES BAINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 740021,
      "email": null,
      "id": 28,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0584D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50261799",
      "postal_code": "74200",
      "siren": "482983822",
      "siret": "48298382200016",
      "status": "P",
      "store_name": "Le Bosphore",
      "street": "rue des Granges",
      "street_number": 32,
      "turnover": 1000,
      "user_id": 263,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTIGNY LES CORMEILLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 740245,
      "email": null,
      "id": 32386,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0940W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-30260222",
      "postal_code": "95370",
      "siren": "488693920",
      "siret": "48869392000024",
      "status": "P",
      "store_name": "Presto Pizza",
      "street": "residence de la Gare",
      "street_number": 20,
      "turnover": 80000,
      "user_id": 80,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEFRANCHE SUR SAONE",
      "client_creation_date": "2009",
      "closing_days_ids": [],
      "datlinq_code": 740424,
      "email": null,
      "id": 38109,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "VEZIAN ",
      "phone_number": "09-80386664",
      "postal_code": "69400",
      "siren": "749904033",
      "siret": "74990403300018",
      "status": "G",
      "store_name": "Sandwicherie Pain et Compagnie",
      "street": "rue de la Paix",
      "street_number": 152,
      "turnover": 450000,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THIVARS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 740810,
      "email": null,
      "id": 32387,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010006773252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 237263031",
      "postal_code": "28630",
      "siren": "448928945",
      "siret": "44892894500014",
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant le P'Thivars",
      "street": "rue Nationale",
      "street_number": 23,
      "turnover": 90000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AJACCIO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 740872,
      "email": null,
      "id": 32388,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1082B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "20000",
      "siren": "482168010",
      "siret": "48216801000015",
      "status": "P",
      "store_name": "Le Passe Temps",
      "street": "rue du Cardinal Fesch",
      "street_number": 37,
      "turnover": 197000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 740927,
      "email": null,
      "id": 32389,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010002376252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235211478",
      "postal_code": "76600",
      "siren": "400260956",
      "siret": "40026095600018",
      "status": "P",
      "store_name": "Creperie la Cave",
      "street": "avenue Rene Coty",
      "street_number": 49,
      "turnover": 50000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "IVRY SUR SEINE",
      "client_creation_date": "1-1-2003",
      "closing_days_ids": [],
      "datlinq_code": 741179,
      "email": null,
      "id": 4772,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-46710103",
      "postal_code": "94200",
      "siren": "478588106",
      "siret": "0",
      "status": "P",
      "store_name": "Boulangerie au Vieux Moulin",
      "street": "rue Barbes",
      "street_number": 7,
      "turnover": 300000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 741245,
      "email": null,
      "id": 39894,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45848784",
      "postal_code": "75013",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie Mekong",
      "street": "rue de Tolbiac",
      "street_number": 135,
      "turnover": null,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ÉCOURT-SAINT-QUENTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 741429,
      "email": null,
      "id": 32390,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010019214252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321484569",
      "postal_code": "62860",
      "siren": "422353599",
      "siret": "42235359900018",
      "status": "P",
      "store_name": "Restaurant Maison Merlin",
      "street": "Rue Henri Barbusse",
      "street_number": 198,
      "turnover": 50000,
      "user_id": 416,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARTIGUES",
      "client_creation_date": "1-1-2008",
      "closing_days_ids": [],
      "datlinq_code": 741456,
      "email": null,
      "id": 4774,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "RICCI",
      "phone_number": "04-42421666",
      "postal_code": "13500",
      "siren": "524666039",
      "siret": "52466603900010",
      "status": "M",
      "store_name": "Boulangerie le Fournil de l'ile",
      "street": "rue de la Republique",
      "street_number": 15,
      "turnover": 220000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARTIGUES",
      "client_creation_date": "1-1-1999",
      "closing_days_ids": [],
      "datlinq_code": 741766,
      "email": "magreda@hotmail.fr",
      "id": 4776,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RLO24001",
      "location_areas_ids": [],
      "owner_name": "BANINO Marc",
      "phone_number": "04-42445809",
      "postal_code": "13500",
      "siren": "523805182",
      "siret": "52380518200012",
      "status": "G",
      "store_name": "Boulangerie la Dolce Vita",
      "street": "rue Olivier Griscelli",
      "street_number": 5,
      "turnover": 600000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BERCK",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 741861,
      "email": null,
      "id": 32391,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016879252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321098040",
      "postal_code": "62600",
      "siren": "617320148",
      "siret": "61732014800019",
      "status": "P",
      "store_name": "Hotel Reingam Park",
      "street": "chemin Genty",
      "street_number": null,
      "turnover": 50000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MORTCERF",
      "client_creation_date": "1-8-2012",
      "closing_days_ids": [],
      "datlinq_code": 742273,
      "email": null,
      "id": 4778,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ROBARD",
      "phone_number": "01-64656421",
      "postal_code": "77163",
      "siren": "753089911",
      "siret": "75308991100014",
      "status": "P",
      "store_name": "La P'tite Boulangerie",
      "street": "rue du 27 Aout",
      "street_number": 67,
      "turnover": 284000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BANYULS SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 742280,
      "email": null,
      "id": 50376,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010034009252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 618163594",
      "postal_code": "66650",
      "siren": "829462084",
      "siret": "82946208400015",
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant la Vieille Cave",
      "street": "rue Marius Douzans",
      "street_number": 12,
      "turnover": null,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 742728,
      "email": null,
      "id": 4779,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BODIAN",
      "phone_number": "01-46064181",
      "postal_code": "75018",
      "siren": "531316602",
      "siret": "53131660200014",
      "status": "G",
      "store_name": "Boulangerie le Grenier a Pain",
      "street": "rue des Abbesses",
      "street_number": 38,
      "turnover": 976000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTEVRAIN",
      "client_creation_date": "04/1998",
      "closing_days_ids": [],
      "datlinq_code": 742757,
      "email": null,
      "id": 46543,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0031G001",
      "location_areas_ids": [],
      "owner_name": "Chaudhry",
      "phone_number": "01-60360606",
      "postal_code": "77144",
      "siren": "418922647",
      "siret": "41892264700015",
      "status": "G",
      "store_name": "Restaurant Planete Indienne",
      "street": "avenue Thibaud de Champagne",
      "street_number": 45,
      "turnover": 900000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WASIGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 742924,
      "email": null,
      "id": 4781,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 324722593",
      "postal_code": "08270",
      "siren": "787312651",
      "siret": "78731265100013",
      "status": "P",
      "store_name": "Boulangerie Coutelot",
      "street": "rue Basse",
      "street_number": 3,
      "turnover": 100000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VICO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 743845,
      "email": null,
      "id": 4783,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ORSINI",
      "phone_number": "04-95266251",
      "postal_code": "20160",
      "siren": "783038292",
      "siret": "78303829200018",
      "status": "P",
      "store_name": "Boulangerie Orsini Edmond",
      "street": "place Laurent Marie Savoyardi",
      "street_number": null,
      "turnover": 10000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE VESINET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 744632,
      "email": null,
      "id": 41408,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0910F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-30097150",
      "postal_code": "78110",
      "siren": "431425032",
      "siret": "43142503200015",
      "status": "P",
      "store_name": "Restaurant Pavillon des Ibis",
      "street": "ile des Ibis",
      "street_number": null,
      "turnover": 200000,
      "user_id": 96,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAR SUR AUBE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 744873,
      "email": null,
      "id": 32392,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016406252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 325271417",
      "postal_code": "10200",
      "siren": "412513277",
      "siret": "41251327700019",
      "status": "P",
      "store_name": "Restaurant l'Albatros",
      "street": "rue Nationale",
      "street_number": 136,
      "turnover": 20000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONT ST MARTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 745070,
      "email": null,
      "id": 32393,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003897252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 382255501",
      "postal_code": "54350",
      "siren": "378162283",
      "siret": "37816228300014",
      "status": "P",
      "store_name": "La Castellina Pizzeria",
      "street": "route de Longwy",
      "street_number": 130,
      "turnover": 1000,
      "user_id": 393,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CALAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 745349,
      "email": null,
      "id": 32394,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011663252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321973509",
      "postal_code": "62100",
      "siren": "380003467",
      "siret": "38000346700012",
      "status": "P",
      "store_name": "Pic Pouce",
      "street": "boulevard Victor Hugo",
      "street_number": 235,
      "turnover": 100000,
      "user_id": 422,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAMBALLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 746151,
      "email": null,
      "id": 4790,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "LEVAILLANT JACQUES",
      "phone_number": "02-96310231",
      "postal_code": "22400",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Levaillant le Goualher",
      "street": "rue Bario",
      "street_number": 4,
      "turnover": 441850,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 746601,
      "email": null,
      "id": 4791,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45837791",
      "postal_code": "75013",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Myu Myu",
      "street": "rue Philibert Lucot",
      "street_number": 17,
      "turnover": 245545,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "OUDON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 746651,
      "email": null,
      "id": 4792,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40960849",
      "postal_code": "44521",
      "siren": "524208188",
      "siret": "52420818800010",
      "status": "P",
      "store_name": "Boulangerie les Délices De La Tour",
      "street": "rue Alphonse Fouschard",
      "street_number": 106,
      "turnover": 340000,
      "user_id": 144,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PLESSIS BOUCHARD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 747311,
      "email": null,
      "id": 32396,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1370B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-34145827",
      "postal_code": "95130",
      "siren": "383776416",
      "siret": "38377641600018",
      "status": "G",
      "store_name": "Repas 95",
      "street": "rue Louis Armand",
      "street_number": 9,
      "turnover": 1000000,
      "user_id": 80,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST FONS",
      "client_creation_date": "2009",
      "closing_days_ids": [],
      "datlinq_code": 747585,
      "email": null,
      "id": 31,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "U0136001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78709315",
      "postal_code": "69190",
      "siren": "950393793",
      "siret": "95039379300019",
      "status": "P",
      "store_name": "Restaurant Ferroux",
      "street": "rue Pasteur",
      "street_number": 9,
      "turnover": 230000,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TIFFAUGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 747723,
      "email": "contact@lepresbytere.fr",
      "id": 46544,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-51576339",
      "postal_code": "85130",
      "siren": "453688590",
      "siret": "45368859000018",
      "status": "P",
      "store_name": "Restaurant le Presbytère",
      "street": "place de l Eglise",
      "street_number": 3,
      "turnover": 80000,
      "user_id": 153,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOURGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 747822,
      "email": null,
      "id": 39895,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Santoro",
      "phone_number": "02-48242985",
      "postal_code": "18000",
      "siren": "342445178",
      "siret": "34244517800011",
      "status": "M",
      "store_name": "Restaurant Pizzeria Calabria",
      "street": "place du General Leclerc",
      "street_number": 14,
      "turnover": 460000,
      "user_id": 51,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARGENTEUIL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 747848,
      "email": null,
      "id": 32397,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "8,52E+03",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-34101997",
      "postal_code": "95100",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant Salon La Belle Alliance",
      "street": "rue Charles Michels",
      "street_number": 5,
      "turnover": null,
      "user_id": 79,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MEYTHET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 747975,
      "email": null,
      "id": 32,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "74966001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50227490",
      "postal_code": "74960",
      "siren": "481438513",
      "siret": "48143851300022",
      "status": "P",
      "store_name": "Pizza Pepone",
      "street": "rue du Vieux Moulin",
      "street_number": null,
      "turnover": 1000,
      "user_id": 263,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 748197,
      "email": null,
      "id": 32399,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "90331001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45551201",
      "postal_code": "75007",
      "siren": "612008219",
      "siret": "61200821900018",
      "status": "P",
      "store_name": "Restaurant Tribeca",
      "street": "rue Cler",
      "street_number": 36,
      "turnover": 0,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MALAUCENE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 748343,
      "email": null,
      "id": 47545,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DESPEISSE THIERRY",
      "phone_number": "04-90652357",
      "postal_code": "84340",
      "siren": "528834641",
      "siret": "52883464100011",
      "status": "P",
      "store_name": "Restaurant le Ventoux",
      "street": "avenue de Verdun",
      "street_number": null,
      "turnover": 168000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARCUEIL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 748907,
      "email": null,
      "id": 749,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42535748",
      "postal_code": "94110",
      "siren": "334297561",
      "siret": "33429756100022",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie la Grignote",
      "street": "avenue Jean Jaures",
      "street_number": 100,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GOURDON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 749695,
      "email": null,
      "id": 33,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "2094E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93096889",
      "postal_code": "06620",
      "siren": "803416510",
      "siret": "32227405100026",
      "status": "P",
      "store_name": "Epicerie Sainte Catherine",
      "street": "place Sainte Catherine",
      "street_number": 1,
      "turnover": 20000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAUTERNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 749787,
      "email": null,
      "id": 32401,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "27022001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56766087",
      "postal_code": "33210",
      "siren": "535359210",
      "siret": "53535921000015",
      "status": "P",
      "store_name": "Restaurant Saprien",
      "street": "rue Principale",
      "street_number": 14,
      "turnover": 100,
      "user_id": 205,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 749792,
      "email": null,
      "id": 38112,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561426250",
      "postal_code": "31300",
      "siren": "443293014",
      "siret": "44329301400017",
      "status": "P",
      "store_name": "Viennoiserie Coffe Bagels",
      "street": "place Interieure Saint Cyprien",
      "street_number": 7,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "2005",
      "closing_days_ids": [],
      "datlinq_code": 749870,
      "email": null,
      "id": 4798,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-72349578",
      "postal_code": "69003",
      "siren": "481939221",
      "siret": "48193922100018",
      "status": "P",
      "store_name": "Boulangerie les Douceurs de Melisse",
      "street": "rue du Dauphine",
      "street_number": 47,
      "turnover": 289000,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAILLEUL SUR THERAIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 749920,
      "email": null,
      "id": 4799,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "2268E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-44076707",
      "postal_code": "60930",
      "siren": "797967486",
      "siret": "79796748600011",
      "status": "P",
      "store_name": "Boulangerie Vermeulen",
      "street": "place Maurice Segonds",
      "street_number": null,
      "turnover": 210000,
      "user_id": 78,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DIENVILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 750096,
      "email": "harnet.laure@orange.fr",
      "id": 32402,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016057252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 325922223",
      "postal_code": "10500",
      "siren": "391601317",
      "siret": "39160131700012",
      "status": "P",
      "store_name": "Pizzeria Aux Trois Pianos",
      "street": "rue du Fosse",
      "street_number": 100,
      "turnover": 20000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": "2000-01-01",
      "closing_days_ids": [],
      "datlinq_code": 750587,
      "email": null,
      "id": 32403,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010004608252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235436207",
      "postal_code": "76600",
      "siren": "418537734",
      "siret": "41853773400034",
      "status": "P",
      "store_name": "Restaurant Le Grignot",
      "street": "rue Racine",
      "street_number": 53,
      "turnover": 90000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1 mars 2004",
      "closing_days_ids": [],
      "datlinq_code": 750734,
      "email": null,
      "id": 4802,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45633434",
      "postal_code": "75008",
      "siren": "452541089",
      "siret": "45254108900010",
      "status": "M",
      "store_name": "Boulangerie Le Pain Du Faubourg",
      "street": "rue du Faubourg Saint Honore",
      "street_number": 165,
      "turnover": 1670401,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MARTIN DES CHAMPS",
      "client_creation_date": "2012",
      "closing_days_ids": [],
      "datlinq_code": 750805,
      "email": null,
      "id": 4803,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Remeur/Le Gall",
      "phone_number": "02-98624316",
      "postal_code": "29600",
      "siren": "504766221",
      "siret": "50476622100023",
      "status": "M",
      "store_name": "Boulangerie la Farinette",
      "street": "rue du Puits",
      "street_number": 2,
      "turnover": 530000,
      "user_id": 147,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "REIMS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 750868,
      "email": null,
      "id": 41409,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326854711",
      "postal_code": "51100",
      "siren": "429932619",
      "siret": "42993261900019",
      "status": "P",
      "store_name": "Restaurant le Flechambault",
      "street": "esplanade Flechambault",
      "street_number": 2,
      "turnover": 1000,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "09/2009",
      "closing_days_ids": [],
      "datlinq_code": 751421,
      "email": null,
      "id": 4807,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0129G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "75020",
      "siren": "514887900",
      "siret": "51488790000017",
      "status": "M",
      "store_name": "Boulangerie au Fournil des Pyrenees",
      "street": "rue des Pyrenees",
      "street_number": 244,
      "turnover": 316000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LABEGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 751665,
      "email": null,
      "id": 752,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 562249743",
      "postal_code": "31670",
      "siren": "408218931",
      "siret": "40821893100025",
      "status": "P",
      "store_name": "Croissanterie le Lafayette",
      "street": "chemin de la Grande Borde",
      "street_number": null,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GAP",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 752339,
      "email": null,
      "id": 4812,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1837D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92523349",
      "postal_code": "05000",
      "siren": "803621036",
      "siret": "80362103600026",
      "status": "P",
      "store_name": "Boulangerie le Petit Nicolas",
      "street": "avenue de Provence",
      "street_number": 78,
      "turnover": 100000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 752576,
      "email": null,
      "id": 753,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-90931938",
      "postal_code": "13200",
      "siren": "483442695",
      "siret": "48344269500019",
      "status": "P",
      "store_name": "La Maison des Gourmands",
      "street": "rond Point des Arenes",
      "street_number": 28,
      "turnover": 10000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA BRESSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 752937,
      "email": null,
      "id": 32405,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "2120C001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-29254245",
      "postal_code": "88250",
      "siren": "380599613",
      "siret": "38059961300011",
      "status": "P",
      "store_name": "Lispach Evasion",
      "street": "route de Lispach",
      "street_number": null,
      "turnover": 90000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TULLINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 753047,
      "email": null,
      "id": 38114,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "2949E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76078979",
      "postal_code": "38210",
      "siren": "482906120",
      "siret": "48290612000019",
      "status": "M",
      "store_name": "Restaurant Le Colisee",
      "street": "boulevard Michel Perret",
      "street_number": 56,
      "turnover": 284158,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AUXERRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 753230,
      "email": null,
      "id": 755,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386526655",
      "postal_code": "89000",
      "siren": "413569864",
      "siret": "41356986400015",
      "status": "EMPTY_STATUS",
      "store_name": "Au Point Gourmand",
      "street": "Place Charles Surugue",
      "street_number": 2,
      "turnover": null,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TULLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 753237,
      "email": null,
      "id": 37291,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "2378E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-55265012",
      "postal_code": "19000",
      "siren": "478263619",
      "siret": "47826361900023",
      "status": "P",
      "store_name": "Restaurant La Caleche",
      "street": "avenue Victor Hugo",
      "street_number": 28,
      "turnover": 100,
      "user_id": 196,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VARILHES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 753270,
      "email": null,
      "id": 4815,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007130252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561607679",
      "postal_code": "09120",
      "siren": "752428284",
      "siret": "75242828400018",
      "status": "P",
      "store_name": "Boulangerie Jolibert Massat",
      "street": "place de l Hotel de Ville",
      "street_number": 4,
      "turnover": 190000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 753395,
      "email": null,
      "id": 32406,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "J0514001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42711716",
      "postal_code": "75004",
      "siren": "478785900",
      "siret": "47878590000018",
      "status": "EMPTY_STATUS",
      "store_name": "Sarl Pele",
      "street": "rue Pavee",
      "street_number": 8,
      "turnover": null,
      "user_id": 91,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUVOIS EN CAMBRESIS",
      "client_creation_date": "2010-01-01",
      "closing_days_ids": [],
      "datlinq_code": 753490,
      "email": null,
      "id": 4816,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "JACQUEMART",
      "phone_number": "+33 327725407",
      "postal_code": "59157",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "Boulangerie le Fournil Gourmand",
      "street": "rue Victor Watremez",
      "street_number": 3,
      "turnover": 850000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MIREPOIX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 754087,
      "email": null,
      "id": 47546,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561681365",
      "postal_code": "09500",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Saveurs des Couverts",
      "street": "place du Marechal Leclerc",
      "street_number": 20,
      "turnover": 120000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOYAT",
      "client_creation_date": "2010-05-01",
      "closing_days_ids": [],
      "datlinq_code": 754158,
      "email": null,
      "id": 4818,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31516001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-97930546",
      "postal_code": "56800",
      "siren": "524451739",
      "siret": "52445173900014",
      "status": "M",
      "store_name": "Cafe des Sports Boulangerie de l'Eglise",
      "street": "place de l Eglise",
      "street_number": 1,
      "turnover": 170000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "POUILLON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 754245,
      "email": null,
      "id": 32409,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1011W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-58983465",
      "postal_code": "40350",
      "siren": "423832948",
      "siret": "42383294800016",
      "status": "P",
      "store_name": "Restaurant l'Auberge du Pas de Vent",
      "street": "avenue du Pas de Vent",
      "street_number": 281,
      "turnover": 100,
      "user_id": 209,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1 mars 2012",
      "closing_days_ids": [],
      "datlinq_code": 754309,
      "email": null,
      "id": 32410,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0636B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45273291",
      "postal_code": "75016",
      "siren": "750288730",
      "siret": "75028873000013",
      "status": "P",
      "store_name": "Restaurant SEMNGVD",
      "street": "rue du Ranelagh",
      "street_number": 74,
      "turnover": 96560,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STRASBOURG",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 754357,
      "email": null,
      "id": 756,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-88324547",
      "postal_code": "67000",
      "siren": "345048722",
      "siret": "34504872200028",
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant les Deux Gourmandes",
      "street": "rue des Serruriers",
      "street_number": 1,
      "turnover": null,
      "user_id": 112,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "YVETOT",
      "client_creation_date": "2018-01-01",
      "closing_days_ids": [],
      "datlinq_code": 754631,
      "email": "toutain.boulangerie@gmail.com",
      "id": 4819,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010033345252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235951130",
      "postal_code": "76190",
      "siren": "531772010",
      "siret": "53177201000017",
      "status": "M",
      "store_name": "Boulangerie Toutain",
      "street": "rue de la Republique",
      "street_number": 20,
      "turnover": 265000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE MONASTIER SUR GAZEILLE",
      "client_creation_date": "01/03/2008",
      "closing_days_ids": [],
      "datlinq_code": 754736,
      "email": "boulangerie.allemand@orange.fr",
      "id": 4821,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "ME172001",
      "location_areas_ids": [],
      "owner_name": "Laurent ALLEMAND",
      "phone_number": "04-71038614",
      "postal_code": "43150",
      "siren": "413656075",
      "siret": "41365607500020",
      "status": "P",
      "store_name": "Boulangerie Allemand Laurent",
      "street": "rue Saint Pierre",
      "street_number": 85,
      "turnover": 92000,
      "user_id": 54,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COUDEKERQUE BRANCHE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 754743,
      "email": null,
      "id": 4822,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328582597",
      "postal_code": "59210",
      "siren": "525082574",
      "siret": "52508257400019",
      "status": "P",
      "store_name": "Boulangerie Verhille",
      "street": "rue Rembrandt",
      "street_number": 1,
      "turnover": 190000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 754791,
      "email": null,
      "id": 35,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "M2039001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93898901",
      "postal_code": "06300",
      "siren": "325783215",
      "siret": "32578321500016",
      "status": "M",
      "store_name": "Boulangerie Alphazur",
      "street": "rue de Orestis",
      "street_number": 19,
      "turnover": 168310,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PONT ST PIERRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 755317,
      "email": null,
      "id": 32412,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010001947252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232493924",
      "postal_code": "27360",
      "siren": "479698169",
      "siret": "47969816900014",
      "status": "P",
      "store_name": "Pizzeria le Latin",
      "street": "place du Square Philbert",
      "street_number": 10,
      "turnover": 90000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRAND FOUGERAY",
      "client_creation_date": "2010-08-06",
      "closing_days_ids": [],
      "datlinq_code": 755356,
      "email": null,
      "id": 4826,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0782B001",
      "location_areas_ids": [],
      "owner_name": "VILLETTE",
      "phone_number": "02-99084255",
      "postal_code": "35390",
      "siren": "524200326",
      "siret": "52420032600014",
      "status": "P",
      "store_name": "Boulangerie l'Ille aux Pains",
      "street": "place de l Eglise",
      "street_number": 23,
      "turnover": 190000,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RETIERS",
      "client_creation_date": "2007-03-09",
      "closing_days_ids": [],
      "datlinq_code": 755651,
      "email": null,
      "id": 4827,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "30566001",
      "location_areas_ids": [],
      "owner_name": "FLEURY",
      "phone_number": "02-99435471",
      "postal_code": "35240",
      "siren": "442077152",
      "siret": "44207715200027",
      "status": "M",
      "store_name": "Boulangerie Fleury",
      "street": "rue Pasteur",
      "street_number": 3,
      "turnover": 230000,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 755710,
      "email": null,
      "id": 50377,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 975122878",
      "postal_code": "31200",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "la Boite a Pizza",
      "street": "avenue des Minimes",
      "street_number": 15,
      "turnover": null,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LIMOGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756047,
      "email": null,
      "id": 37294,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "26076001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-55331321",
      "postal_code": "87000",
      "siren": "793085218",
      "siret": "79308521800014",
      "status": "P",
      "store_name": "Restaurant San Marco",
      "street": "rue Charles Michels",
      "street_number": 11,
      "turnover": 100,
      "user_id": 199,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MOULEYDIER",
      "client_creation_date": "1987",
      "closing_days_ids": [],
      "datlinq_code": 756096,
      "email": null,
      "id": 4831,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "24520",
      "siren": "800502031",
      "siret": "80050203100019",
      "status": "P",
      "store_name": "Boulangerie de Tuilieres",
      "street": "avenue du Barrage",
      "street_number": 725,
      "turnover": 155000,
      "user_id": 198,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756210,
      "email": null,
      "id": 47548,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1636G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92992717",
      "postal_code": "06400",
      "siren": "393537618",
      "siret": "39353761800026",
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant l'Auberge Provencale",
      "street": "petite Rue Saint Antoine",
      "street_number": 10,
      "turnover": 200,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA BREE LES BAINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756258,
      "email": "lesecluses@orange.fr",
      "id": 37295,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "LI180001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46765637",
      "postal_code": "17840",
      "siren": "301331757",
      "siret": "30133175700015",
      "status": "P",
      "store_name": "Crêperie les Ecluses",
      "street": "rue du Douhet",
      "street_number": null,
      "turnover": 2000,
      "user_id": 155,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAPBRETON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756290,
      "email": null,
      "id": 32414,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "02327001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-58722280",
      "postal_code": "40130",
      "siren": "310160023",
      "siret": "31016002300019",
      "status": "P",
      "store_name": "Regalty",
      "street": "Residence Mille Sabords",
      "street_number": null,
      "turnover": 100,
      "user_id": 209,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PEYRENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756484,
      "email": null,
      "id": 34355,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0010003070252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468604013",
      "postal_code": "11400",
      "siren": "419758982",
      "siret": "41975898200013",
      "status": "P",
      "store_name": "Restaurant la Caleche",
      "street": "rue de la Croix",
      "street_number": 1,
      "turnover": 100000,
      "user_id": 440,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATEL GUYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756815,
      "email": null,
      "id": 4833,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0661D001",
      "location_areas_ids": [],
      "owner_name": "EHLINGER",
      "phone_number": "04-73862198",
      "postal_code": "63140",
      "siren": "750416430",
      "siret": "75041643000015",
      "status": "P",
      "store_name": "Boulangerie Patisserie Ehlinger",
      "street": "rue du Commerce",
      "street_number": 6,
      "turnover": 180000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756890,
      "email": null,
      "id": 32415,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R3102001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42659600",
      "postal_code": "75008",
      "siren": "784333866",
      "siret": "78433386600019",
      "status": "P",
      "store_name": "Restaurant Cercle de l'Union Interalliée",
      "street": "rue du Faubourg Saint Honore",
      "street_number": 33,
      "turnover": 2000,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JOIGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 757678,
      "email": null,
      "id": 32416,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010670252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386621734",
      "postal_code": "89300",
      "siren": "447978578",
      "siret": "44797857800022",
      "status": "P",
      "store_name": "Restaurant Grilladerie",
      "street": "rue Robert Petit",
      "street_number": 8,
      "turnover": 5000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 757736,
      "email": null,
      "id": 32417,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007784252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321307782",
      "postal_code": "62200",
      "siren": "493994974",
      "siret": "49399497400019",
      "status": "P",
      "store_name": "La Boite A Gouter",
      "street": "centre Commercial de la Liane",
      "street_number": 29,
      "turnover": 70000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANNES",
      "client_creation_date": "2010-10-01",
      "closing_days_ids": [],
      "datlinq_code": 758145,
      "email": null,
      "id": 4835,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0998F001",
      "location_areas_ids": [],
      "owner_name": " Moudens",
      "phone_number": "04-93680939",
      "postal_code": "06400",
      "siren": "803544931",
      "siret": "52887979400014",
      "status": "M",
      "store_name": "La Boulangerie du Marche",
      "street": "rue du Marche Forville",
      "street_number": 14,
      "turnover": 729000,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FLEURANCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 758146,
      "email": null,
      "id": 4836,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010034423252110",
      "location_areas_ids": [],
      "owner_name": "BAQUER",
      "phone_number": "+33 562642260",
      "postal_code": "32500",
      "siren": "539370262",
      "siret": "53937026200013",
      "status": "G",
      "store_name": "Boulangerie Baquer",
      "street": "rue des Amours",
      "street_number": null,
      "turnover": 986081,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MANDELIEU LA NAPOULE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 758277,
      "email": null,
      "id": 38,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "M2908001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93498940",
      "postal_code": "6210",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Snack Club Cafe",
      "street": "avenue de Cannes",
      "street_number": 269,
      "turnover": null,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOUDEAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 759241,
      "email": null,
      "id": 32421,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "B0228001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-96283498",
      "postal_code": "22600",
      "siren": "437614886",
      "siret": "43761488600012",
      "status": "M",
      "store_name": "La Belle Epoque",
      "street": "rue de Pontivy",
      "street_number": 14,
      "turnover": 150000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FRESNES",
      "client_creation_date": "1-1-2014",
      "closing_days_ids": [],
      "datlinq_code": 759439,
      "email": null,
      "id": 4839,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0651D001",
      "location_areas_ids": [],
      "owner_name": "MONCEF ZEGUIR",
      "phone_number": "01-57191586",
      "postal_code": "94260",
      "siren": "524425907",
      "siret": "52442590700010",
      "status": "P",
      "store_name": "Boulangerie La Fresnoise",
      "street": "avenue de la Paix",
      "street_number": 43,
      "turnover": 250000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA TOUR DU PIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760192,
      "email": null,
      "id": 4840,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ISABELLE JACQUIGNON",
      "phone_number": "04-74882580",
      "postal_code": "38110",
      "siren": "540046257",
      "siret": "54004625700015",
      "status": "P",
      "store_name": "Boulangerie Jacquignon",
      "street": "place Carnot",
      "street_number": 4,
      "turnover": 281300,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SURGY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760444,
      "email": null,
      "id": 50378,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010033758252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386271680",
      "postal_code": "58500",
      "siren": "789436193",
      "siret": "78943619300013",
      "status": "P",
      "store_name": "Boulangerie aux Delices de Surgy",
      "street": "rue du Bourbasson",
      "street_number": 1,
      "turnover": 180000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PUTEAUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760494,
      "email": null,
      "id": 37297,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1821D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "92800",
      "siren": "511607889",
      "siret": "51160788900025",
      "status": "P",
      "store_name": "Sandwicherie Wallace",
      "street": "boulevard Richard Wallace",
      "street_number": 7,
      "turnover": 200000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PORTO VECCHIO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760513,
      "email": null,
      "id": 760,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-95700870",
      "postal_code": "20137",
      "siren": "448844670",
      "siret": "44884467000027",
      "status": "P",
      "store_name": "Sandwicherie la Fringale",
      "street": "cours Napoleon",
      "street_number": 20,
      "turnover": 10000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "2015",
      "closing_days_ids": [],
      "datlinq_code": 760525,
      "email": "nice@classcroute.com",
      "id": 41411,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92007700",
      "postal_code": "06200",
      "siren": "527941777",
      "siret": "52794177700023",
      "status": "P",
      "store_name": "Class'croute",
      "street": "avenue Simone Veil",
      "street_number": 63,
      "turnover": 200000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PUGET SUR ARGENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760550,
      "email": null,
      "id": 763,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-94455850",
      "postal_code": "83480",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Croissanterie",
      "street": "route Nationale 7",
      "street_number": null,
      "turnover": null,
      "user_id": 185,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RUEIL MALMAISON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760635,
      "email": null,
      "id": 41412,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-55470101",
      "postal_code": "92500",
      "siren": "439087008",
      "siret": "43908700800025",
      "status": "EMPTY_STATUS",
      "store_name": "Class'croute",
      "street": "avenue Paul Doumer",
      "street_number": 10,
      "turnover": null,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CUGNAUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760664,
      "email": null,
      "id": 50379,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 562872872",
      "postal_code": "31270",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Boite à Pizza",
      "street": "avenue Georges Pompidou",
      "street_number": null,
      "turnover": null,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTAUBAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760666,
      "email": null,
      "id": 50380,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 563204204",
      "postal_code": "82000",
      "siren": "443163936",
      "siret": "44316393600026",
      "status": "EMPTY_STATUS",
      "store_name": "La Boite A Pizza",
      "street": "rue Jean Monnet",
      "street_number": 12,
      "turnover": null,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LUCENAY",
      "client_creation_date": "2012-01-13",
      "closing_days_ids": [],
      "datlinq_code": 760775,
      "email": null,
      "id": 39,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0277E001",
      "location_areas_ids": [],
      "owner_name": "PAPIN LAURENT",
      "phone_number": "0474670610",
      "postal_code": "69480",
      "siren": "539157412",
      "siret": "53915741200013",
      "status": "M",
      "store_name": "Boulangerie aux Pains d'Antan",
      "street": "route d Anse",
      "street_number": 114,
      "turnover": 192000,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST OUEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760777,
      "email": null,
      "id": 41413,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-49212020",
      "postal_code": "93400",
      "siren": "525310967",
      "siret": "52531096700019",
      "status": "P",
      "store_name": "Class'croute",
      "street": "avenue Gabriel Peri",
      "street_number": 50,
      "turnover": 100000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RUEIL MALMAISON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760811,
      "email": null,
      "id": 32423,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0545B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-41421344",
      "postal_code": "92500",
      "siren": "432126787",
      "siret": "43212678700014",
      "status": "P",
      "store_name": "Snack Alibi",
      "street": "rue des 2 Gares",
      "street_number": 1,
      "turnover": 100000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CHAMOND",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760909,
      "email": null,
      "id": 772,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0349A001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-77228883",
      "postal_code": "42400",
      "siren": "419822374",
      "siret": "41982237400015",
      "status": "P",
      "store_name": "Cal'Pain",
      "street": "rue Victor Hugo",
      "street_number": 8,
      "turnover": 145318,
      "user_id": 62,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST ESTEVE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760922,
      "email": null,
      "id": 773,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468381657",
      "postal_code": "66240",
      "siren": "432520567",
      "siret": "43252056700012",
      "status": "P",
      "store_name": "Crêperie Sucrée Salée",
      "street": "avenue du General de Gaulle",
      "street_number": 2,
      "turnover": 10000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAMPAGNE AU MONT D OR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761067,
      "email": "lyon-dardilly@classcroute.com",
      "id": 41414,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-37460575",
      "postal_code": "69410",
      "siren": "340550524",
      "siret": "34055052400284",
      "status": "EMPTY_STATUS",
      "store_name": "Class'croute",
      "street": "rue des Rosieristes",
      "street_number": 10,
      "turnover": null,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GUYANCOURT",
      "client_creation_date": "18/08/2003",
      "closing_days_ids": [],
      "datlinq_code": 761071,
      "email": null,
      "id": 41415,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-30436060",
      "postal_code": "78280",
      "siren": "449901198",
      "siret": "44990119800019",
      "status": "P",
      "store_name": "Class'croute",
      "street": "rue Jean Moulin",
      "street_number": 18,
      "turnover": 668800,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANTONY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761074,
      "email": "antony@classcroute.com",
      "id": 41416,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42377766",
      "postal_code": "92160",
      "siren": "340550524",
      "siret": "34055052400102",
      "status": "P",
      "store_name": "Sandwicherie Class'croute",
      "street": "rue Alexis de Tocqueville",
      "street_number": 4,
      "turnover": 240000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAUGUES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761163,
      "email": null,
      "id": 32424,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "ME181001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-71778333",
      "postal_code": "43170",
      "siren": "329910186",
      "siret": "32991018600017",
      "status": "P",
      "store_name": "Pâtisserie Vernet",
      "street": "rue de l Hotel de Ville",
      "street_number": null,
      "turnover": 90000,
      "user_id": 54,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AUSSOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761179,
      "email": null,
      "id": 780,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79204948",
      "postal_code": "73500",
      "siren": "398904375",
      "siret": "39890437500019",
      "status": "P",
      "store_name": "La Grignott'",
      "street": "rue Plan Champ",
      "street_number": 1,
      "turnover": 250000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAUMONT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761181,
      "email": null,
      "id": 32425,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010870252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 325024270",
      "postal_code": "52000",
      "siren": "422849422",
      "siret": "42284942200015",
      "status": "P",
      "store_name": "L'entracte",
      "street": "rue du Docteur Michel",
      "street_number": 2,
      "turnover": 40000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA MURE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761183,
      "email": null,
      "id": 47550,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76304958",
      "postal_code": "38350",
      "siren": "323694869",
      "siret": "32369486900039",
      "status": "P",
      "store_name": "Boulangerie l'Encas",
      "street": "avenue Chion Ducollet",
      "street_number": 3,
      "turnover": 180000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTELIMAR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761280,
      "email": null,
      "id": 32426,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "26202001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-75017910",
      "postal_code": "26200",
      "siren": "389304049",
      "siret": "38930404900015",
      "status": "G",
      "store_name": "Sandwicherie Astor",
      "street": "avenue Saint Lazare",
      "street_number": 51,
      "turnover": 1217235,
      "user_id": 170,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE MESNIL AMELOT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761283,
      "email": null,
      "id": 41417,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Gosset",
      "phone_number": "01-60032344",
      "postal_code": "77990",
      "siren": "753779420",
      "siret": "75377942000011",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie du Mesnil",
      "street": "rue de Claye",
      "street_number": 42,
      "turnover": null,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BONNEUIL SUR MARNE",
      "client_creation_date": "1-1-1998",
      "closing_days_ids": [],
      "datlinq_code": 761324,
      "email": null,
      "id": 4846,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BOUGGUENA",
      "phone_number": "000-000",
      "postal_code": "94380",
      "siren": "413663071",
      "siret": "41366307100020",
      "status": "P",
      "store_name": "Boulangerie Au Bon Pain Chaud",
      "street": "rue Jean Moulin",
      "street_number": 7,
      "turnover": 100000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANTELEU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761327,
      "email": null,
      "id": 32427,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012400252110",
      "location_areas_ids": [],
      "owner_name": "CRETOT CHRISTINE",
      "phone_number": "+33 235360402",
      "postal_code": "76380",
      "siren": "441246220",
      "siret": "44124622000012",
      "status": "P",
      "store_name": "Restaurant au Cailly Saveurs",
      "street": "rue du Canal",
      "street_number": 40,
      "turnover": 200000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST LAURENT DU VAR",
      "client_creation_date": "2009-01-01",
      "closing_days_ids": [],
      "datlinq_code": 761333,
      "email": null,
      "id": 785,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SCAMUZZI",
      "phone_number": "04-92120909",
      "postal_code": "06700",
      "siren": "510163405",
      "siret": "51016340500010",
      "status": "P",
      "store_name": "Au Coin Gourmand",
      "street": "avenue des Pugets",
      "street_number": 21,
      "turnover": 300000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AYTRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761365,
      "email": null,
      "id": 788,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "27136001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46310052",
      "postal_code": "17440",
      "siren": "403856008",
      "siret": "40385600800012",
      "status": "G",
      "store_name": "Au Pain Dore",
      "street": "avenue Edmond Grasset",
      "street_number": 1,
      "turnover": 850000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761379,
      "email": null,
      "id": 789,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ZHANG YALI",
      "phone_number": "+33 534665510",
      "postal_code": "31400",
      "siren": "519463624",
      "siret": "51946362400022",
      "status": "P",
      "store_name": "Snack Bomi",
      "street": "avenue Antoine de Saint Exupery",
      "street_number": 25,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "OYONNAX",
      "client_creation_date": "2000-07-01",
      "closing_days_ids": [],
      "datlinq_code": 761390,
      "email": null,
      "id": 792,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "VITOR JOSE BACALHAU",
      "phone_number": "+33 474813948",
      "postal_code": "01100",
      "siren": "529936981",
      "siret": "52993698100024",
      "status": "P",
      "store_name": "Au P'Tit Creux",
      "street": "Rue Pierre Brunet",
      "street_number": 3,
      "turnover": 62600,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SARLAT LA CANEDA",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761391,
      "email": null,
      "id": 793,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "24200",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Au P'tit Creux",
      "street": "lieu dit La Croix Rouge",
      "street_number": null,
      "turnover": null,
      "user_id": 198,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LIMOGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761417,
      "email": null,
      "id": 799,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-55343170",
      "postal_code": "87000",
      "siren": "348111980",
      "siret": "34811198000036",
      "status": "P",
      "store_name": "Autef",
      "street": "rue Porte Tourny",
      "street_number": 6,
      "turnover": 85000,
      "user_id": 199,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761441,
      "email": null,
      "id": 39897,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "09363001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43385029",
      "postal_code": "75010",
      "siren": "437825011",
      "siret": "43782501100012",
      "status": "P",
      "store_name": "Boulangerie aux Delices de Belleville",
      "street": "rue du Faubourg du Temple",
      "street_number": 108,
      "turnover": 150000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LARDY",
      "client_creation_date": "22-2-2005",
      "closing_days_ids": [],
      "datlinq_code": 761444,
      "email": null,
      "id": 800,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MARC BAREZ",
      "phone_number": "01-60821228",
      "postal_code": "91510",
      "siren": "480966977",
      "siret": "48096697700013",
      "status": "P",
      "store_name": "Sandwicherie des Delices du Fournil",
      "street": "place des Droits de l Homme",
      "street_number": 7,
      "turnover": 102000,
      "user_id": 86,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-1-1993",
      "closing_days_ids": [],
      "datlinq_code": 761466,
      "email": null,
      "id": 801,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DIEUPART Jean Pierre",
      "phone_number": "01-44530453",
      "postal_code": "75009",
      "siren": "393173034",
      "siret": "39317303400033",
      "status": "M",
      "store_name": "Epicerie au Pipalotte Gourmande",
      "street": "rue de Rochechouart",
      "street_number": 49,
      "turnover": 550050,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRAND COURONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761469,
      "email": null,
      "id": 802,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235672811",
      "postal_code": "76530",
      "siren": "443448576",
      "siret": "44344857600019",
      "status": "P",
      "store_name": "Aux P'Tits Creux",
      "street": "rue Georges Clemenceau",
      "street_number": 66,
      "turnover": 120000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUTIRAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761477,
      "email": null,
      "id": 4848,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Piquet",
      "phone_number": "05-56675761",
      "postal_code": "33640",
      "siren": "799901731",
      "siret": "79990173100023",
      "status": "G",
      "store_name": "Les Saveurs du Fournil",
      "street": "route Nationale 113",
      "street_number": 68,
      "turnover": 900000,
      "user_id": 202,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MERIGNAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761478,
      "email": null,
      "id": 4849,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXE71001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56131912",
      "postal_code": "33700",
      "siren": "413735911",
      "siret": "41373591100013",
      "status": "M",
      "store_name": "Boulangerie Le Pain  De Beutre",
      "street": "avenue de l Argonne",
      "street_number": 221,
      "turnover": 421570,
      "user_id": 205,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE BILLANCOURT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761486,
      "email": null,
      "id": 803,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "92100",
      "siren": "399393347",
      "siret": "39939334700014",
      "status": "M",
      "store_name": "Le Pain a la Bouche",
      "street": "rue d Aguesseau",
      "street_number": 33,
      "turnover": 230000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FREYMING MERLEBACH",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761514,
      "email": null,
      "id": 47551,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387046401",
      "postal_code": "57800",
      "siren": null,
      "siret": "45087504200027",
      "status": "P",
      "store_name": "Sandwicherie Aygul Freres",
      "street": "avenue Erckmann Chatrian",
      "street_number": 57,
      "turnover": 220000,
      "user_id": 395,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "1987-04-01",
      "closing_days_ids": [],
      "datlinq_code": 761548,
      "email": null,
      "id": 40,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "CN026001",
      "location_areas_ids": [],
      "owner_name": "Macquet Patrick",
      "phone_number": "04-78307593",
      "postal_code": "69004",
      "siren": "322251042",
      "siret": "32225104200030",
      "status": "M",
      "store_name": "Sandwicherie les Trois Brioches",
      "street": "place de la Croix Rousse",
      "street_number": 8,
      "turnover": 225000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAVIGNY LE TEMPLE",
      "client_creation_date": "1-2-1999",
      "closing_days_ids": [],
      "datlinq_code": 761582,
      "email": null,
      "id": 807,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R3019001",
      "location_areas_ids": [],
      "owner_name": "BAHUT",
      "phone_number": "01-60630603",
      "postal_code": "77176",
      "siren": "421956947",
      "siret": "42195694700012",
      "status": "P",
      "store_name": "Sandwicherie le Pain Dore",
      "street": "avenue de l Europe",
      "street_number": 251,
      "turnover": 280000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEJUIF",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761589,
      "email": null,
      "id": 32430,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0998E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42118743",
      "postal_code": "94800",
      "siren": "453525388",
      "siret": "45352538800014",
      "status": "EMPTY_STATUS",
      "store_name": "Picola Roma......",
      "street": "avenue Paul Vaillant Couturier",
      "street_number": 49,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761597,
      "email": null,
      "id": 32431,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010001987252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 788103650",
      "postal_code": "62190",
      "siren": "784032658",
      "siret": "78403265800055",
      "status": "P",
      "store_name": "La Sandwicherie",
      "street": "rue de Verdun",
      "street_number": 31,
      "turnover": 50000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AVESNES SUR HELPE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761601,
      "email": null,
      "id": 809,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 674743000",
      "postal_code": "59440",
      "siren": "790267611",
      "siret": "79026761100016",
      "status": "P",
      "store_name": "Friterie la Fringale",
      "street": "rue d Albret",
      "street_number": 1,
      "turnover": 100000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761620,
      "email": null,
      "id": 50381,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328140381",
      "postal_code": "59800",
      "siren": "483140356",
      "siret": "48314035600039",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie Honey & Pie",
      "street": "Rue des Manneliers",
      "street_number": 5,
      "turnover": null,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PETIT CAUX",
      "client_creation_date": "2012-01-01",
      "closing_days_ids": [],
      "datlinq_code": 761662,
      "email": null,
      "id": 4851,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1041B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235838043",
      "postal_code": "76370",
      "siren": "750490005",
      "siret": "75049000500014",
      "status": "P",
      "store_name": "Boulangerie Cresson Furon",
      "street": "rue Pasteur",
      "street_number": 6,
      "turnover": 200000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HAM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761709,
      "email": null,
      "id": 37298,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1453W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "80400",
      "siren": "437544695",
      "siret": "43754469500012",
      "status": "P",
      "store_name": "Pizza Anna",
      "street": "rue du General Leclerc",
      "street_number": 45,
      "turnover": 50000,
      "user_id": 121,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761787,
      "email": null,
      "id": 38116,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 534455894",
      "postal_code": "31000",
      "siren": "318906591",
      "siret": "31890659100686",
      "status": "EMPTY_STATUS",
      "store_name": "La Brioche Dorée",
      "street": "rue d Alsace Lorraine",
      "street_number": 85,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COULOMMIERS",
      "client_creation_date": "1-4-1993",
      "closing_days_ids": [],
      "datlinq_code": 761881,
      "email": null,
      "id": 821,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BENAIM",
      "phone_number": "01-64207811",
      "postal_code": "77120",
      "siren": "330140534",
      "siret": "33014053400026",
      "status": "EMPTY_STATUS",
      "store_name": "Croissanterie La Mie",
      "street": "rue du Marche",
      "street_number": 6,
      "turnover": null,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761898,
      "email": null,
      "id": 4852,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ELKADDOURI M'HAMED",
      "phone_number": "+33 534601183",
      "postal_code": "31100",
      "siren": "402100473",
      "siret": "40210047300014",
      "status": "P",
      "store_name": "Boulangerie le Buffet Apain",
      "street": "rue de l Universite du Mirail",
      "street_number": 5,
      "turnover": 210136,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 761935,
      "email": null,
      "id": 38117,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-44530652",
      "postal_code": "75009",
      "siren": "494501794",
      "siret": "49450179400015",
      "status": "P",
      "store_name": "La Paille D'Or",
      "street": "rue du Faubourg Poissonniere",
      "street_number": 163,
      "turnover": 10000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOURGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761962,
      "email": null,
      "id": 826,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "18000",
      "siren": "451839211",
      "siret": "45183921100013",
      "status": "P",
      "store_name": "La Grignote Du Boomerang",
      "street": "avenue Marcel Sembat",
      "street_number": null,
      "turnover": 90000,
      "user_id": 51,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST AVE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762056,
      "email": null,
      "id": 38118,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0147W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-97618566",
      "postal_code": "56890",
      "siren": "477976674",
      "siret": "47797667400044",
      "status": "G",
      "store_name": "A La Cabane A Pizza",
      "street": "rue Marcel Dassault",
      "street_number": 4,
      "turnover": 400000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHALONS EN CHAMPAGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762204,
      "email": null,
      "id": 50382,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326701010",
      "postal_code": "51000",
      "siren": "499425759",
      "siret": "49942575900010",
      "status": "EMPTY_STATUS",
      "store_name": "La Boite A Pizza",
      "street": "rue Jean Jaures",
      "street_number": 65,
      "turnover": null,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762273,
      "email": null,
      "id": 47552,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "09-83986878",
      "postal_code": "64000",
      "siren": "514356963",
      "siret": "51435696300017",
      "status": "EMPTY_STATUS",
      "store_name": "SandwicherieCroq'Delyne",
      "street": "rue de Liege",
      "street_number": 10,
      "turnover": null,
      "user_id": 208,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MURET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762274,
      "email": null,
      "id": 835,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561510930",
      "postal_code": "31600",
      "siren": "349727842",
      "siret": "34972784200016",
      "status": "M",
      "store_name": "La Petite Muretaine",
      "street": "avenue Roger Tissandie",
      "street_number": 20,
      "turnover": 300000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRENOBLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762289,
      "email": null,
      "id": 837,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76841609",
      "postal_code": "38000",
      "siren": "445253750",
      "siret": "44525375000027",
      "status": "P",
      "store_name": "Snack le Petit Casse",
      "street": "cours Berriat",
      "street_number": 67,
      "turnover": 30000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BASTIA",
      "client_creation_date": "8-1-2004",
      "closing_days_ids": [],
      "datlinq_code": 762296,
      "email": "crysteleric@aol.com",
      "id": 4854,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RLI35001",
      "location_areas_ids": [],
      "owner_name": "LAZARINI",
      "phone_number": "04-95327275",
      "postal_code": "20200",
      "siren": "478307366",
      "siret": "47830736600011",
      "status": "M",
      "store_name": "Boulangerie Lazarini",
      "street": "rue Cesar Vezzani",
      "street_number": null,
      "turnover": 248400,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MENTON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762332,
      "email": null,
      "id": 838,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "06500",
      "siren": "480360817",
      "siret": "48036081700013",
      "status": "P",
      "store_name": "Pains Chauds Du Jardin",
      "street": "place du Petit Port",
      "street_number": 4,
      "turnover": 1000,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANGERS",
      "client_creation_date": "2013-01-01",
      "closing_days_ids": [],
      "datlinq_code": 762356,
      "email": null,
      "id": 37299,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007434252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241876622",
      "postal_code": "49100",
      "siren": "751524612",
      "siret": "75152461200015",
      "status": "G",
      "store_name": "Snack la Fabrique du Mil'Pates",
      "street": "rue Plantagenet",
      "street_number": 61,
      "turnover": 475000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOCMINE",
      "client_creation_date": "2014-06-01",
      "closing_days_ids": [],
      "datlinq_code": 762443,
      "email": null,
      "id": 4856,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DEUDON",
      "phone_number": "02-97600646",
      "postal_code": "56500",
      "siren": "490932100",
      "siret": "49093210000020",
      "status": "P",
      "store_name": "Boulangerie Deudon La Baguette D Or",
      "street": "place Saint Antoine",
      "street_number": 6,
      "turnover": 300000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANGOULINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762453,
      "email": null,
      "id": 4857,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "PEROLLE",
      "phone_number": "05-46510791",
      "postal_code": "17690",
      "siren": "752559732",
      "siret": "75255973200017",
      "status": "M",
      "store_name": "Boulangerie Patisserie Les Fourneaux",
      "street": "avenue Albert Denis",
      "street_number": null,
      "turnover": 340000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BORDEAUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762454,
      "email": null,
      "id": 841,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56922222",
      "postal_code": "33000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Brioche Doree",
      "street": "place de la Victoire",
      "street_number": 12,
      "turnover": null,
      "user_id": 204,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762455,
      "email": null,
      "id": 842,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45613158",
      "postal_code": "75008",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Brioche Doree",
      "street": "avenue des Champs Elysees",
      "street_number": 144,
      "turnover": null,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TALMONT SUR GIRONDE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762469,
      "email": null,
      "id": 844,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "17120",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Plaisirs Sucres",
      "street": "Grande Rue Du Port",
      "street_number": 15,
      "turnover": null,
      "user_id": 152,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA CHARTRE SUR LE LOIR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762470,
      "email": null,
      "id": 845,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243791648",
      "postal_code": "72340",
      "siren": "378065593",
      "siret": "37806559300030",
      "status": "P",
      "store_name": "La Grignote",
      "street": "rue Nationale",
      "street_number": 17,
      "turnover": 100000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROUBAIX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762501,
      "email": null,
      "id": 848,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320737878",
      "postal_code": "59100",
      "siren": "393222880",
      "siret": "39322288000022",
      "status": "M",
      "store_name": "Bs Viennoiserie",
      "street": "boulevard du General Leclerc",
      "street_number": 53,
      "turnover": 220900,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PERPIGNAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762505,
      "email": "starkebab66@gmail.com",
      "id": 47553,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468510046",
      "postal_code": "66000",
      "siren": "493100572",
      "siret": "49310057200020",
      "status": "M",
      "store_name": "Star d'Or Kebab",
      "street": "avenue du General de Gaulle",
      "street_number": 11,
      "turnover": 200000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RENNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762550,
      "email": null,
      "id": 39899,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0523F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-23210210",
      "postal_code": "35700",
      "siren": "493585962",
      "siret": "49358596200027",
      "status": "P",
      "store_name": "Pizza Tempo",
      "street": "rue de Fougeres",
      "street_number": 130,
      "turnover": 100000,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATILLON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762615,
      "email": null,
      "id": 32434,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0709E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-40929356",
      "postal_code": "92320",
      "siren": "393474978",
      "siret": "39347497800011",
      "status": "M",
      "store_name": "Cafe Babak",
      "street": "avenue de la Republique",
      "street_number": 181,
      "turnover": 200000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ORLEANS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762623,
      "email": null,
      "id": 852,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 238625092",
      "postal_code": "45000",
      "siren": "312733702",
      "siret": "31273370200111",
      "status": "EMPTY_STATUS",
      "store_name": "La Croissanterie",
      "street": "rue Nicolas Copernic",
      "street_number": 2,
      "turnover": null,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CARRIERES SUR SEINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762699,
      "email": null,
      "id": 857,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-39134797",
      "postal_code": "78420",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant la Cabane a Sucre",
      "street": "rue du Moulin",
      "street_number": 45,
      "turnover": null,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762782,
      "email": null,
      "id": 859,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47971818",
      "postal_code": "75020",
      "siren": "394797005",
      "siret": "39479700500011",
      "status": "EMPTY_STATUS",
      "store_name": "Carthage",
      "street": "rue des Pyrenees",
      "street_number": 239,
      "turnover": null,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BANYULS SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762824,
      "email": null,
      "id": 863,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468880125",
      "postal_code": "66650",
      "siren": "404856759",
      "siret": "40485675900018",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie la Ganotte",
      "street": "place de la Mediterranee",
      "street_number": null,
      "turnover": null,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SALEILLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762948,
      "email": null,
      "id": 864,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468229061",
      "postal_code": "66280",
      "siren": "450047485",
      "siret": "45004748500013",
      "status": "P",
      "store_name": "O Soleil Gourmand",
      "street": "avenue du Clair Soleil",
      "street_number": 1,
      "turnover": 10000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLERMONT FERRAND",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762955,
      "email": null,
      "id": 865,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-73364128",
      "postal_code": "63000",
      "siren": "339990004",
      "siret": "33999000400022",
      "status": "P",
      "store_name": "Le P'Tit Creux",
      "street": "rue du 11 Novembre",
      "street_number": 2,
      "turnover": 98000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SEVRIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763106,
      "email": null,
      "id": 4861,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50526576",
      "postal_code": "74320",
      "siren": "338046741",
      "siret": "33804674100017",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Les Boulangers Chevallier",
      "street": "chemin du Brouillet",
      "street_number": null,
      "turnover": null,
      "user_id": 61,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "POISY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763107,
      "email": null,
      "id": 4862,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50226364",
      "postal_code": "74330",
      "siren": "338046741",
      "siret": "33804674100058",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Les Boulangers Chevallier",
      "street": "route des Creusettes",
      "street_number": 30,
      "turnover": null,
      "user_id": 61,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MARTIN BELLEVUE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763108,
      "email": null,
      "id": 4863,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50602057",
      "postal_code": "74370",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Les Boulangers Chevallier",
      "street": "route des Diacquenots",
      "street_number": null,
      "turnover": null,
      "user_id": 58,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA BALME DE SILLINGY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763109,
      "email": null,
      "id": 4864,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50688075",
      "postal_code": "74330",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Chevallier",
      "street": "chez lieu",
      "street_number": null,
      "turnover": null,
      "user_id": 61,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALBENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763110,
      "email": null,
      "id": 4865,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79541642",
      "postal_code": "73410",
      "siren": "338046741",
      "siret": "33804674100116",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Les Boulangers Chevallier",
      "street": "route de Rumilly",
      "street_number": null,
      "turnover": null,
      "user_id": 61,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANNECY LE VIEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763111,
      "email": null,
      "id": 4866,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50098842",
      "postal_code": "74940",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie les Boulangers Chevallier",
      "street": "rue de Lachat",
      "street_number": 17,
      "turnover": null,
      "user_id": 61,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 763215,
      "email": null,
      "id": 38119,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "75009",
      "siren": "538819269",
      "siret": "53881926900019",
      "status": "P",
      "store_name": "Chocoline",
      "street": "rue de Mogador",
      "street_number": 29,
      "turnover": 180000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763216,
      "email": null,
      "id": 876,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42255104",
      "postal_code": "75008",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Croissanterie Chocoline",
      "street": "rue Jean Mermoz",
      "street_number": 24,
      "turnover": 100,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE GRAND BORNAND",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987608,
      "email": null,
      "id": 19638,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50022071",
      "postal_code": "74450",
      "siren": "382725281",
      "siret": "38272528100010",
      "status": "M",
      "store_name": "Boulangerie Vulliet Freres",
      "street": "place de l Eglise",
      "street_number": null,
      "turnover": 522000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CROZON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987655,
      "email": null,
      "id": 19663,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-98272942",
      "postal_code": "29160",
      "siren": "387965668",
      "siret": "38796566800016",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Gerard Le Corre",
      "street": "rue Graveran",
      "street_number": 35,
      "turnover": null,
      "user_id": 149,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RUAN",
      "client_creation_date": "2011-01-01",
      "closing_days_ids": [],
      "datlinq_code": 987688,
      "email": null,
      "id": 19678,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Pascal Bourdeau",
      "phone_number": "+33 238800280",
      "postal_code": "45410",
      "siren": "389926957",
      "siret": "38992695700017",
      "status": "P",
      "store_name": "Boulangerie Gerard Dufour",
      "street": "rue de la Pie Hardie",
      "street_number": 63,
      "turnover": 166127,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JEAN D ELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987753,
      "email": null,
      "id": 19706,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233561690",
      "postal_code": "50810",
      "siren": "395398563",
      "siret": "39539856300019",
      "status": "P",
      "store_name": "Boulangerie Michel Genty",
      "street": "le Fourchet",
      "street_number": 1,
      "turnover": 170000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAVAL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987829,
      "email": "les-lavallois@hotmail.fr",
      "id": 19749,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010009732252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243564181",
      "postal_code": "53000",
      "siren": "402942197",
      "siret": "40294219700011",
      "status": "G",
      "store_name": "Boulangerie Pacilly",
      "street": "rue du Lycee",
      "street_number": 8,
      "turnover": 161483,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-5-2000",
      "closing_days_ids": [],
      "datlinq_code": 987871,
      "email": null,
      "id": 19759,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "02625001",
      "location_areas_ids": [],
      "owner_name": "JULIEN GONTRAN",
      "phone_number": "01-43597876",
      "postal_code": "75008",
      "siren": "431280254",
      "siret": "43128025400019",
      "status": "P",
      "store_name": "Boulangerie l Angelique Julien",
      "street": "avenue Franklin Delano Roosevelt",
      "street_number": 73,
      "turnover": 800000,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HAUTERIVES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987884,
      "email": null,
      "id": 19764,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-75689006",
      "postal_code": "26390",
      "siren": "381931815",
      "siret": "38193181500017",
      "status": "P",
      "store_name": "Boulangerie Goudey",
      "street": "Grande Rue",
      "street_number": 12,
      "turnover": 180000,
      "user_id": 170,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JOUIN BRUNEVAL",
      "client_creation_date": "2006-01-12",
      "closing_days_ids": [],
      "datlinq_code": 987933,
      "email": "lefournildesfalaises@orange.fr",
      "id": 19787,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003123252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235207413",
      "postal_code": "76280",
      "siren": "488354002",
      "siret": "48835400200013",
      "status": "P",
      "store_name": "Le Fournil des Falaises",
      "street": "rue du General de Gaulle",
      "street_number": 21,
      "turnover": 120000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CAST LE GUILDO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988003,
      "email": null,
      "id": 19825,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MIRIEL JACQUES",
      "phone_number": "02-96411866",
      "postal_code": "22380",
      "siren": "394792220",
      "siret": "39479222000011",
      "status": "M",
      "store_name": "Boulangerie Miriel",
      "street": "boulevard de l Arguenon",
      "street_number": 13,
      "turnover": 350000,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SCEAUX SUR HUISNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988030,
      "email": null,
      "id": 19842,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010014610252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243933543",
      "postal_code": "72160",
      "siren": "505383141",
      "siret": "50538314100015",
      "status": "M",
      "store_name": "Boulangerie Garcia",
      "street": "avenue General de Gaulle",
      "street_number": 10,
      "turnover": 170000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MILLAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988045,
      "email": null,
      "id": 32936,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016079252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 565601557",
      "postal_code": "12100",
      "siren": "399978030",
      "siret": "39997803000019",
      "status": "P",
      "store_name": "Boulangerie Le Fournil De Saint Jacques",
      "street": "avenue Jean Jaures",
      "street_number": 3,
      "turnover": 191810,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST PRIVAT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988060,
      "email": null,
      "id": 19855,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-55282682",
      "postal_code": "19220",
      "siren": "401754411",
      "siret": "40175441100023",
      "status": "P",
      "store_name": "Boulangerie Maison Guillaume Tible",
      "street": "rue de la Xaintrie",
      "street_number": 39,
      "turnover": 140000,
      "user_id": 196,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURNON D AUVERGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988072,
      "email": null,
      "id": 19861,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1014F001",
      "location_areas_ids": [],
      "owner_name": "PASQUIER",
      "phone_number": "04-73849632",
      "postal_code": "63800",
      "siren": "751806621",
      "siret": "75180662100023",
      "status": "M",
      "store_name": "Boulangerie des Domes",
      "street": "avenue des Domes",
      "street_number": 5,
      "turnover": 482500,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GARGES LES GONESSE",
      "client_creation_date": "1-4-1997",
      "closing_days_ids": [],
      "datlinq_code": 988169,
      "email": null,
      "id": 19915,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BELHADJ",
      "phone_number": "01-34455414",
      "postal_code": "95140",
      "siren": "411694474",
      "siret": "41169447400015",
      "status": "P",
      "store_name": "Boulangerie Pain Chaud de la Gare",
      "street": "place de l Hotel de Ville",
      "street_number": null,
      "turnover": 347060,
      "user_id": 79,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIC SUR SEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988211,
      "email": null,
      "id": 19936,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010025777252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387011047",
      "postal_code": "57630",
      "siren": "414275107",
      "siret": "41427510700012",
      "status": "P",
      "store_name": "Boulangerie Banette Bleeker",
      "street": "place Jeanne d Arc",
      "street_number": 8,
      "turnover": 175000,
      "user_id": 395,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LEVALLOIS PERRET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988372,
      "email": null,
      "id": 32950,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R9189001",
      "location_areas_ids": [],
      "owner_name": "Chevret",
      "phone_number": "01-47561402",
      "postal_code": "92300",
      "siren": "511363145",
      "siret": "51136314500018",
      "status": "G",
      "store_name": "Chevret And Co",
      "street": "rue Baudin",
      "street_number": 80,
      "turnover": 579000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VERNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988450,
      "email": null,
      "id": 19945,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232511753",
      "postal_code": "27200",
      "siren": "511590572",
      "siret": "51159057200026",
      "status": "EMPTY_STATUS",
      "store_name": "La Grignoterie",
      "street": "boulevard Jean Jaures",
      "street_number": null,
      "turnover": null,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOEUILLY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988781,
      "email": null,
      "id": 19966,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-22381315",
      "postal_code": "80160",
      "siren": "419723846",
      "siret": "41972384600038",
      "status": "P",
      "store_name": "Boulangerie Fortin",
      "street": "rue d Amiens",
      "street_number": 35,
      "turnover": 130000,
      "user_id": 121,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SUCE SUR ERDRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988841,
      "email": null,
      "id": 19995,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40779637",
      "postal_code": "44240",
      "siren": "532926391",
      "siret": "53292639100014",
      "status": "EMPTY_STATUS",
      "store_name": "Au Pain Suceen",
      "street": "residence les Champs Ronds",
      "street_number": 5,
      "turnover": null,
      "user_id": 144,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALENCON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988863,
      "email": null,
      "id": 20013,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003906252110",
      "location_areas_ids": [],
      "owner_name": "FOUILLARD",
      "phone_number": "+33 233270082",
      "postal_code": "61000",
      "siren": "442114690",
      "siret": "44211469000013",
      "status": "P",
      "store_name": "Boulangerie Fouillard",
      "street": "rue Ernest Marchand Saillant",
      "street_number": 100,
      "turnover": 120000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FOURQUES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988867,
      "email": null,
      "id": 20017,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 490932924",
      "postal_code": "30300",
      "siren": "324674464",
      "siret": "32467446400049",
      "status": "P",
      "store_name": "Boulangerie Le Petrin Fourquesien",
      "street": "rue de la Republique",
      "street_number": 23,
      "turnover": 150000,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURNEMIRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988900,
      "email": null,
      "id": 20036,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005839252110",
      "location_areas_ids": [],
      "owner_name": "CRISTOL OLIVIER",
      "phone_number": "+33 565599084",
      "postal_code": "12250",
      "siren": "419951637",
      "siret": "41995163700018",
      "status": "P",
      "store_name": "Boulangerie Bellevue",
      "street": "avenue Hippolyte Puech",
      "street_number": null,
      "turnover": 93884,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ABONDANT",
      "client_creation_date": "2009-08-18",
      "closing_days_ids": [],
      "datlinq_code": 988915,
      "email": null,
      "id": 20050,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "GEFFROY",
      "phone_number": "+33 237487369",
      "postal_code": "28410",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Geffroy Sebastien",
      "street": "Grande Rue",
      "street_number": 31,
      "turnover": 250000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AIGUES VIVES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988924,
      "email": null,
      "id": 20056,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 615336714",
      "postal_code": "30670",
      "siren": "435196019",
      "siret": "43519601900028",
      "status": "P",
      "store_name": "Boulangerie Pains et Gourmandises",
      "street": "Grand Rue",
      "street_number": 52,
      "turnover": 110000,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTAGNY LES BEAUNE",
      "client_creation_date": "2004-04-01",
      "closing_days_ids": [],
      "datlinq_code": 988955,
      "email": null,
      "id": 20080,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Néault",
      "phone_number": "+33 380242614",
      "postal_code": "21200",
      "siren": "452649619",
      "siret": "45264961900015",
      "status": "P",
      "store_name": "Boulangerie Emmanuel",
      "street": "rue de la Solle",
      "street_number": 16,
      "turnover": 210000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-2-2010",
      "closing_days_ids": [],
      "datlinq_code": 988983,
      "email": null,
      "id": 20096,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "L0808001",
      "location_areas_ids": [],
      "owner_name": "RUSSEL EMIL",
      "phone_number": "01-43543969",
      "postal_code": "75005",
      "siren": "519673800",
      "siret": "51967380000016",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie aux Delices de Jussieu",
      "street": "rue Jussieu",
      "street_number": 23,
      "turnover": 403319,
      "user_id": 91,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MOREUIL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989024,
      "email": "0620442119@sfr.fr",
      "id": 20124,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "A1249001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-22097113",
      "postal_code": "80110",
      "siren": "443317409",
      "siret": "44331740900029",
      "status": "M",
      "store_name": "Boulangerie Marchesi David",
      "street": "rue Veuve Thibauville",
      "street_number": 35,
      "turnover": 210000,
      "user_id": 121,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MOIRANS EN MONTAGNE",
      "client_creation_date": "1963-01-01",
      "closing_days_ids": [],
      "datlinq_code": 989065,
      "email": null,
      "id": 20152,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005256252110",
      "location_areas_ids": [],
      "owner_name": "Hufschmid",
      "phone_number": "+33 384420143",
      "postal_code": "39260",
      "siren": "314155649",
      "siret": "31415564900036",
      "status": "M",
      "store_name": "Boulangerie Hufschmid Philippe",
      "street": "place de Verdun",
      "street_number": 4,
      "turnover": 270882,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE TOUVET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989164,
      "email": null,
      "id": 20218,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76085000",
      "postal_code": "38660",
      "siren": "418355327",
      "siret": "41835532700010",
      "status": "P",
      "store_name": "Boulangerie Metay Maurice Marcel",
      "street": "place de l Eglise",
      "street_number": 1,
      "turnover": 100000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOUCY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989276,
      "email": null,
      "id": 32959,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016384252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386441489",
      "postal_code": "89130",
      "siren": "430000067",
      "siret": "43000006700016",
      "status": "G",
      "store_name": "Pâtisserie Durand",
      "street": "rue Paul Bert",
      "street_number": 2,
      "turnover": 300000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FAVIERES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989286,
      "email": null,
      "id": 20270,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83251326",
      "postal_code": "54115",
      "siren": "431328327",
      "siret": "43132832700017",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Aubertin Olivier Maurice Andre",
      "street": "rue du Docteur Liebault",
      "street_number": 22,
      "turnover": null,
      "user_id": 102,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-6-2000",
      "closing_days_ids": [],
      "datlinq_code": 989291,
      "email": null,
      "id": 2568,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SEBBAN MAURICE",
      "phone_number": "01-42089990",
      "postal_code": "75019",
      "siren": "431719343",
      "siret": "43171934300011",
      "status": "P",
      "store_name": "Sandwicherie chez Akol",
      "street": "rue d Hautpoul",
      "street_number": 67,
      "turnover": 2000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989305,
      "email": "boulangerie-patisserie-fardin@orange.fr",
      "id": 20279,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007833252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231822389",
      "postal_code": "14000",
      "siren": "432405462",
      "siret": "43240546200016",
      "status": "G",
      "store_name": "Boulangerie aux Délices de la Guérinièr",
      "street": "rue de la Gueriniere",
      "street_number": 35,
      "turnover": 619163,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA FOUILLADE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989318,
      "email": null,
      "id": 20283,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DELMUR BRUNO",
      "phone_number": "+33 565657004",
      "postal_code": "12270",
      "siren": "433035680",
      "siret": "43303568000019",
      "status": "G",
      "store_name": "Boulangerie Delmur Hubert",
      "street": "route du Segala",
      "street_number": 10,
      "turnover": 600000,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GOURNAY EN BRAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989337,
      "email": null,
      "id": 20294,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235900461",
      "postal_code": "76220",
      "siren": "489030882",
      "siret": "48903088200018",
      "status": "M",
      "store_name": "Boulangerie Hequet",
      "street": "rue de l Abreuvoir",
      "street_number": 30,
      "turnover": 249592,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST QUENTIN LA POTERIE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989455,
      "email": null,
      "id": 20348,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466222584",
      "postal_code": "30700",
      "siren": "443839790",
      "siret": "44383979000013",
      "status": "P",
      "store_name": "Boulangerie Pesin",
      "street": "Grand Rue",
      "street_number": null,
      "turnover": 150000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DURMENACH",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989480,
      "email": null,
      "id": 20364,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-89258110",
      "postal_code": "68480",
      "siren": "447835703",
      "siret": "44783570300011",
      "status": "P",
      "store_name": "Boulangerie Isler Cyrille",
      "street": "rue de l Ill",
      "street_number": 25,
      "turnover": 250000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ATHIS VAL DE ROUVRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989508,
      "email": null,
      "id": 20374,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233662066",
      "postal_code": "61100",
      "siren": "449401876",
      "siret": "44940187600015",
      "status": "P",
      "store_name": "Boulangerie Hergault",
      "street": "lieu dit Le Bourg",
      "street_number": null,
      "turnover": 145000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BELLEY",
      "client_creation_date": "2003-03-21",
      "closing_days_ids": [],
      "datlinq_code": 989604,
      "email": null,
      "id": 20428,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ABRY",
      "phone_number": "+33 479810450",
      "postal_code": "01300",
      "siren": "447712613",
      "siret": "44771261300010",
      "status": "M",
      "store_name": "Boulangerie Patisserie Abry",
      "street": "rue Saint Martin",
      "street_number": 18,
      "turnover": 323500,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST ROMAIN DE POPEY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989608,
      "email": null,
      "id": 20432,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-74058043",
      "postal_code": "69490",
      "siren": "449303338",
      "siret": "44930333800015",
      "status": "P",
      "store_name": "Boulangerie Gilardon",
      "street": "place du Popey",
      "street_number": null,
      "turnover": 125000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PIENNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989637,
      "email": null,
      "id": 32971,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010627252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 382217343",
      "postal_code": "54490",
      "siren": "451753933",
      "siret": "45175393300014",
      "status": "M",
      "store_name": "Patisserie Pecci Ludovic",
      "street": "rue de Verdun",
      "street_number": 23,
      "turnover": 250000,
      "user_id": 393,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSAC EN LIVRADOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989672,
      "email": null,
      "id": 20471,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "2567E001",
      "location_areas_ids": [],
      "owner_name": "FRUGERE",
      "phone_number": "04-73956032",
      "postal_code": "63940",
      "siren": "453789885",
      "siret": "45378988500010",
      "status": "P",
      "store_name": "Snc Boulangerie Patisserie Frugere",
      "street": "rue des Ecoles",
      "street_number": 21,
      "turnover": 120000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUCHAMP",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989677,
      "email": null,
      "id": 20475,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "11363001",
      "location_areas_ids": [],
      "owner_name": "Bourg Jean Christophe",
      "phone_number": "01-34181938",
      "postal_code": "95250",
      "siren": "453939027",
      "siret": "45393902700018",
      "status": "M",
      "store_name": "Boulangerie Bourg Jean Christophe",
      "street": "avenue de la Gare",
      "street_number": 14,
      "turnover": 300000,
      "user_id": 80,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STRASBOURG",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989746,
      "email": null,
      "id": 46595,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1427F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-88353737",
      "postal_code": "67000",
      "siren": "821546215",
      "siret": "82154621500012",
      "status": "M",
      "store_name": "Salon de Thé Goehry",
      "street": "rue des Recollets",
      "street_number": 3,
      "turnover": 350000,
      "user_id": 112,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LES MARCHES",
      "client_creation_date": "2005",
      "closing_days_ids": [],
      "datlinq_code": 989767,
      "email": null,
      "id": 20529,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79706508",
      "postal_code": "73800",
      "siren": "482908613",
      "siret": "48290861300011",
      "status": "G",
      "store_name": "Boulangerie aux Delices des Marches",
      "street": "route du Gresivaudan",
      "street_number": 24,
      "turnover": 303156,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHALONS EN CHAMPAGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989822,
      "email": null,
      "id": 20554,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326681575",
      "postal_code": "51000",
      "siren": "488219692",
      "siret": "48821969200016",
      "status": "P",
      "store_name": "Boulangerie au Pain d'Antan",
      "street": "rue Carnot",
      "street_number": 27,
      "turnover": 300000,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BENET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989859,
      "email": null,
      "id": 20584,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0937D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-51873364",
      "postal_code": "85490",
      "siren": "388231250",
      "siret": "38823125000027",
      "status": "G",
      "store_name": "Boulangerie la Barque a Pain",
      "street": "rue de la Combe",
      "street_number": 1,
      "turnover": 358000,
      "user_id": 153,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURNON SUR RHONE",
      "client_creation_date": "2008-01-01",
      "closing_days_ids": [],
      "datlinq_code": 989874,
      "email": null,
      "id": 20597,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 475080251",
      "postal_code": "07300",
      "siren": "492803945",
      "siret": "49280394500012",
      "status": "P",
      "store_name": "Boulangerie Patisserie Juge",
      "street": "place Jean Jaures",
      "street_number": 19,
      "turnover": 180000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DOMPIERRE SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989903,
      "email": null,
      "id": 20620,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Fageon",
      "phone_number": "05-46353142",
      "postal_code": "17139",
      "siren": "503439226",
      "siret": "50343922600013",
      "status": "M",
      "store_name": "Boulangerie Kara",
      "street": "rue du General de Gaulle",
      "street_number": 36,
      "turnover": 228300,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST DIDIER SUR CHALARONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989905,
      "email": null,
      "id": 20622,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 474040353",
      "postal_code": "01140",
      "siren": "498903673",
      "siret": "49890367300016",
      "status": "P",
      "store_name": "Boulangerie Guillin Nicolas",
      "street": "rue de l Eglise",
      "street_number": 29,
      "turnover": 140000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DISSAY SOUS COURCILLON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989940,
      "email": null,
      "id": 20652,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243440917",
      "postal_code": "72500",
      "siren": "413473802",
      "siret": "41347380200028",
      "status": "P",
      "store_name": "Boulangerie Rottier",
      "street": "place Marcel Morand",
      "street_number": 7,
      "turnover": 135000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIEILLE EGLISE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989945,
      "email": null,
      "id": 20657,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0010035349252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321193231",
      "postal_code": "62162",
      "siren": "504655317",
      "siret": "50465531700015",
      "status": "G",
      "store_name": "Fournil deux Eglises",
      "street": "rue du Fort Batard",
      "street_number": 185,
      "turnover": 600000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BESANCON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990014,
      "email": null,
      "id": 20716,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 381884877",
      "postal_code": "25000",
      "siren": "321646580",
      "siret": "32164658000027",
      "status": "P",
      "store_name": "Boulangerie Maison Christe",
      "street": "rue Paul Bert",
      "street_number": 11,
      "turnover": 20000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NAVENNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990015,
      "email": "les4sapins@orange.fr",
      "id": 20717,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005958252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 384969419",
      "postal_code": "70000",
      "siren": "433885894",
      "siret": "43388589400025",
      "status": "M",
      "store_name": "Boulangerie Richer Manuel",
      "street": "rue Victor Hugo",
      "street_number": 15,
      "turnover": 200000,
      "user_id": 411,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PUY EN VELAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990022,
      "email": null,
      "id": 20721,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Mathieu RANCON",
      "phone_number": "04-71055703",
      "postal_code": "43000",
      "siren": "479621997",
      "siret": "47962199700010",
      "status": "P",
      "store_name": "Boulangerie Le Bon Pain De France",
      "street": "boulevard George Sand",
      "street_number": 7,
      "turnover": 160000,
      "user_id": 54,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST AGREVE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990036,
      "email": "bardej@wanadoo.fr",
      "id": 20732,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010014957252110",
      "location_areas_ids": [],
      "owner_name": "Barde",
      "phone_number": "+33 475301050",
      "postal_code": "07320",
      "siren": "492428958",
      "siret": "49242895800010",
      "status": "M",
      "store_name": "Boulangerie Barde",
      "street": "Grande Rue",
      "street_number": 74,
      "turnover": 180000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANGERS",
      "client_creation_date": "2007-09-12",
      "closing_days_ids": [],
      "datlinq_code": 990078,
      "email": null,
      "id": 20770,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "GUILLOT",
      "phone_number": "+33 241663586",
      "postal_code": "49000",
      "siren": "429934946",
      "siret": "42993494600022",
      "status": "P",
      "store_name": "Boulangerie Au Doux Peche",
      "street": "rue Saumuroise",
      "street_number": 200,
      "turnover": 240000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOUHANS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990124,
      "email": null,
      "id": 20795,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 385750364",
      "postal_code": "71500",
      "siren": "393973540",
      "siret": "39397354000031",
      "status": "P",
      "store_name": "Boulangerie Ridet",
      "street": "rue du Jura",
      "street_number": 9,
      "turnover": 150000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VAILHAUQUES",
      "client_creation_date": "2016-01-01",
      "closing_days_ids": [],
      "datlinq_code": 990184,
      "email": null,
      "id": 20836,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467844502",
      "postal_code": "34570",
      "siren": "441936150",
      "siret": "44193615000024",
      "status": "M",
      "store_name": "Boulangerie Art Gourmand/le fournil",
      "street": "CCommercial le Salet",
      "street_number": null,
      "turnover": 280000,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA GUERCHE DE BRETAGNE",
      "client_creation_date": "2007-03-28",
      "closing_days_ids": [],
      "datlinq_code": 990191,
      "email": null,
      "id": 20843,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BRIAND",
      "phone_number": "02-99963043",
      "postal_code": "35130",
      "siren": "495086670",
      "siret": "49508667000017",
      "status": "P",
      "store_name": "Boulangerie la Huche AaPains",
      "street": "rue de Rennes",
      "street_number": 21,
      "turnover": 260000,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MORLAIX",
      "client_creation_date": "2008",
      "closing_days_ids": [],
      "datlinq_code": 990220,
      "email": null,
      "id": 20863,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Vignard Olivier",
      "phone_number": "02-98624058",
      "postal_code": "29600",
      "siren": "504291733",
      "siret": "50429173300013",
      "status": "P",
      "store_name": "Boulangerie Vignard",
      "street": "place du General de Gaulle",
      "street_number": 27,
      "turnover": 250000,
      "user_id": 147,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990271,
      "email": null,
      "id": 20871,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42655690",
      "postal_code": "75008",
      "siren": "421246281",
      "siret": "42124628100024",
      "status": "P",
      "store_name": "Boulangerie Louvard",
      "street": "rue de Miromesnil",
      "street_number": 43,
      "turnover": 856203,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTBELIARD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990444,
      "email": null,
      "id": 20879,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 381985537",
      "postal_code": "25200",
      "siren": "484145347",
      "siret": "48414534700015",
      "status": "P",
      "store_name": "La Panetière",
      "street": "rue Maurice Ravel",
      "street_number": 5,
      "turnover": 190000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAGNANVILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990525,
      "email": null,
      "id": 2591,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-30332384",
      "postal_code": "78200",
      "siren": "530775030",
      "siret": "53077503000014",
      "status": "P",
      "store_name": "Sanwicherie Bread & Break",
      "street": "place des Droits de l Homme",
      "street_number": 2,
      "turnover": 80000,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATEAU THIERRY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990865,
      "email": null,
      "id": 20901,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MOREAU",
      "phone_number": "+33 323830229",
      "postal_code": "02400",
      "siren": "522418961",
      "siret": "52241896100010",
      "status": "M",
      "store_name": "Boulangerie Moreau",
      "street": "rue Carnot",
      "street_number": 47,
      "turnover": 250000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ILLE SUR TET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991135,
      "email": null,
      "id": 20909,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468806310",
      "postal_code": "66130",
      "siren": "509367264",
      "siret": "50936726400017",
      "status": "P",
      "store_name": "Boulangerie Le Pain Du Jour",
      "street": "avenue Pasteur",
      "street_number": 109,
      "turnover": 389400,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VAULX EN VELIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991192,
      "email": null,
      "id": 2614,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-72836801",
      "postal_code": "69120",
      "siren": "428138598",
      "siret": "42813859800027",
      "status": "EMPTY_STATUS",
      "store_name": "Croissanterie",
      "street": "rue Jacquard",
      "street_number": 2,
      "turnover": null,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LABENNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991262,
      "email": null,
      "id": 20915,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-59457930",
      "postal_code": "40530",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Bancel Boulangerie Patisserie",
      "street": "avenue General de Gaulle",
      "street_number": 49,
      "turnover": null,
      "user_id": 209,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THOUROTTE",
      "client_creation_date": "1-6-2012",
      "closing_days_ids": [],
      "datlinq_code": 991338,
      "email": null,
      "id": 20919,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "HDIDI MOHAMED",
      "phone_number": "03-44760147",
      "postal_code": "60150",
      "siren": "752355586",
      "siret": "75235558600013",
      "status": "P",
      "store_name": "Boulangerie la Huche",
      "street": "rue de la Republique",
      "street_number": 67,
      "turnover": 140000,
      "user_id": 311,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AGEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991402,
      "email": null,
      "id": 20925,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Chapelier",
      "phone_number": "05-53666882",
      "postal_code": "47000",
      "siren": "507711349",
      "siret": "50771134900013",
      "status": "M",
      "store_name": "De Bles En Bles",
      "street": "boulevard Edouard Lacour",
      "street_number": 47,
      "turnover": 950000,
      "user_id": 200,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BLAGNAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991605,
      "email": null,
      "id": 2626,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561167051",
      "postal_code": "31700",
      "siren": "750348179",
      "siret": "75034817900052",
      "status": "P",
      "store_name": "Pomme de Pain",
      "street": "Aeroport De Toulouse Blagnac",
      "street_number": 1,
      "turnover": 100,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WAMBRECHIES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991670,
      "email": null,
      "id": 32986,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005946252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320556405",
      "postal_code": "59118",
      "siren": "472501055",
      "siret": "47250105500058",
      "status": "EMPTY_STATUS",
      "store_name": "Lille Automatique Distribution",
      "street": "rue Marie Curie",
      "street_number": 60,
      "turnover": null,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MEDARD DE GUIZIERES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991838,
      "email": null,
      "id": 20955,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-57696157",
      "postal_code": "33230",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Patisserie Nouvelle",
      "street": "rue de la Republique",
      "street_number": 73,
      "turnover": null,
      "user_id": 203,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DIVION",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 992277,
      "email": null,
      "id": 20986,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010034537252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321627061",
      "postal_code": "62460",
      "siren": "522729094",
      "siret": "52272909400014",
      "status": "M",
      "store_name": "Boulangerie Le Fournil De La Biette",
      "street": "rue Louis Pasteur",
      "street_number": 4,
      "turnover": 260000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ORLY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 992519,
      "email": null,
      "id": 2648,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-49757828",
      "postal_code": "94310",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "Aeroport Orly Sud",
      "street_number": null,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLENEUVE ST GEORGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 993112,
      "email": null,
      "id": 21031,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43869619",
      "postal_code": "94190",
      "siren": "791112915",
      "siret": "0",
      "status": "P",
      "store_name": "Boulangerie Espace Gourmand",
      "street": "rue Thimonnier",
      "street_number": 2,
      "turnover": 240000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BELLEGARDE SUR VALSERINE",
      "client_creation_date": "1991-03-11",
      "closing_days_ids": [],
      "datlinq_code": 993976,
      "email": "s.cop@neuf.fr",
      "id": 32992,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013661252110",
      "location_areas_ids": [],
      "owner_name": "COP",
      "phone_number": "+33 450566227",
      "postal_code": "01200",
      "siren": "381269448",
      "siret": "38126944800027",
      "status": "P",
      "store_name": "Boulangerie le Jardin des Delices",
      "street": "rue Joseph Marion",
      "street_number": 2,
      "turnover": 160000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAVENT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 994033,
      "email": null,
      "id": 21044,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231780008",
      "postal_code": "14860",
      "siren": "523464642",
      "siret": "52346464200017",
      "status": "P",
      "store_name": "Boulangerie Plaisirs Normands",
      "street": "rue du Lavoir",
      "street_number": 16,
      "turnover": 200000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ISTRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 994082,
      "email": null,
      "id": 21049,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-42550585",
      "postal_code": "13800",
      "siren": "524022241",
      "siret": "52402224100011",
      "status": "P",
      "store_name": "Boulangerie Blé et Seigle",
      "street": "avenue Helene Boucher",
      "street_number": 10,
      "turnover": 10000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DECINES CHARPIEU",
      "client_creation_date": "2010-07-08",
      "closing_days_ids": [],
      "datlinq_code": 994132,
      "email": null,
      "id": 324,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "JL120001",
      "location_areas_ids": [],
      "owner_name": "NORMAND",
      "phone_number": "04-78491226",
      "postal_code": "69150",
      "siren": "523391365",
      "siret": "52339136500013",
      "status": "G",
      "store_name": "Boulangerie la Mie de la Flute",
      "street": "rue de la Republique",
      "street_number": 131,
      "turnover": 367810,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PERREUX SUR MARNE",
      "client_creation_date": "2010",
      "closing_days_ids": [],
      "datlinq_code": 994188,
      "email": null,
      "id": 21057,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0786G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43242022",
      "postal_code": "94170",
      "siren": "523415305",
      "siret": null,
      "status": "M",
      "store_name": "Boulangerie Sonia et Fabrice",
      "street": "avenue du 8 Mai 1945",
      "street_number": 157,
      "turnover": 200000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NOVES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 994457,
      "email": null,
      "id": 21068,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-90950552",
      "postal_code": "13550",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie des Palus de Names",
      "street": "avenue Francois Marcel Roudier",
      "street_number": 50,
      "turnover": 20000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURCOING",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 994871,
      "email": null,
      "id": 21081,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 960509773",
      "postal_code": "59200",
      "siren": "523515641",
      "siret": "52351564100018",
      "status": "P",
      "store_name": "Lenoir",
      "street": "rue de Lille",
      "street_number": 16,
      "turnover": 250000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "USTARITZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 994955,
      "email": null,
      "id": 47680,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1823G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-59703112",
      "postal_code": "64480",
      "siren": "833180938",
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Pizza Gourmande",
      "street": "Chemin Rural",
      "street_number": 11,
      "turnover": null,
      "user_id": 209,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "EYZIN PINET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 995437,
      "email": null,
      "id": 21090,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BERTHIER et EXCOFFIER",
      "phone_number": "04-74580863",
      "postal_code": "38780",
      "siren": "504798562",
      "siret": "50479856200014",
      "status": "M",
      "store_name": "Boulangerie la Corbeille à Pain",
      "street": "place du Village",
      "street_number": 10,
      "turnover": 164890,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST DIDIER DE LA TOUR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 995626,
      "email": null,
      "id": 21126,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "JEAN MARC PERRIN",
      "phone_number": "04-74974837",
      "postal_code": "38110",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie les Gourmands Disent",
      "street": "route de Chambery",
      "street_number": 2,
      "turnover": 100000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALLAURIS",
      "client_creation_date": "2007-09-01",
      "closing_days_ids": [],
      "datlinq_code": 995631,
      "email": "lefournildesanges@orange.fr",
      "id": 326,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "M2733001",
      "location_areas_ids": [],
      "owner_name": "TRIPODI Louis",
      "phone_number": "04-93634498",
      "postal_code": "06220",
      "siren": "500016332",
      "siret": "50001633200016",
      "status": "M",
      "store_name": "Boulangerie le Fournil des Anges",
      "street": "avenue de la Liberte",
      "street_number": 92,
      "turnover": 362000,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATTE",
      "client_creation_date": "2010",
      "closing_days_ids": [],
      "datlinq_code": 996007,
      "email": null,
      "id": 21163,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1621F001",
      "location_areas_ids": [],
      "owner_name": "PORNIN",
      "phone_number": "04-76381895",
      "postal_code": "38160",
      "siren": "520068669",
      "siret": "52006866900016",
      "status": "M",
      "store_name": "Boulangerie le Pain d'Ange",
      "street": "place de la Republique",
      "street_number": 18,
      "turnover": 163120,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DUNKERQUE",
      "client_creation_date": "2010-01-01",
      "closing_days_ids": [],
      "datlinq_code": 997333,
      "email": "loicsue@hotmail.fr",
      "id": 21221,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007067252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 361388804",
      "postal_code": "59140",
      "siren": "753339001",
      "siret": "75333900100012",
      "status": "M",
      "store_name": "Boulangerie le Campagnard",
      "street": "rue Alfred Dumont",
      "street_number": 30,
      "turnover": 150000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 998435,
      "email": null,
      "id": 41573,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-22095855",
      "postal_code": "06000",
      "siren": "513684431",
      "siret": "51368443100010",
      "status": "P",
      "store_name": "Sandwicherie la Casa della Piadina",
      "street": "rue Gioffredo",
      "street_number": 52,
      "turnover": 2000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LESSAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 998926,
      "email": null,
      "id": 21266,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233464095",
      "postal_code": "50430",
      "siren": "524173549",
      "siret": "52417354900014",
      "status": "P",
      "store_name": "Boulangerie Jacquette",
      "street": "rue de la Sainte Croix",
      "street_number": 19,
      "turnover": 230000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUZELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 999422,
      "email": null,
      "id": 21285,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "00-000",
      "postal_code": "31700",
      "siren": "440166726",
      "siret": "44016672600024",
      "status": "P",
      "store_name": "Le Fournil de l'Aeroport",
      "street": "rue des Pins",
      "street_number": 79,
      "turnover": 240000,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STE SAVINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1000437,
      "email": null,
      "id": 21287,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Marie Jeanne Bellanger",
      "phone_number": "+33 325792473",
      "postal_code": "10300",
      "siren": "501574982",
      "siret": "50157498200010",
      "status": "P",
      "store_name": "Boulangerie Marie Jeanne",
      "street": "avenue du General Leclerc",
      "street_number": 70,
      "turnover": 90000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1000809,
      "email": null,
      "id": 21290,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243379085",
      "postal_code": "53160",
      "siren": "524477635",
      "siret": "52447763500014",
      "status": "P",
      "store_name": "Boulangerie Rouland",
      "street": "rue de la Poste",
      "street_number": 3,
      "turnover": 300000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "2014-04-01",
      "closing_days_ids": [],
      "datlinq_code": 1002099,
      "email": null,
      "id": 332,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0631D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93357094",
      "postal_code": "06200",
      "siren": "481305944",
      "siret": "48130594400037",
      "status": "G",
      "store_name": "Les Delices de la Pignata",
      "street": "avenue de Fabron",
      "street_number": 242,
      "turnover": 830000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOBIGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1002305,
      "email": null,
      "id": 41578,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "93000",
      "siren": "512817917",
      "siret": "51281791700010",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie B' Nina",
      "street": "avenue Edouard Vaillant",
      "street_number": 30,
      "turnover": null,
      "user_id": 74,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DURY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1003532,
      "email": null,
      "id": 33014,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011470252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321552753",
      "postal_code": "62156",
      "siren": "514497882",
      "siret": "51449788200019",
      "status": "P",
      "store_name": "L Hippocampe",
      "street": "rue du Calvaire",
      "street_number": 3,
      "turnover": 100000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE VALTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1003612,
      "email": null,
      "id": 21338,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "88230",
      "siren": "524427788",
      "siret": "52442778800012",
      "status": "P",
      "store_name": "Boulangerie Maison Gollette",
      "street": "le Village",
      "street_number": 23,
      "turnover": 120000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRENADE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1003681,
      "email": null,
      "id": 21346,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "THOA JEAN FRANCOIS",
      "phone_number": "000-000",
      "postal_code": "31330",
      "siren": "524478112",
      "siret": "52447811200021",
      "status": "P",
      "store_name": "Chocolatine et compagnie",
      "street": "rue de la Republique",
      "street_number": 17,
      "turnover": 127300,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1004222,
      "email": null,
      "id": 2741,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45423763",
      "postal_code": "75014",
      "siren": "388767105",
      "siret": "38876710500017",
      "status": "EMPTY_STATUS",
      "store_name": "Capricia",
      "street": "rue Didot",
      "street_number": 75,
      "turnover": null,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "YERRES",
      "client_creation_date": "2-9-2010",
      "closing_days_ids": [],
      "datlinq_code": 1004484,
      "email": null,
      "id": 21394,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "Z0535001",
      "location_areas_ids": [],
      "owner_name": "BERTAL",
      "phone_number": "01-69488752",
      "postal_code": "91330",
      "siren": "524643947",
      "siret": "52464394700012",
      "status": "M",
      "store_name": "Boulangerie Aux Gourmandises D Enola",
      "street": "rue Pierre Brossolette",
      "street_number": 67,
      "turnover": 283400,
      "user_id": 84,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HALLUIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1004547,
      "email": null,
      "id": 2743,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 682234149",
      "postal_code": "59250",
      "siren": "513529735",
      "siret": "51352973500013",
      "status": "P",
      "store_name": "Viennoiserie de l Europe",
      "street": "rue de Lille",
      "street_number": 19,
      "turnover": 124800,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HALLUIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1004548,
      "email": null,
      "id": 2744,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 699352104",
      "postal_code": "59250",
      "siren": "519347215",
      "siret": "51934721500013",
      "status": "P",
      "store_name": "Viennoiserie du Centre",
      "street": "rue Marthe Nollet",
      "street_number": 18,
      "turnover": 45700,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VOISINS LE BRETONNEUX",
      "client_creation_date": "13-12-2006",
      "closing_days_ids": [],
      "datlinq_code": 1004617,
      "email": null,
      "id": 21404,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ROIDOR",
      "phone_number": "01-39442815",
      "postal_code": "78960",
      "siren": "493138523",
      "siret": "49313852300011",
      "status": "M",
      "store_name": "Boulangerie Atelier Roidor",
      "street": "rue Alfred de Vigny",
      "street_number": 5,
      "turnover": 450000,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURNEHEM SUR LA HEM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1004639,
      "email": null,
      "id": 21407,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011542252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321356077",
      "postal_code": "62890",
      "siren": "491024915",
      "siret": "49102491500028",
      "status": "P",
      "store_name": "Boulangerie le Fournil des Sarrazins",
      "street": "rue du General de Gaulle",
      "street_number": 57,
      "turnover": 145000,
      "user_id": 422,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ENVERMEU",
      "client_creation_date": "2010-03-29",
      "closing_days_ids": [],
      "datlinq_code": 1004660,
      "email": null,
      "id": 21409,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235857292",
      "postal_code": "76630",
      "siren": "384771135",
      "siret": "38477113500058",
      "status": "P",
      "store_name": "Boulangerie Vallery",
      "street": "rue des Canadiens",
      "street_number": 1,
      "turnover": 250000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURBEVOIE",
      "client_creation_date": "1 juillet 2010",
      "closing_days_ids": [],
      "datlinq_code": 1004781,
      "email": null,
      "id": 2751,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47683065",
      "postal_code": "92400",
      "siren": "523495349",
      "siret": "52349534900012",
      "status": "P",
      "store_name": "Sandwicherie la Gourmandise",
      "street": "avenue Gambetta",
      "street_number": 65,
      "turnover": 100000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DOUARNENEZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1004873,
      "email": null,
      "id": 2752,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-98929496",
      "postal_code": "29100",
      "siren": "438068777",
      "siret": "43806877700012",
      "status": "EMPTY_STATUS",
      "store_name": "La Pidz",
      "street": "rue Duguay Trouin",
      "street_number": 5,
      "turnover": null,
      "user_id": 149,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": "2005",
      "closing_days_ids": [],
      "datlinq_code": 1005068,
      "email": null,
      "id": 21438,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91523102",
      "postal_code": "13007",
      "siren": "520136870",
      "siret": "52013687000018",
      "status": "P",
      "store_name": "Boulangerie la Mascotte",
      "street": "rue d Endoume",
      "street_number": 250,
      "turnover": 200000,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PRAZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1005155,
      "email": null,
      "id": 21439,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79085821",
      "postal_code": "73120",
      "siren": "349332429",
      "siret": "34933242900050",
      "status": "EMPTY_STATUS",
      "store_name": "Au Pain d Antan",
      "street": "Immeuble Or Blanc",
      "street_number": null,
      "turnover": null,
      "user_id": 61,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DONZERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1005494,
      "email": null,
      "id": 21454,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0543B001",
      "location_areas_ids": [],
      "owner_name": "SARRAZIN",
      "phone_number": "04-75539452",
      "postal_code": "26290",
      "siren": "540045481",
      "siret": "54004548100012",
      "status": "G",
      "store_name": "Boulangerie Madelice",
      "street": "centre commercial Plein Sud",
      "street_number": null,
      "turnover": 400000,
      "user_id": 170,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST PIERRE MONTLIMART",
      "client_creation_date": "2010-09-01",
      "closing_days_ids": [],
      "datlinq_code": 1005624,
      "email": null,
      "id": 21460,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "TOUBLANC",
      "phone_number": "+33 241635744",
      "postal_code": "49110",
      "siren": "524994258",
      "siret": "52499425800019",
      "status": "G",
      "store_name": "Boulangerie Coquelicot",
      "street": "avenue du Bordage",
      "street_number": 1,
      "turnover": 458000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TRELAZE",
      "client_creation_date": "2010-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1005628,
      "email": null,
      "id": 21461,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010009971252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241340095",
      "postal_code": "49800",
      "siren": "525066734",
      "siret": "52506673400019",
      "status": "G",
      "store_name": "Boulangerie le Fournil des Allumettes",
      "street": "rue Jean Jaures",
      "street_number": 206,
      "turnover": 290000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1005982,
      "email": null,
      "id": 21475,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "LEGAY CHOC",
      "phone_number": "01-48876812",
      "postal_code": "75004",
      "siren": "439064445",
      "siret": "43906444500034",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Victor 1920",
      "street": "rue Rambuteau",
      "street_number": 33,
      "turnover": 1525793,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HORBOURG WIHR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1006435,
      "email": null,
      "id": 21493,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "70072001",
      "location_areas_ids": [],
      "owner_name": "SESSA",
      "phone_number": "03-89247042",
      "postal_code": "68180",
      "siren": "514078906",
      "siret": "51407890600021",
      "status": "M",
      "store_name": "Boulangerie d'Holtzbachoffa",
      "street": "Grand Rue",
      "street_number": 73,
      "turnover": 350000,
      "user_id": 111,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TRELAZE",
      "client_creation_date": "2010-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1006652,
      "email": null,
      "id": 21502,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005218252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241605415",
      "postal_code": "49800",
      "siren": "525231544",
      "siret": "52523154400012",
      "status": "G",
      "store_name": "Boulangerie Le Fournil Du Buisson",
      "street": "boulevard Dautel",
      "street_number": 26,
      "turnover": 533000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTROUGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1006676,
      "email": null,
      "id": 21504,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42531724",
      "postal_code": "92120",
      "siren": "527590632",
      "siret": "52759063200016",
      "status": "P",
      "store_name": "Boulangerie au Peche Mignon",
      "street": "avenue de la Republique",
      "street_number": 112,
      "turnover": 230000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1007467,
      "email": null,
      "id": 2780,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "CN024001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78420033",
      "postal_code": "69002",
      "siren": "325049377",
      "siret": "32504937700022",
      "status": "G",
      "store_name": "Les 3 Brioches",
      "street": "rue de la Republique",
      "street_number": 69,
      "turnover": 1361000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LES CLAYES SOUS BOIS",
      "client_creation_date": "8-10-2010",
      "closing_days_ids": [],
      "datlinq_code": 1008124,
      "email": null,
      "id": 21561,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0904A001",
      "location_areas_ids": [],
      "owner_name": "DUREL",
      "phone_number": "000-000",
      "postal_code": "78340",
      "siren": "414258772",
      "siret": "41425877200022",
      "status": "M",
      "store_name": "Boulangerie Durel",
      "street": "avenue Maurice Jouet",
      "street_number": 50,
      "turnover": 400000,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COMBS LA VILLE",
      "client_creation_date": "01/10/2010",
      "closing_days_ids": [],
      "datlinq_code": 1008259,
      "email": null,
      "id": 21572,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "COSSON",
      "phone_number": "01-60607110",
      "postal_code": "77380",
      "siren": "527863831",
      "siret": "52786383100014",
      "status": "P",
      "store_name": "Boulangerie la Fournee d'Antan",
      "street": "avenue de la Republique",
      "street_number": 40,
      "turnover": 210000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRATENTOUR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008286,
      "email": null,
      "id": 21576,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ROUJAS JEAN JACQUES",
      "phone_number": "+33 534277820",
      "postal_code": "31150",
      "siren": "527877229",
      "siret": "52787722900015",
      "status": "P",
      "store_name": "Boulangerie Ludojac",
      "street": "rue Leo Ferre",
      "street_number": 6,
      "turnover": 233991,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTERRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008505,
      "email": null,
      "id": 21589,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47212381",
      "postal_code": "92000",
      "siren": "410389795",
      "siret": "41038979500031",
      "status": "G",
      "store_name": "Maître Pain",
      "street": "rue Maurice Thorez",
      "street_number": 85,
      "turnover": 1000006,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE VESINET",
      "client_creation_date": "1-1-2010",
      "closing_days_ids": [],
      "datlinq_code": 1008512,
      "email": null,
      "id": 21596,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SALAGNAC",
      "phone_number": "01-39763128",
      "postal_code": "78110",
      "siren": "483583282",
      "siret": "48358328200023",
      "status": "M",
      "store_name": "Boulangerie Au Gourmet du Vézinet",
      "street": "place de l Eglise",
      "street_number": 14,
      "turnover": 1100000,
      "user_id": 96,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SCHILTIGHEIM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008541,
      "email": null,
      "id": 21621,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-88331995",
      "postal_code": "67300",
      "siren": "520156464",
      "siret": "52015646400015",
      "status": "P",
      "store_name": "Boulangerie Pâtisserie Michael",
      "street": "rue de Vendenheim",
      "street_number": 20,
      "turnover": 180000,
      "user_id": 112,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CAST LE GUILDO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008661,
      "email": null,
      "id": 21717,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BOULIN JULIEN",
      "phone_number": "02-96416189",
      "postal_code": "22380",
      "siren": "522589290",
      "siret": "52258929000025",
      "status": "P",
      "store_name": "Boulangerie De La Rotonde",
      "street": "rue du Guesclin",
      "street_number": 2,
      "turnover": 160000,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MERVILLE",
      "client_creation_date": "2005-04-19",
      "closing_days_ids": [],
      "datlinq_code": 1008716,
      "email": null,
      "id": 21765,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016745252110",
      "location_areas_ids": [],
      "owner_name": "CEROUTER",
      "phone_number": "+33 328483053",
      "postal_code": "59660",
      "siren": "481840304",
      "siret": "48184030400010",
      "status": "G",
      "store_name": "Au Fournil des 2 Ponts",
      "street": "rue du General de Gaulle",
      "street_number": 58,
      "turnover": 474000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST RAPHAEL",
      "client_creation_date": "2008-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1008722,
      "email": null,
      "id": 21771,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010030489252110",
      "location_areas_ids": [],
      "owner_name": "DENIS MOTTET",
      "phone_number": "+33 494192466",
      "postal_code": "83700",
      "siren": "340153964",
      "siret": "34015396400069",
      "status": "M",
      "store_name": "Fournil Monsieur Denis Mottet",
      "street": "rue Charles Goujon",
      "street_number": 126,
      "turnover": 520000,
      "user_id": 451,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURVILLE LA RIVIERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008739,
      "email": null,
      "id": 21784,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235775865",
      "postal_code": "76410",
      "siren": "502832066",
      "siret": "50283206600018",
      "status": "M",
      "store_name": "Boulangerie Froissard",
      "street": "rue Jean Jaures",
      "street_number": 15,
      "turnover": 280843,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRANDCAMP MAISY",
      "client_creation_date": "2010-10-01",
      "closing_days_ids": [],
      "datlinq_code": 1008742,
      "email": "yannickcika@hotmail.com",
      "id": 21787,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012295252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231226322",
      "postal_code": "14450",
      "siren": "443084025",
      "siret": "44308402500024",
      "status": "G",
      "store_name": "Boulangerie Aux Petits Délices",
      "street": "rue Aristide Briand",
      "street_number": 64,
      "turnover": 400000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEDOUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008829,
      "email": null,
      "id": 21827,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXE40001",
      "location_areas_ids": [],
      "owner_name": "Herve",
      "phone_number": "05-46685090",
      "postal_code": "17230",
      "siren": "528074180",
      "siret": "52807418000019",
      "status": "M",
      "store_name": "Boulangerie Fournil De Villedoux",
      "street": "rue de la Liberte",
      "street_number": 22,
      "turnover": 240000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTREUX CHATEAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008849,
      "email": null,
      "id": 21830,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 384462014",
      "postal_code": "90130",
      "siren": "528145980",
      "siret": "52814598000017",
      "status": "P",
      "store_name": "La Fontaine Aux Delices",
      "street": "rue du General Charles de Gaulle",
      "street_number": 14,
      "turnover": 180000,
      "user_id": 411,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SANTA MARIA DI LOTA",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008950,
      "email": null,
      "id": 21843,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "VENTURA",
      "phone_number": "04-95323481",
      "postal_code": "20200",
      "siren": "520884354",
      "siret": "52088435400017",
      "status": "M",
      "store_name": "Boulangerie Patisserie Ventura",
      "street": "route du Cap",
      "street_number": 55,
      "turnover": 1048000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRANGES SUR VOLOGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009164,
      "email": null,
      "id": 33035,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "3118E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-29511313",
      "postal_code": "88640",
      "siren": "528227606",
      "siret": "52822760600019",
      "status": "P",
      "store_name": "La Petite Myrtille",
      "street": "quai de Vologne",
      "street_number": 5,
      "turnover": 180000,
      "user_id": 109,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "2010-10-01",
      "closing_days_ids": [],
      "datlinq_code": 1009183,
      "email": null,
      "id": 21911,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "06300",
      "siren": "528061617",
      "siret": "52806161700015",
      "status": "P",
      "store_name": "Le Fournil de Saint Roch",
      "street": "boulevard Pierre Semard",
      "street_number": 5,
      "turnover": 150423,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GEREON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009240,
      "email": null,
      "id": 21915,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "44150",
      "siren": "527984876",
      "siret": "52798487600013",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie MB Ancenis",
      "street": "boulevard de la Prairie",
      "street_number": 831,
      "turnover": null,
      "user_id": 138,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MALO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009292,
      "email": null,
      "id": 21943,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "30176001",
      "location_areas_ids": [],
      "owner_name": "Deborde",
      "phone_number": "02-99819678",
      "postal_code": "35400",
      "siren": "491165551",
      "siret": "49116555100012",
      "status": "M",
      "store_name": "Boulangerie Deborde Philippe",
      "street": "rue Ville Pepin",
      "street_number": 82,
      "turnover": 170000,
      "user_id": 148,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAREUIL LE PORT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009294,
      "email": null,
      "id": 21945,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010006849252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326583196",
      "postal_code": "51700",
      "siren": "511364630",
      "siret": "51136463000026",
      "status": "P",
      "store_name": "Boulangerie aux Delices",
      "street": "avenue Paul Doumer",
      "street_number": 50,
      "turnover": 195000,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CORBEIL ESSONNES",
      "client_creation_date": "1-1-2000",
      "closing_days_ids": [],
      "datlinq_code": 1009320,
      "email": null,
      "id": 21968,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "U0953001",
      "location_areas_ids": [],
      "owner_name": "Samir Bensalem",
      "phone_number": "01-60892840",
      "postal_code": "91100",
      "siren": "429439847",
      "siret": "42943984700014",
      "status": "M",
      "store_name": "Boulangerie Val de l'Essonne",
      "street": "rue de Paris",
      "street_number": 31,
      "turnover": 292000,
      "user_id": 86,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE CREUSOT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009338,
      "email": null,
      "id": 21982,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "HAUF",
      "phone_number": "+33 385787911",
      "postal_code": "71200",
      "siren": "492304456",
      "siret": "49230445600014",
      "status": "P",
      "store_name": "Boulangerie Hauf",
      "street": "rue Marceau",
      "street_number": 58,
      "turnover": 150000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARQUETTE-LEZ-LILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009388,
      "email": null,
      "id": 22029,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010028815252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320407075",
      "postal_code": "59520",
      "siren": "494112592",
      "siret": "49411259200014",
      "status": "M",
      "store_name": "Boulangerie Patisserie Monsieur Cyril Lenne",
      "street": "Rue d'Ypres",
      "street_number": 139,
      "turnover": 320000,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTIGNY LES METZ",
      "client_creation_date": "2009-10-01",
      "closing_days_ids": [],
      "datlinq_code": 1009468,
      "email": null,
      "id": 37380,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005788252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387637518",
      "postal_code": "57950",
      "siren": "823588116",
      "siret": "82358811600017",
      "status": "P",
      "store_name": "Boulangerie Marie-Blanche",
      "street": "rue du General Franiatte",
      "street_number": 54,
      "turnover": 90000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOUHY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009491,
      "email": null,
      "id": 22107,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386264927",
      "postal_code": "58310",
      "siren": "501562128",
      "siret": "50156212800014",
      "status": "P",
      "store_name": "Boulangerie Syniec",
      "street": "le Bourg",
      "street_number": null,
      "turnover": 170000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALENCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009509,
      "email": null,
      "id": 22122,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 563292402",
      "postal_code": "82400",
      "siren": "508441060",
      "siret": "50844106000011",
      "status": "M",
      "store_name": "Boulangerie Este",
      "street": "boulevard Victor Guilhem",
      "street_number": 28,
      "turnover": 270000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GERMAIN DU CORBEIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1010259,
      "email": "auxdouceurscorbenoises@hotmail.fr",
      "id": 22223,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "CHASTELLIER",
      "phone_number": "+33 233265235",
      "postal_code": "61000",
      "siren": "531374940",
      "siret": "53137494000017",
      "status": "P",
      "store_name": "Boulangerie Chastellier",
      "street": "place de l Eglise",
      "street_number": 5,
      "turnover": 140000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIVIER AU COURT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1011483,
      "email": null,
      "id": 22258,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010030791252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 324361968",
      "postal_code": "08440",
      "siren": "522291822",
      "siret": "52229182200016",
      "status": "P",
      "store_name": "Boulangerie Zanelli Vincent",
      "street": "rue Jean Rogissart",
      "street_number": 1,
      "turnover": 220000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE MEE SUR SEINE",
      "client_creation_date": "1-2-2010",
      "closing_days_ids": [],
      "datlinq_code": 1011870,
      "email": null,
      "id": 22264,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SAMAD",
      "phone_number": "09-54736395",
      "postal_code": "77350",
      "siren": "520372780",
      "siret": "52037278000012",
      "status": "G",
      "store_name": "Boulangerie Sarah",
      "street": "avenue de Corbeil",
      "street_number": null,
      "turnover": 542000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA ROCHELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1012039,
      "email": null,
      "id": 22271,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "LI314001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46412695",
      "postal_code": "17000",
      "siren": "501614770",
      "siret": "50161477000029",
      "status": "P",
      "store_name": "Patisserie d' Jolly",
      "street": "rue Chaudrier",
      "street_number": 16,
      "turnover": 420000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANGOULEME",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1012072,
      "email": null,
      "id": 22273,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-45950509",
      "postal_code": "16000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La biscuiterie Lolmede",
      "street": "rue des Arceaux",
      "street_number": 3,
      "turnover": null,
      "user_id": 155,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANCY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1012795,
      "email": null,
      "id": 22303,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83339687",
      "postal_code": "54000",
      "siren": "528822562",
      "siret": "52882256200013",
      "status": "EMPTY_STATUS",
      "store_name": "Les Delices d Astride",
      "street": "avenue du 20eme Corps",
      "street_number": 3,
      "turnover": null,
      "user_id": 106,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHALON SUR SAONE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1015782,
      "email": null,
      "id": 22321,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010031426252110",
      "location_areas_ids": [],
      "owner_name": "Ines",
      "phone_number": "+33 385931663",
      "postal_code": "71100",
      "siren": "531294627",
      "siret": "53129462700017",
      "status": "G",
      "store_name": "Boulangerie Si Felipe",
      "street": "avenue Pierre Nugues",
      "street_number": 15,
      "turnover": 400000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST AVERTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1015844,
      "email": null,
      "id": 2823,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-47750357",
      "postal_code": "37550",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Le Fournil de pierre",
      "street": "avenue du Lac",
      "street_number": 16,
      "turnover": 600000,
      "user_id": 142,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SARZEAU",
      "client_creation_date": "2010-12-09",
      "closing_days_ids": [],
      "datlinq_code": 1017677,
      "email": "sirocodu56@hotmail.fr",
      "id": 22358,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31589001",
      "location_areas_ids": [],
      "owner_name": "BROHAN",
      "phone_number": "02-97417190",
      "postal_code": "56370",
      "siren": "528900046",
      "siret": "52890004600012",
      "status": "G",
      "store_name": "Boulangerie Au Plaisir Gourmand",
      "street": "rue du General de Gaulle",
      "street_number": 20,
      "turnover": 948938,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ETRICOURT MANANCOURT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1017846,
      "email": null,
      "id": 37383,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "Y1168001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-22830045",
      "postal_code": "80360",
      "siren": "499736155",
      "siret": "49973615500015",
      "status": "P",
      "store_name": "Chez Domi",
      "street": "Grande Rue",
      "street_number": 15,
      "turnover": 100000,
      "user_id": 119,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CASTELNAUDARY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1018043,
      "email": null,
      "id": 47690,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468605663",
      "postal_code": "11400",
      "siren": "529040560",
      "siret": "52904056000011",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Pains et Passions (Bassin)",
      "street": "avenue Francois Mitterrand",
      "street_number": 29,
      "turnover": null,
      "user_id": 440,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VANNES",
      "client_creation_date": "2010-12-28",
      "closing_days_ids": [],
      "datlinq_code": 1018126,
      "email": null,
      "id": 22386,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31559001",
      "location_areas_ids": [],
      "owner_name": "MORIO",
      "phone_number": "02-97407296",
      "postal_code": "56000",
      "siren": "529111163",
      "siret": "52911116300018",
      "status": "G",
      "store_name": "Boulangerie Morio",
      "street": "rue Henri Dunant",
      "street_number": 13,
      "turnover": 550000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STAINS",
      "client_creation_date": "1-3-2012",
      "closing_days_ids": [],
      "datlinq_code": 1018233,
      "email": null,
      "id": 2831,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0261G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48225442",
      "postal_code": "93240",
      "siren": "750497232",
      "siret": "75049723200017",
      "status": "P",
      "store_name": "Sandwicherie le Bon Pain de Stains",
      "street": "rue Roger Salengro",
      "street_number": 64,
      "turnover": 74000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRASSE",
      "client_creation_date": "2009-06-09",
      "closing_days_ids": [],
      "datlinq_code": 1019108,
      "email": null,
      "id": 22426,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SILVA PAULO",
      "phone_number": "04-93601991",
      "postal_code": "06130",
      "siren": "512956319",
      "siret": "51295631900010",
      "status": "G",
      "store_name": "Boulangerie Au Pain De Baptiste",
      "street": "route de Mouans Sartoux",
      "street_number": 3,
      "turnover": 1000000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEZIERS",
      "client_creation_date": "2011-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1019282,
      "email": null,
      "id": 22437,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010029772252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467764040",
      "postal_code": "34500",
      "siren": "490695855",
      "siret": "49069585500026",
      "status": "M",
      "store_name": "Boulangerie La Marquise",
      "street": "boulevard de la Liberte",
      "street_number": 46,
      "turnover": 245000,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1020246,
      "email": null,
      "id": 33045,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1250B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45557975",
      "postal_code": "75007",
      "siren": "519167878",
      "siret": "51916787800015",
      "status": "P",
      "store_name": "Couleurs de Ferme",
      "street": "avenue de la Motte Picquet",
      "street_number": 33,
      "turnover": 0,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTERRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1020279,
      "email": null,
      "id": 2849,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1785D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42044498",
      "postal_code": "92000",
      "siren": "524525920",
      "siret": "52452592000020",
      "status": "P",
      "store_name": "Le Fournil Clemenceau",
      "street": "avenue Georges Clemenceau",
      "street_number": 346,
      "turnover": 100000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LUNEL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1020416,
      "email": null,
      "id": 2854,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 499645686",
      "postal_code": "34400",
      "siren": "513372953",
      "siret": "51337295300010",
      "status": "P",
      "store_name": "Sandwicherie le Fournil de Lunel",
      "street": "avenue du Marechal de Lattre de Tassigny",
      "street_number": 399,
      "turnover": 10000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": "25 Décembre 2010",
      "closing_days_ids": [],
      "datlinq_code": 1020512,
      "email": "philippe.ferrer@dbmail.com",
      "id": 22521,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "RLN69001",
      "location_areas_ids": [],
      "owner_name": "FERRER",
      "phone_number": "04-91893181",
      "postal_code": "13012",
      "siren": "518564992",
      "siret": "51856499200015",
      "status": "G",
      "store_name": "Boulangerie L'Atelier D'Audrey",
      "street": "avenue du 24 Avril 1915",
      "street_number": 3,
      "turnover": 622500,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CALVI",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1020549,
      "email": "sarlcalviboul@gmail.com",
      "id": 33047,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1618D001",
      "location_areas_ids": [],
      "owner_name": "Garsi",
      "phone_number": "0631802376",
      "postal_code": "20260",
      "siren": "530293521",
      "siret": "53029352100015",
      "status": "G",
      "store_name": "Boulangerie Garsi",
      "street": "avenue Santa Maria",
      "street_number": 5,
      "turnover": 703900,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHARTRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1020711,
      "email": null,
      "id": 37018,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 237229820",
      "postal_code": "28000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Subway",
      "street": "place des Epars",
      "street_number": 6,
      "turnover": null,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA ROCHELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1020928,
      "email": null,
      "id": 37384,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "20198001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46412671",
      "postal_code": "17000",
      "siren": "498676766",
      "siret": "49867676600013",
      "status": "P",
      "store_name": "Restaurant Basilic'O",
      "street": "rue du Palais",
      "street_number": 41,
      "turnover": 20000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1021642,
      "email": null,
      "id": 41587,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78027171",
      "postal_code": "69007",
      "siren": "525062139",
      "siret": "52506213900015",
      "status": "EMPTY_STATUS",
      "store_name": "Class'croute",
      "street": "avenue Debourg",
      "street_number": 35,
      "turnover": null,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROISSY EN FRANCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1021654,
      "email": null,
      "id": 34234,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47234837",
      "postal_code": "95700",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie Bert's",
      "street": "aeroport Charles de Gaulle - Terminal 2F",
      "street_number": null,
      "turnover": null,
      "user_id": 79,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLAMART",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1021947,
      "email": null,
      "id": 22578,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "Z0795001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-46327085",
      "postal_code": "92140",
      "siren": "530494657",
      "siret": "53049465700014",
      "status": "P",
      "store_name": "Boulangerie la Clamartoise Mr Aligue ",
      "street": "route du Pave Blanc",
      "street_number": 71,
      "turnover": 320000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1022284,
      "email": null,
      "id": 2881,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 562478267",
      "postal_code": "31500",
      "siren": "702045519",
      "siret": "70204551900056",
      "status": "EMPTY_STATUS",
      "store_name": "Le Fournil de Pierre",
      "street": "chemin de la Terrasse",
      "street_number": 2,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FRONTON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1022424,
      "email": null,
      "id": 22621,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005185252110",
      "location_areas_ids": [],
      "owner_name": "PESCAY PHILIPPE",
      "phone_number": "+33 561355289",
      "postal_code": "31620",
      "siren": "519120174",
      "siret": "51912017400015",
      "status": "G",
      "store_name": "Boulangerie Pescay Philippe",
      "street": "avenue de Toulouse",
      "street_number": 115,
      "turnover": 821400,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAMPTOCE SUR LOIRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1022563,
      "email": null,
      "id": 22631,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241399233",
      "postal_code": "49123",
      "siren": "530353481",
      "siret": "53035348100019",
      "status": "P",
      "store_name": "Boulangerie Leroi Et Associés",
      "street": "rue Gilles de Rais",
      "street_number": 9,
      "turnover": 279000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NEUVILLE DE POITOU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1023006,
      "email": null,
      "id": 22646,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "23192001",
      "location_areas_ids": [],
      "owner_name": "JACQUET",
      "phone_number": "05-49512009",
      "postal_code": "86170",
      "siren": "528672520",
      "siret": "52867252000012",
      "status": "M",
      "store_name": "La Briole",
      "street": "rue du Sergent Bangoura Moride",
      "street_number": 10,
      "turnover": 220000,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "L ILE ROUSSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1025993,
      "email": "info@hotel-cotesud.com",
      "id": 33055,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "RLQ41001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-95630170",
      "postal_code": "20220",
      "siren": "452025265",
      "siret": "45202526500011",
      "status": "M",
      "store_name": "Hotel l'Escale Cote Sud",
      "street": "rue Notre Dame",
      "street_number": 22,
      "turnover": 450600,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CLAUD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1027710,
      "email": null,
      "id": 22709,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-45713247",
      "postal_code": "16450",
      "siren": "511029969",
      "siret": "51102996900017",
      "status": "P",
      "store_name": "Boulangerie au Fin Palais St Claudais",
      "street": "place Sadi Carnot",
      "street_number": null,
      "turnover": 187000,
      "user_id": 155,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RANDAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1027956,
      "email": null,
      "id": 22719,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "TUPONE",
      "phone_number": "04-70415565",
      "postal_code": "63310",
      "siren": "403671860",
      "siret": "40367186000019",
      "status": "G",
      "store_name": "Boulangerie Tupone",
      "street": "place des Sports",
      "street_number": 10,
      "turnover": 1030000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PONT DE VAUX",
      "client_creation_date": "2006-11-23",
      "closing_days_ids": [],
      "datlinq_code": 1028282,
      "email": "pas passer mercredi",
      "id": 22753,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MILLOUX",
      "phone_number": "+33 385303433",
      "postal_code": "01190",
      "siren": "492785464",
      "siret": "49278546400016",
      "status": "P",
      "store_name": "Boulangerie Banette Passions Gourmandes",
      "street": "place Legrand",
      "street_number": 17,
      "turnover": 300000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PALLUAU SUR INDRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1028745,
      "email": null,
      "id": 33066,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0109A001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-54384614",
      "postal_code": "36500",
      "siren": "533564746",
      "siret": "53356474600014",
      "status": "M",
      "store_name": "Au Marche d'Agnes",
      "street": "rue Basse",
      "street_number": 20,
      "turnover": 250000,
      "user_id": 52,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROUEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1028781,
      "email": null,
      "id": 22791,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232100079",
      "postal_code": "76000",
      "siren": "418678645",
      "siret": "41867864500023",
      "status": "P",
      "store_name": "Boulangerie Bastien",
      "street": "place de la Pucelle",
      "street_number": 29,
      "turnover": 210000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DOLE",
      "client_creation_date": "2010-05-01",
      "closing_days_ids": [],
      "datlinq_code": 1028992,
      "email": null,
      "id": 22802,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Alexandre",
      "phone_number": "+33 384709726",
      "postal_code": "39100",
      "siren": "523113629",
      "siret": "52311362900019",
      "status": "P",
      "store_name": "Alexandre Boulangerie",
      "street": "rue des Arenes",
      "street_number": 68,
      "turnover": 250000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SEMECOURT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1029338,
      "email": null,
      "id": 2925,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387804036",
      "postal_code": "57280",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "centre Commercial Auchan",
      "street_number": null,
      "turnover": null,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BESANCON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1029585,
      "email": null,
      "id": 2931,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 381885597",
      "postal_code": "25048",
      "siren": "501803076",
      "siret": "50180307600014",
      "status": "P",
      "store_name": "Boulangerie Paul",
      "street": "ZAC de Valentin",
      "street_number": null,
      "turnover": 250000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1029605,
      "email": null,
      "id": 2949,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78928916",
      "postal_code": "69002",
      "siren": "452085632",
      "siret": "45208563200035",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "rue des Remparts d Ainay",
      "street_number": 14,
      "turnover": null,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA VILLE DU BOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1029610,
      "email": null,
      "id": 2954,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-69806889",
      "postal_code": "91620",
      "siren": "450939616",
      "siret": "45093961600014",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "centre Commercial Carrefour",
      "street_number": null,
      "turnover": null,
      "user_id": 86,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIROFLAY",
      "client_creation_date": "1-1-2010",
      "closing_days_ids": [],
      "datlinq_code": 1030078,
      "email": null,
      "id": 22871,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0378B001",
      "location_areas_ids": [],
      "owner_name": "LAISNE",
      "phone_number": "01-30244796",
      "postal_code": "78220",
      "siren": "530338334",
      "siret": "53033833400010",
      "status": "M",
      "store_name": "la Boulangerie D'antoine",
      "street": "avenue du General Leclerc",
      "street_number": 35,
      "turnover": 310000,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TRIGUERES",
      "client_creation_date": "2009-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1030650,
      "email": null,
      "id": 22923,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003293252110",
      "location_areas_ids": [],
      "owner_name": "PINSON",
      "phone_number": "+33 238940497",
      "postal_code": "45220",
      "siren": "453331647",
      "siret": "45333164700025",
      "status": "M",
      "store_name": "Boulangerie Pinson Rodrigue",
      "street": "Grande Rue",
      "street_number": 5,
      "turnover": 213000,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURBEVOIE",
      "client_creation_date": "20-5-2011",
      "closing_days_ids": [],
      "datlinq_code": 1031195,
      "email": null,
      "id": 22963,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MOUSSET MONIQUE",
      "phone_number": "01-43331670",
      "postal_code": "92400",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "Boulangerie Tentation Mousset",
      "street": "rue de Colombes",
      "street_number": 109,
      "turnover": 764200,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHARTRES",
      "client_creation_date": "2007-11-06",
      "closing_days_ids": [],
      "datlinq_code": 1031810,
      "email": null,
      "id": 23018,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "AVERT",
      "phone_number": "+33 237282000",
      "postal_code": "28000",
      "siren": "512980913",
      "siret": "51298091300010",
      "status": "M",
      "store_name": "Cote Drive l'Instant Pain",
      "street": "Avenue d'Orléans",
      "street_number": 46,
      "turnover": 700000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LIGNOL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1031827,
      "email": null,
      "id": 23022,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "56160",
      "siren": "507727303",
      "siret": "50772730300012",
      "status": "P",
      "store_name": "Boulangerie Bara Mod Kozh",
      "street": "place Corentin le Floch",
      "street_number": 9,
      "turnover": 180000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOIS COLOMBES",
      "client_creation_date": "22-5-2007",
      "closing_days_ids": [],
      "datlinq_code": 1032155,
      "email": null,
      "id": 23053,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BEN JEDIANE BECHIR",
      "phone_number": "01-42421227",
      "postal_code": "92270",
      "siren": "497898809",
      "siret": "49789880900015",
      "status": "M",
      "store_name": "Boulangerie aux Delices de la Gare",
      "street": "rue du General Leclerc",
      "street_number": 39,
      "turnover": 570200,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA GARENNE COLOMBES",
      "client_creation_date": "1-1-2010",
      "closing_days_ids": [],
      "datlinq_code": 1033372,
      "email": null,
      "id": 23086,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "David GOUDENHOOFT",
      "phone_number": "01-47822188",
      "postal_code": "92250",
      "siren": "520295999",
      "siret": "52029599900012",
      "status": "P",
      "store_name": "Boulangerie Maison Goudenhooft",
      "street": "place de la Liberte",
      "street_number": 7,
      "turnover": 703000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA VARENNE ST HILAIRE",
      "client_creation_date": "2007",
      "closing_days_ids": [],
      "datlinq_code": 1033442,
      "email": null,
      "id": 3008,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48832501",
      "postal_code": "94210",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Pizza del Piano",
      "street": "boulevard de Champigny",
      "street_number": 81,
      "turnover": 250000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEJUIF",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1033586,
      "email": null,
      "id": 23096,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "94800",
      "siren": "431230853",
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Check et Raouf",
      "street": "boulevard Maxime Gorki",
      "street_number": 175,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RIVEDOUX PLAGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1033816,
      "email": null,
      "id": 23138,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "LEYSSENOT",
      "phone_number": "05-46098250",
      "postal_code": "17940",
      "siren": "521326769",
      "siret": "52132676900028",
      "status": "G",
      "store_name": "Boulangerie Pâtisserie Maison des Pains",
      "street": "rue Edouard Herriot",
      "street_number": 49,
      "turnover": 1209500,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RIBERAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1033857,
      "email": null,
      "id": 23160,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-53900036",
      "postal_code": "24600",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Patisserie Bordelaise",
      "street": "place Nationale",
      "street_number": 6,
      "turnover": null,
      "user_id": 197,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PORTETS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1033869,
      "email": null,
      "id": 23164,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56863120",
      "postal_code": "33640",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie le Comptoir des Pains",
      "street": "route des Graves",
      "street_number": 29,
      "turnover": 715000,
      "user_id": 202,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1034762,
      "email": null,
      "id": 23193,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91894230",
      "postal_code": "13011",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Moulin de Galette",
      "street": "centre Commercial la Valentine",
      "street_number": null,
      "turnover": 10000,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PLAN DE CUQUES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1034797,
      "email": null,
      "id": 3025,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91050722",
      "postal_code": "13380",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Pizza Bea",
      "street": "avenue Paul Sirvent",
      "street_number": null,
      "turnover": null,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE GRAU DU ROI",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1037018,
      "email": null,
      "id": 23263,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466515401",
      "postal_code": "30240",
      "siren": "417710837",
      "siret": "41771083700010",
      "status": "G",
      "store_name": "Boulangerie Banette Le Friand II",
      "street": "place de la Liberation",
      "street_number": null,
      "turnover": 450000,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MULHOUSE",
      "client_creation_date": "1975-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1037020,
      "email": null,
      "id": 23265,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "2143E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-89422045",
      "postal_code": "68200",
      "siren": "305839177",
      "siret": "30583917700014",
      "status": "G",
      "store_name": "Boulangerie Pâtisserie Dirringer",
      "street": "rue Franklin",
      "street_number": 20,
      "turnover": 781000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALLOIRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1038621,
      "email": null,
      "id": 23303,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79590294",
      "postal_code": "73450",
      "siren": "452233539",
      "siret": "45223353900017",
      "status": "P",
      "store_name": "Boulangerie Gros",
      "street": "rue de la Setaz",
      "street_number": null,
      "turnover": 533000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-4-1995",
      "closing_days_ids": [],
      "datlinq_code": 1041339,
      "email": null,
      "id": 23378,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MAXIME",
      "phone_number": "01-42002766",
      "postal_code": "75019",
      "siren": "400573648",
      "siret": "40057364800039",
      "status": "P",
      "store_name": "Boulangerie aux Delices De Maxime",
      "street": "rue Petit",
      "street_number": 70,
      "turnover": 2000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAGNOLS SUR CEZE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1042130,
      "email": "laurence.vivier0837@orange.fr",
      "id": 23399,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007614252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466895661",
      "postal_code": "30200",
      "siren": "380012666",
      "siret": "38001266600018",
      "status": "G",
      "store_name": "Au Fournil de Bagnols (Vivier)",
      "street": "boulevard Theodore Lacombe",
      "street_number": 43,
      "turnover": 350000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TARASCON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1042134,
      "email": null,
      "id": 23403,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-90910117",
      "postal_code": "13150",
      "siren": "501010516",
      "siret": "50101051600018",
      "status": "P",
      "store_name": "Patisserie la Tarasque",
      "street": "rue des Halles",
      "street_number": 56,
      "turnover": 250000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PERONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1042426,
      "email": null,
      "id": 3079,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "80200",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Au Petit Creux",
      "street": "Place du Commandant Louis Daud",
      "street_number": 5,
      "turnover": 223300,
      "user_id": 126,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": "2009-10-31",
      "closing_days_ids": [],
      "datlinq_code": 1042863,
      "email": null,
      "id": 23431,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235462155",
      "postal_code": "76620",
      "siren": "421502352",
      "siret": "42150235200022",
      "status": "P",
      "store_name": "Boulangerie Bardin",
      "street": "rue Romain Rolland",
      "street_number": 7,
      "turnover": 342200,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CALAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1042963,
      "email": null,
      "id": 23502,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011527252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321363700",
      "postal_code": "62100",
      "siren": "523881357",
      "siret": "52388135700017",
      "status": "P",
      "store_name": "Boulangerie Petitprès",
      "street": "boulevard Pasteur",
      "street_number": 11,
      "turnover": 140000,
      "user_id": 422,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROZERIEULLES",
      "client_creation_date": "2008-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1042971,
      "email": null,
      "id": 23510,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011159252110",
      "location_areas_ids": [],
      "owner_name": "Raphaël Morisset",
      "phone_number": "+33 387805227",
      "postal_code": "57160",
      "siren": "501580716",
      "siret": "50158071600014",
      "status": "P",
      "store_name": "Boulangerie Banette Morisset",
      "street": "rue Jean Burger",
      "street_number": 54,
      "turnover": 280000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROTHAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1043618,
      "email": null,
      "id": 23527,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-67074450",
      "postal_code": "67570",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie au Bon Pain",
      "street": "place du General de Gaulle",
      "street_number": 12,
      "turnover": 100000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST LOUIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1043662,
      "email": null,
      "id": 33091,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "80029001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-89678842",
      "postal_code": "68300",
      "siren": "424365534",
      "siret": "42436553400017",
      "status": "P",
      "store_name": "Restaurant Elbistan 68",
      "street": "avenue du General de Gaulle",
      "street_number": 14,
      "turnover": 150000,
      "user_id": 111,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MITTELBRONN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1043699,
      "email": null,
      "id": 23532,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387080396",
      "postal_code": "57370",
      "siren": "451259766",
      "siret": "45125976600025",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Martini",
      "street": "rue Saint Augustin Schoeffler",
      "street_number": 20,
      "turnover": null,
      "user_id": 395,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRANDVILLIERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1043732,
      "email": null,
      "id": 23560,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-44467810",
      "postal_code": "60210",
      "siren": "443167739",
      "siret": "44316773900020",
      "status": "P",
      "store_name": "Boulangerie Banette Guerin Thierry",
      "street": "rue du General Leclerc",
      "street_number": 5,
      "turnover": 240000,
      "user_id": 78,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALRAS PLAGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1044390,
      "email": null,
      "id": 3105,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467983788",
      "postal_code": "34350",
      "siren": "510860240",
      "siret": "51086024000017",
      "status": "P",
      "store_name": "Le Pain Dore",
      "street": "Avenue Des Elysees",
      "street_number": 16,
      "turnover": 115000,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DAX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1045372,
      "email": null,
      "id": 33097,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "03016001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-58740075",
      "postal_code": "40100",
      "siren": "402205819",
      "siret": "40220581900046",
      "status": "P",
      "store_name": "Traiteur La Tourtière",
      "street": "rue Saint Vincent",
      "street_number": 12,
      "turnover": 840000,
      "user_id": 210,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PEYREHORADE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1045680,
      "email": null,
      "id": 37393,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RP467001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-58730078",
      "postal_code": "40300",
      "siren": "325741221",
      "siret": "32574122100015",
      "status": "P",
      "store_name": "Commerce Barthouil",
      "street": "route de Hastingues",
      "street_number": 378,
      "turnover": 100,
      "user_id": 209,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ASCAIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1045702,
      "email": "boulangerie.susperregui@orange.fr",
      "id": 23601,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RP564001",
      "location_areas_ids": [],
      "owner_name": "larronde alain",
      "phone_number": "05-59540045",
      "postal_code": "64310",
      "siren": "499546620",
      "siret": "49954662000018",
      "status": "G",
      "store_name": "Boulangerie Susperregui",
      "street": "rue Ernest Fourneau",
      "street_number": 0,
      "turnover": 747500,
      "user_id": 214,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SANTES",
      "client_creation_date": "2010-09-28",
      "closing_days_ids": [],
      "datlinq_code": 1045923,
      "email": null,
      "id": 23620,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011546252110",
      "location_areas_ids": [],
      "owner_name": "DROQUE",
      "phone_number": "+33 320071089",
      "postal_code": "59211",
      "siren": "525061867",
      "siret": "52506186700012",
      "status": "M",
      "store_name": "Boulangerie Droque",
      "street": "rue Albert Bernard",
      "street_number": 49,
      "turnover": 160000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST OMER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1045937,
      "email": null,
      "id": 23634,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321391141",
      "postal_code": "62500",
      "siren": "491384467",
      "siret": "49138446700016",
      "status": "P",
      "store_name": "Boulangerie de Lyzel",
      "street": "rue Saint Martin",
      "street_number": 50,
      "turnover": 214000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAPPELLE LA GRANDE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1045947,
      "email": null,
      "id": 23644,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328219310",
      "postal_code": "59180",
      "siren": "518677984",
      "siret": "51867798400016",
      "status": "P",
      "store_name": "Boulangerie Geoffrey",
      "street": "rue Anatole France",
      "street_number": 55,
      "turnover": 230000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATELAUDREN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1048927,
      "email": null,
      "id": 33102,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31504001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-96741054",
      "postal_code": "22170",
      "siren": "510266539",
      "siret": "51026653900012",
      "status": "P",
      "store_name": "Boucherie Chez Christophe",
      "street": "place de la Republique",
      "street_number": 37,
      "turnover": 100000,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARCIAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1049413,
      "email": "Verge-borderolle.thierry@orange.fr",
      "id": 23728,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007521252110",
      "location_areas_ids": [],
      "owner_name": "VERGE BORDEROLLE",
      "phone_number": "+33 562093869",
      "postal_code": "32230",
      "siren": "503352098",
      "siret": "50335209800019",
      "status": "G",
      "store_name": "Verge Borderolle Marciac",
      "street": "Rue Henri Laignoux",
      "street_number": 1,
      "turnover": 345809,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST EVARZEC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1051711,
      "email": null,
      "id": 3179,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-98562700",
      "postal_code": "29170",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Le Botticelli",
      "street": "Place De L'eglise",
      "street_number": 1,
      "turnover": null,
      "user_id": 149,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COMPIEGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1052104,
      "email": null,
      "id": 37396,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0621E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "60200",
      "siren": "186008603",
      "siret": null,
      "status": "P",
      "store_name": "Ctre De Formation App",
      "street": "Rue Joseph Cugnot",
      "street_number": 3,
      "turnover": 1000,
      "user_id": 311,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LESCAR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1054055,
      "email": null,
      "id": 3204,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "larquier",
      "phone_number": "05-59622003",
      "postal_code": "64230",
      "siren": "499144392",
      "siret": "49914439200010",
      "status": "M",
      "store_name": "Les Delices de Melody",
      "street": "avenue Marguerite de Navarre",
      "street_number": null,
      "turnover": 350000,
      "user_id": 211,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAMPAGNE EN VALROMEY",
      "client_creation_date": "2011-06-14",
      "closing_days_ids": [],
      "datlinq_code": 1054175,
      "email": null,
      "id": 23806,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MATHIEU CRETIN",
      "phone_number": "+33 479876029",
      "postal_code": "01260",
      "siren": "494981467",
      "siret": "49498146700017",
      "status": "G",
      "store_name": "Boulangerie la Valromeysanne",
      "street": "Grande Rue",
      "street_number": 298,
      "turnover": 493300,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "2011-11-04",
      "closing_days_ids": [],
      "datlinq_code": 1055079,
      "email": "lemoulindelea@gmail.com",
      "id": 386,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0740A001",
      "location_areas_ids": [],
      "owner_name": "Hervé connay-stofft",
      "phone_number": "04-78272433",
      "postal_code": "69004",
      "siren": "533208385",
      "siret": "53320838500021",
      "status": "G",
      "store_name": "Boulangerie le Moulin de Lea (LEHA)",
      "street": "Grande Rue de la Croix Rousse",
      "street_number": 56,
      "turnover": 718135,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [
        1
      ],
      "average_ticket": 3.45,
      "city": "MONTLHERY",
      "client_creation_date": "26-7-2011",
      "closing_days_ids": [
        13,
        14
      ],
      "datlinq_code": 1055693,
      "email": null,
      "id": 23946,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": true,
      "local_id": "K0711001",
      "location_areas_ids": [
        2,
        1
      ],
      "owner_name": "HUSSON ET TESSIER",
      "phone_number": "01-64490337",
      "postal_code": "91310",
      "siren": "533762290",
      "siret": "53376229000013",
      "status": "G",
      "store_name": "Au Fournil de la Tour",
      "street": "place du Marche",
      "street_number": 20,
      "turnover": 800000,
      "user_id": 86,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CALAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1055700,
      "email": null,
      "id": 33125,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011633252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321170546",
      "postal_code": "62100",
      "siren": "533571204",
      "siret": "53357120400015",
      "status": "G",
      "store_name": "Pain et Levain",
      "street": "rue Gutenberg",
      "street_number": 0,
      "turnover": 500000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1055715,
      "email": null,
      "id": 23949,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "HAVART",
      "phone_number": "+33 321316992",
      "postal_code": "62200",
      "siren": "533848750",
      "siret": "53384875000014",
      "status": "P",
      "store_name": "Boulangerie Havart",
      "street": "rue Louis Faidherbe",
      "street_number": 9,
      "turnover": 200000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AMILLY",
      "client_creation_date": "2011-08-05",
      "closing_days_ids": [],
      "datlinq_code": 1056888,
      "email": null,
      "id": 24009,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "LAUGERAY",
      "phone_number": "+33 237329429",
      "postal_code": "28300",
      "siren": "533950051",
      "siret": "53395005100011",
      "status": "P",
      "store_name": "Boulangerie l'Authentique",
      "street": "rue de la Republique",
      "street_number": 4,
      "turnover": 240000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTPELLIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1056916,
      "email": null,
      "id": 24014,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "34070",
      "siren": "533750568",
      "siret": "53375056800016",
      "status": "P",
      "store_name": "Boulangerie Croissant de Lune",
      "street": "rue Eurydice",
      "street_number": 42,
      "turnover": 10000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SERMAISES",
      "client_creation_date": "2011-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1056987,
      "email": null,
      "id": 24018,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "NAU",
      "phone_number": "+33 238397607",
      "postal_code": "45300",
      "siren": "534099619",
      "siret": "53409961900015",
      "status": "M",
      "store_name": "Boulangerie Banette Le Petit Gourmand",
      "street": "rue Guy Renier",
      "street_number": 18,
      "turnover": 175000,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MESNILS SUR ITON",
      "client_creation_date": "1905-07-03",
      "closing_days_ids": [],
      "datlinq_code": 1057016,
      "email": null,
      "id": 24020,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005579252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232345089",
      "postal_code": "27240",
      "siren": "534141767",
      "siret": "53414176700028",
      "status": "M",
      "store_name": "Boulangerie le Fournil des Saveurs",
      "street": "rue de Verdun",
      "street_number": 11,
      "turnover": 289825,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VAUREAL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1057312,
      "email": null,
      "id": 3265,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-34250332",
      "postal_code": "95490",
      "siren": "534137211",
      "siret": "53413721100015",
      "status": "EMPTY_STATUS",
      "store_name": "Alan Pizza",
      "street": "av de la Revolution Francaise",
      "street_number": 2,
      "turnover": null,
      "user_id": 80,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAUBEUGE",
      "client_creation_date": "2000-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1057519,
      "email": null,
      "id": 3271,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011519252110",
      "location_areas_ids": [],
      "owner_name": "AIT SAID AMNI MOHAMED",
      "phone_number": "+33 327399031",
      "postal_code": "59600",
      "siren": "534751102",
      "siret": "53475110200011",
      "status": "G",
      "store_name": "Croissant De Lune",
      "street": "rue de Douzies",
      "street_number": 57,
      "turnover": 900000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CORTE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1058129,
      "email": null,
      "id": 33461,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0407D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-95610470",
      "postal_code": "20250",
      "siren": "313063927",
      "siret": "31306392700013",
      "status": "M",
      "store_name": "Maison de Retraite Ehpad U Serenu",
      "street": "rue Colonel Ferracci",
      "street_number": 5,
      "turnover": 300000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURCELLES SUR SEINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1058139,
      "email": null,
      "id": 3287,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "27940",
      "siren": "534525043",
      "siret": "53452504300012",
      "status": "EMPTY_STATUS",
      "store_name": "Tabac Le Stop",
      "street": "route des Andelys",
      "street_number": 3,
      "turnover": null,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LANDERNEAU",
      "client_creation_date": "2011",
      "closing_days_ids": [],
      "datlinq_code": 1058266,
      "email": "boedechenry@hotmail.fr",
      "id": 24117,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31696001",
      "location_areas_ids": [],
      "owner_name": "Boedec Henry",
      "phone_number": "02-98215918",
      "postal_code": "29800",
      "siren": "534517446",
      "siret": "53451744600017",
      "status": "M",
      "store_name": "Boulangerie Banette Plaisirs Sucrés",
      "street": "rue Chanoine Kerbrat",
      "street_number": 10,
      "turnover": 256000,
      "user_id": 147,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ENGLEFONTAINE",
      "client_creation_date": "2005-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1058498,
      "email": null,
      "id": 24138,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "A6403001",
      "location_areas_ids": [],
      "owner_name": "FIEVET",
      "phone_number": "+33 327416656",
      "postal_code": "59530",
      "siren": "534569496",
      "siret": "53456949600019",
      "status": "G",
      "store_name": "Boulangerie Fievet",
      "street": "Chaussee Brunehaut",
      "street_number": 48,
      "turnover": 600000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": "2013-04-26",
      "closing_days_ids": [],
      "datlinq_code": 1058673,
      "email": null,
      "id": 24154,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016454252110",
      "location_areas_ids": [],
      "owner_name": "DEMORY/DESCAMPS",
      "phone_number": "+33 320921962",
      "postal_code": "59000",
      "siren": "792529596",
      "siret": "79252959600019",
      "status": "G",
      "store_name": "Boulangerie Au P'tit Louis",
      "street": "place de la Solidarite",
      "street_number": 5,
      "turnover": 380000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHERBOURG EN COTENTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1058936,
      "email": "elvire.giot@yahoo.com",
      "id": 24182,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003410252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233531383",
      "postal_code": "50130",
      "siren": "535149397",
      "siret": "53514939700015",
      "status": "P",
      "store_name": "Boulangerie Giot",
      "street": "rue Sadi Carnot",
      "street_number": 134,
      "turnover": 100000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "EVREUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1059607,
      "email": null,
      "id": 24246,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232330191",
      "postal_code": "27000",
      "siren": "449261304",
      "siret": "44926130400025",
      "status": "M",
      "store_name": "Boulangerie Thezo",
      "street": "rue Victor Hugo",
      "street_number": 57,
      "turnover": 634600,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DIVES SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1059618,
      "email": null,
      "id": 24256,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231910511",
      "postal_code": "14160",
      "siren": "509914750",
      "siret": "50991475000021",
      "status": "P",
      "store_name": "Boulangerie la Maison du Pain",
      "street": "rue du General de Gaulle",
      "street_number": 69,
      "turnover": 100000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NOTRE DAME DE GRAVENCHON",
      "client_creation_date": "2001-04-01",
      "closing_days_ids": [],
      "datlinq_code": 1059630,
      "email": null,
      "id": 24267,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010028620252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235382125",
      "postal_code": "76330",
      "siren": "435334701",
      "siret": null,
      "status": "G",
      "store_name": "Boulangerie aux Delices de Gravenchon ( Lerosey)",
      "street": "centre Commercial la Hetraie",
      "street_number": 1,
      "turnover": 945000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 1059788,
      "email": null,
      "id": 24327,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DALHOUMI",
      "phone_number": "000-000",
      "postal_code": "75018",
      "siren": "537712606",
      "siret": "53771260600012",
      "status": "M",
      "store_name": "Boulangerie les Délices de Ramey",
      "street": "rue Ramey",
      "street_number": 28,
      "turnover": 300000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MANTRY",
      "client_creation_date": "2011-10-01",
      "closing_days_ids": [],
      "datlinq_code": 1059822,
      "email": null,
      "id": 24328,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 384257355",
      "postal_code": "39230",
      "siren": "535304836",
      "siret": "53530483600013",
      "status": "P",
      "store_name": "Boulangerie au Plaisir Gourmand",
      "street": "route de Mauffans",
      "street_number": null,
      "turnover": 140000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MATHAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1059938,
      "email": null,
      "id": 24334,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 381353948",
      "postal_code": "25700",
      "siren": "535365860",
      "siret": "53536586000019",
      "status": "P",
      "store_name": "Boulangerie Patisserie Julien",
      "street": "avenue Charles de Gaulle",
      "street_number": 223,
      "turnover": 300000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAINTES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1060028,
      "email": null,
      "id": 3329,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "17100",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Tendance Choc",
      "street": "rue de la Champagne St Georges",
      "street_number": 15,
      "turnover": null,
      "user_id": 152,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NOGENT LE ROTROU",
      "client_creation_date": "2010-10-13",
      "closing_days_ids": [],
      "datlinq_code": 1060086,
      "email": null,
      "id": 24348,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "CARON",
      "phone_number": "+33 237523707",
      "postal_code": "28400",
      "siren": "408509917",
      "siret": "40850991700022",
      "status": "P",
      "store_name": "Boulangerie Caron",
      "street": "rue Saint Hilaire",
      "street_number": 129,
      "turnover": 270000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANNES",
      "client_creation_date": "1979-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1060444,
      "email": null,
      "id": 3334,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Giorgio michelle",
      "phone_number": "04-93480304",
      "postal_code": "06150",
      "siren": "315416230",
      "siret": "31541623000011",
      "status": "P",
      "store_name": "Sandwicherie Kiosque du Marche",
      "street": "avenue Francis Tonner",
      "street_number": 76,
      "turnover": 80000,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRENOBLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1060829,
      "email": null,
      "id": 3344,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76560467",
      "postal_code": "38000",
      "siren": "482925955",
      "siret": "48292595500015",
      "status": "P",
      "store_name": "Sandwicherie Am'Stram Miam",
      "street": "avenue Alsace Lorraine",
      "street_number": 33,
      "turnover": 102000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FOUCARMONT",
      "client_creation_date": "2009-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1061369,
      "email": null,
      "id": 24467,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235937156",
      "postal_code": "76340",
      "siren": "397477555",
      "siret": "39747755500023",
      "status": "P",
      "store_name": "Boulangerie Graindorge",
      "street": "rue des Halles",
      "street_number": 4,
      "turnover": 180000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TALLARD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1061484,
      "email": null,
      "id": 24559,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RLL86001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92240563",
      "postal_code": "05130",
      "siren": "511961237",
      "siret": "51196123700019",
      "status": "G",
      "store_name": "Boulangerie Ludy",
      "street": "lieu dit Le Moulin de Rousine",
      "street_number": null,
      "turnover": 677000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "QUIMPERLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1061591,
      "email": null,
      "id": 24594,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-98960417",
      "postal_code": "29300",
      "siren": "326188257",
      "siret": "32618825700025",
      "status": "P",
      "store_name": "Boulangerie Colleaux Dominique",
      "street": "place Hervo",
      "street_number": 6,
      "turnover": 200000,
      "user_id": 262,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA ROCHE BERNARD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1062050,
      "email": null,
      "id": 3374,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "56130",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Baraque A Biloute Pizzas Aldo",
      "street": "rue de Nantes",
      "street_number": 48,
      "turnover": null,
      "user_id": 262,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTPELLIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1062184,
      "email": null,
      "id": 3379,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467042424",
      "postal_code": "34090",
      "siren": "402799829",
      "siret": "40279982900039",
      "status": "M",
      "store_name": "Fournil de la Fac",
      "street": "rue du Professeur Joseph Anglada",
      "street_number": 1036,
      "turnover": 421900,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST SATURNIN LES AVIGNON",
      "client_creation_date": "17-11-2011",
      "closing_days_ids": [],
      "datlinq_code": 1062518,
      "email": null,
      "id": 24656,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0020B001",
      "location_areas_ids": [],
      "owner_name": "Sébastien Rouet",
      "phone_number": "000-000",
      "postal_code": "84450",
      "siren": "537924870",
      "siret": "53792487000018",
      "status": "P",
      "store_name": "Boulangerie Rouet",
      "street": "avenue de la Liberation",
      "street_number": 8,
      "turnover": 160000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": "2003-07-29",
      "closing_days_ids": [],
      "datlinq_code": 1062738,
      "email": null,
      "id": 24667,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "VAUCAMPS FREDERIC",
      "phone_number": "+33 320548110",
      "postal_code": "59000",
      "siren": "478409352",
      "siret": "47840935200026",
      "status": "G",
      "store_name": "Boulangerie Patrick Hermand",
      "street": "rue Leon Gambetta",
      "street_number": 324,
      "turnover": 1834200,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LEVALLOIS PERRET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1062816,
      "email": null,
      "id": 39975,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "09-64243369",
      "postal_code": "92300",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Daily Monop",
      "street": "place Georges Pompidou",
      "street_number": 18,
      "turnover": null,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ORBEY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063236,
      "email": null,
      "id": 24683,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "2865E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-89271428",
      "postal_code": "68370",
      "siren": "538309162",
      "siret": "53830916200013",
      "status": "P",
      "store_name": "Boulangerie du Petit Beck",
      "street": "rue de l Eglise",
      "street_number": 9,
      "turnover": 206000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PRALOGNAN LA VANOISE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063303,
      "email": null,
      "id": 3402,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "73710",
      "siren": "538592569",
      "siret": "53859256900015",
      "status": "P",
      "store_name": "Snack La Ripaille",
      "street": "avenue de Chasseforet",
      "street_number": null,
      "turnover": 170000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURRIERES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063359,
      "email": null,
      "id": 24690,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007772252110",
      "location_areas_ids": [],
      "owner_name": "Concalves",
      "phone_number": "+33 361485147",
      "postal_code": "62710",
      "siren": "538269689",
      "siret": "53826968900013",
      "status": "G",
      "store_name": "Boulangerie O' Fournil de Tom",
      "street": "rue Arthur Lamendin",
      "street_number": 68,
      "turnover": 250000,
      "user_id": 416,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BROYE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063490,
      "email": null,
      "id": 24697,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BARDET",
      "phone_number": "+33 385861771",
      "postal_code": "71190",
      "siren": "538796418",
      "siret": "53879641800019",
      "status": "P",
      "store_name": "Boulangerie Bardet",
      "street": "rue du Bourg",
      "street_number": null,
      "turnover": 82000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BIGANOS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063565,
      "email": null,
      "id": 24701,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXE32001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56267383",
      "postal_code": "33380",
      "siren": "519737290",
      "siret": "51973729000022",
      "status": "G",
      "store_name": "Boulangerie le Pain Gourmand",
      "street": "avenue de la Liberation",
      "street_number": 51,
      "turnover": 639672,
      "user_id": 206,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RUEIL MALMAISON",
      "client_creation_date": "1-12-2011",
      "closing_days_ids": [],
      "datlinq_code": 1063675,
      "email": null,
      "id": 24707,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0546B001",
      "location_areas_ids": [],
      "owner_name": "Ramzy Khalfet",
      "phone_number": "01-80469641",
      "postal_code": "92500",
      "siren": "538515826",
      "siret": "53851582600013",
      "status": "G",
      "store_name": "Boulangerie Baguette Eclair",
      "street": "route de l Empereur",
      "street_number": 147,
      "turnover": 840000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SOREZE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063741,
      "email": null,
      "id": 24710,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 563741039",
      "postal_code": "81540",
      "siren": "538492745",
      "siret": "53849274500012",
      "status": "G",
      "store_name": "Boulangerie le Croustet",
      "street": "Allees de la Liberation",
      "street_number": 6,
      "turnover": 400000,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WORMHOUT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063913,
      "email": null,
      "id": 24718,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328656034",
      "postal_code": "59470",
      "siren": "534918669",
      "siret": "53491866900019",
      "status": "P",
      "store_name": "Boulangerie Acket",
      "street": "place du General de Gaulle",
      "street_number": 8,
      "turnover": 230000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROGNONAS",
      "client_creation_date": "19-10-2011",
      "closing_days_ids": [],
      "datlinq_code": 1064059,
      "email": null,
      "id": 24721,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "fligeat",
      "phone_number": "04-90948635",
      "postal_code": "13870",
      "siren": "535369235",
      "siret": "53536923500028",
      "status": "P",
      "store_name": "Boulangerie l'Arlésienne",
      "street": "avenue de la Liberation",
      "street_number": 38,
      "turnover": 183000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST SATURNIN LES APT",
      "client_creation_date": "22/11/2010",
      "closing_days_ids": [],
      "datlinq_code": 1064078,
      "email": null,
      "id": 24722,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Chafik",
      "phone_number": "04-90754136",
      "postal_code": "84490",
      "siren": "528516404",
      "siret": "52851640400019",
      "status": "M",
      "store_name": "Boulangerie Chafik",
      "street": "place de la Fraternite",
      "street_number": null,
      "turnover": 268000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AUZAT LA COMBELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1064310,
      "email": null,
      "id": 24725,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0088B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-73961139",
      "postal_code": "63570",
      "siren": "492023981",
      "siret": "49202398100029",
      "status": "M",
      "store_name": "Boulangerie les Sapins",
      "street": "avenue Laurent Delhaye",
      "street_number": 6,
      "turnover": 180000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LERY",
      "client_creation_date": "2012-02-14",
      "closing_days_ids": [],
      "datlinq_code": 1064423,
      "email": null,
      "id": 24730,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Lefrançois",
      "phone_number": "+33 232594497",
      "postal_code": "27690",
      "siren": "538500109",
      "siret": "53850010900011",
      "status": "P",
      "store_name": "Boulangerie Lefrancois",
      "street": "rue du 8 Mai",
      "street_number": 1,
      "turnover": 209000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PEPIEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1064631,
      "email": null,
      "id": 24735,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010032563252110",
      "location_areas_ids": [],
      "owner_name": "Busschots",
      "phone_number": "+33 468493420",
      "postal_code": "11700",
      "siren": "791246473",
      "siret": "79124647300015",
      "status": "P",
      "store_name": "Boulangerie les Pains de Corlet",
      "street": "rue du 11 Novembre 1918",
      "street_number": 2,
      "turnover": 120000,
      "user_id": 440,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOLQUERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1064685,
      "email": null,
      "id": 24736,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013316252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468300133",
      "postal_code": "66210",
      "siren": "531405967",
      "siret": "53140596700013",
      "status": "G",
      "store_name": "Boulangerie de P2",
      "street": "route de la Foret",
      "street_number": null,
      "turnover": 450000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BINAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1064700,
      "email": null,
      "id": 24737,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 254804187",
      "postal_code": "41240",
      "siren": "402307292",
      "siret": "40230729200035",
      "status": "P",
      "store_name": "Boulangerie aux Delices de Binas",
      "street": "rue du 8 Mai 1945",
      "street_number": 12,
      "turnover": 200000,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1064943,
      "email": null,
      "id": 3445,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-44700410",
      "postal_code": "75008",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant Midore",
      "street": "rue de la Pepiniere",
      "street_number": 28,
      "turnover": null,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAGNES SUR MER",
      "client_creation_date": "2010-03-01",
      "closing_days_ids": [],
      "datlinq_code": 1065193,
      "email": null,
      "id": 34434,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "02932001",
      "location_areas_ids": [],
      "owner_name": "NOTO",
      "phone_number": "04-93228833",
      "postal_code": "06800",
      "siren": "512524430",
      "siret": "51252443000018",
      "status": "M",
      "store_name": "Boulangerie le Moulin de Flor",
      "street": "avenue de Nice",
      "street_number": 161,
      "turnover": 300000,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTIGNY LE BRETONNEUX",
      "client_creation_date": "20-12-2011",
      "closing_days_ids": [],
      "datlinq_code": 1065195,
      "email": null,
      "id": 3449,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0007B001",
      "location_areas_ids": [],
      "owner_name": "BOUCHOU",
      "phone_number": "01-30489687",
      "postal_code": "78180",
      "siren": "538622226",
      "siret": "53862222600016",
      "status": "M",
      "store_name": "Boulangerie O Pain du Lac",
      "street": "place de Wicklow",
      "street_number": 13,
      "turnover": 300000,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065232,
      "email": null,
      "id": 24749,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1624F001",
      "location_areas_ids": [],
      "owner_name": "MEYZAUD",
      "phone_number": "01-42648133",
      "postal_code": "75018",
      "siren": "538913872",
      "siret": "53891387200015",
      "status": "G",
      "store_name": "Boulangerie La Bould'ange de Montmartre",
      "street": "rue Damremont",
      "street_number": 42,
      "turnover": 487000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TRAINEL",
      "client_creation_date": "2012-02-11",
      "closing_days_ids": [],
      "datlinq_code": 1065243,
      "email": null,
      "id": 24750,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016365252110",
      "location_areas_ids": [],
      "owner_name": "Gandoin",
      "phone_number": "+33 325391034",
      "postal_code": "10400",
      "siren": "504085796",
      "siret": "53888191300015",
      "status": "M",
      "store_name": "Boulangerie la Viennoise",
      "street": "rue du Jeu de Paume",
      "street_number": null,
      "turnover": 230000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VINGRAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065252,
      "email": null,
      "id": 33157,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005835252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468346330",
      "postal_code": "66600",
      "siren": "538831983",
      "siret": "53883198300019",
      "status": "P",
      "store_name": "Le Fournil de Vingrau",
      "street": "rue Marechal Joffre",
      "street_number": 14,
      "turnover": 140000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065267,
      "email": "idoudi2008@live.fr",
      "id": 24752,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "L0116001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-29513821",
      "postal_code": "75013",
      "siren": "538857533",
      "siret": "53885753300011",
      "status": "P",
      "store_name": "Boulangerie Les Delices de la Place des Alpes",
      "street": "boulevard Vincent Auriol",
      "street_number": 162,
      "turnover": 336055,
      "user_id": 91,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANGERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065270,
      "email": null,
      "id": 3451,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241779296",
      "postal_code": "49100",
      "siren": "538624073",
      "siret": "53862407300010",
      "status": "P",
      "store_name": "Sandwicherie Lili Gourmande",
      "street": "rue Saint Denis",
      "street_number": 2,
      "turnover": 150000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA LONDE LES MAURES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065271,
      "email": null,
      "id": 3452,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "De bono",
      "phone_number": "000-000",
      "postal_code": "83250",
      "siren": "538592791",
      "siret": "53859279100015",
      "status": "P",
      "store_name": "Boulangerie O Four et O Moulin",
      "street": "avenue de la Baie des Iles",
      "street_number": null,
      "turnover": 94000,
      "user_id": 188,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CACHAN",
      "client_creation_date": "1-1-2008",
      "closing_days_ids": [],
      "datlinq_code": 1065288,
      "email": null,
      "id": 24754,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "K1201001",
      "location_areas_ids": [],
      "owner_name": "AIT MOULOUD",
      "phone_number": "0663273947",
      "postal_code": "94230",
      "siren": "538713587",
      "siret": "53871358700011",
      "status": "P",
      "store_name": "Boulangerie Ô Pain Chic",
      "street": "rue Francois Villon",
      "street_number": 10,
      "turnover": 150000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JUNAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065343,
      "email": null,
      "id": 24757,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466809189",
      "postal_code": "30250",
      "siren": "494658024",
      "siret": "49465802400026",
      "status": "P",
      "store_name": "Boulangerie au Moulin à Pains",
      "street": "place de l Avenir",
      "street_number": 1,
      "turnover": 160000,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROUEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065537,
      "email": null,
      "id": 3462,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235718733",
      "postal_code": "76000",
      "siren": "524938768",
      "siret": "52493876800057",
      "status": "P",
      "store_name": "Boulangerie Paul",
      "street": "rue Ganterie",
      "street_number": 2,
      "turnover": 200000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LESQUIN",
      "client_creation_date": "2007-09-04",
      "closing_days_ids": [],
      "datlinq_code": 1065671,
      "email": null,
      "id": 24763,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011850252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320503336",
      "postal_code": "59810",
      "siren": "412794463",
      "siret": "41279446300023",
      "status": "G",
      "store_name": "Boulangerie Au Fournil",
      "street": "rue Jean Jaures",
      "street_number": 35,
      "turnover": 430000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PEZENAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065681,
      "email": null,
      "id": 24764,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010004574252110",
      "location_areas_ids": [],
      "owner_name": "MAILLLET",
      "phone_number": "+33 467983770",
      "postal_code": "34120",
      "siren": "513039727",
      "siret": "51303972700013",
      "status": "P",
      "store_name": "Boulangerie Maillet",
      "street": "cours Jean Jaures",
      "street_number": 6,
      "turnover": 227100,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHARTRES",
      "client_creation_date": "2011-02-10",
      "closing_days_ids": [],
      "datlinq_code": 1065764,
      "email": null,
      "id": 24768,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "VIRON",
      "phone_number": "+33 237211630",
      "postal_code": "28000",
      "siren": "530240217",
      "siret": "53024021700014",
      "status": "P",
      "store_name": "Boulangerie Faubourg",
      "street": "rue du Grand Faubourg",
      "street_number": 17,
      "turnover": 737200,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": "2011-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1065964,
      "email": "celine.piek@orange.fr",
      "id": 24774,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007801252110",
      "location_areas_ids": [],
      "owner_name": "BREBANT",
      "phone_number": "+33 235212958",
      "postal_code": "76600",
      "siren": "491832465",
      "siret": "49183246500026",
      "status": "P",
      "store_name": "Boulangerie le Fournil St Roch",
      "street": "rue Georges Braque",
      "street_number": 21,
      "turnover": 210000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAUSSET LES PINS",
      "client_creation_date": "1-1-2013",
      "closing_days_ids": [],
      "datlinq_code": 1065985,
      "email": "lafourneesaussetoise@free.fr",
      "id": 24775,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0500A001",
      "location_areas_ids": [],
      "owner_name": "PARPEIX Philippe",
      "phone_number": "04-42066952",
      "postal_code": "13960",
      "siren": "533652491",
      "siret": "53365249100010",
      "status": "G",
      "store_name": "Boulangerie La Fournée Saussetoise",
      "street": "avenue de la Cote Bleue",
      "street_number": 34,
      "turnover": 800000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NIMES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065986,
      "email": null,
      "id": 3470,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466382367",
      "postal_code": "30000",
      "siren": "799291612",
      "siret": "79929161200015",
      "status": "EMPTY_STATUS",
      "store_name": "Fournil Saint Nicolas",
      "street": "rue de Beaucaire",
      "street_number": 68,
      "turnover": null,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURNAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066068,
      "email": null,
      "id": 37405,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0869E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "65190",
      "siren": "519240345",
      "siret": "51924034500016",
      "status": "EMPTY_STATUS",
      "store_name": "Pâtisserie Le Café Croissant",
      "street": "place d Astarac",
      "street_number": 11,
      "turnover": null,
      "user_id": 208,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AURIOL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066192,
      "email": null,
      "id": 3474,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-42701028",
      "postal_code": "13390",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Label Pizza",
      "street": "cours de Verdun",
      "street_number": 5,
      "turnover": null,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAROQUE D OLMES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066255,
      "email": null,
      "id": 24783,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "09600",
      "siren": "538890104",
      "siret": "53889010400028",
      "status": "P",
      "store_name": "Boulangerie Riviere d'Olmes",
      "street": "centre Commercial le Castillane",
      "street_number": null,
      "turnover": 245000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "L ISLE D ABEAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066284,
      "email": null,
      "id": 24786,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "JEROME DOVILLEZ",
      "phone_number": "000-000",
      "postal_code": "38080",
      "siren": "538891508",
      "siret": "53889150800011",
      "status": "M",
      "store_name": "Boulangerie Mjd Tradition",
      "street": "place Gabriel Peri",
      "street_number": null,
      "turnover": 236000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANCY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066301,
      "email": null,
      "id": 24787,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0049F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "54000",
      "siren": "538927500",
      "siret": "53892750000016",
      "status": "P",
      "store_name": "Boulangerie Sauvage",
      "street": "rue du Marechal Oudinot",
      "street_number": 50,
      "turnover": 170000,
      "user_id": 106,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066311,
      "email": null,
      "id": 24788,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231502983",
      "postal_code": "14000",
      "siren": "538794025",
      "siret": "53879402500014",
      "status": "P",
      "store_name": "Boulangerie le Trady",
      "street": "rue Caponiere",
      "street_number": 28,
      "turnover": 151800,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE MANS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066339,
      "email": null,
      "id": 24789,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243841664",
      "postal_code": "72000",
      "siren": "538938044",
      "siret": "53893804400012",
      "status": "P",
      "store_name": "Boulangerie Aux Douceurs de Washington",
      "street": "rue Nationale",
      "street_number": 196,
      "turnover": 160000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GEORGES D OLERON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066350,
      "email": null,
      "id": 24791,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-17254520",
      "postal_code": "17190",
      "siren": "538751520",
      "siret": "53875152000015",
      "status": "P",
      "store_name": "Boulangerie des Lys",
      "street": "rue de la Couture",
      "street_number": 15,
      "turnover": 150000,
      "user_id": 155,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "REIMS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066351,
      "email": null,
      "id": 3484,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326058102",
      "postal_code": "51100",
      "siren": "538685827",
      "siret": "53868582700015",
      "status": "P",
      "store_name": "Sanwicherie les Gourmandises de Gauthier",
      "street": "rue de l Etape",
      "street_number": 24,
      "turnover": 80000,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BLENDECQUES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066367,
      "email": null,
      "id": 24792,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010032696252110",
      "location_areas_ids": [],
      "owner_name": "DEWAELE",
      "phone_number": "000-000",
      "postal_code": "62575",
      "siren": "538819053",
      "siret": "53881905300017",
      "status": "P",
      "store_name": "Boulangerie Dewaele",
      "street": "rue Jean Baptiste Lebas",
      "street_number": 21,
      "turnover": 130000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANET EN ROUSSILLON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066418,
      "email": null,
      "id": 3487,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010000063252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 963647565",
      "postal_code": "66140",
      "siren": "538866112",
      "siret": "53886611200013",
      "status": "P",
      "store_name": "Migan",
      "street": "avenue de Saint Nazaire",
      "street_number": 5,
      "turnover": 168707,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STE SIGOLENE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066444,
      "email": null,
      "id": 24794,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "43600",
      "siren": "539096875",
      "siret": "53909687500015",
      "status": "P",
      "store_name": "Boulangerie Les Douceurs du Fournil",
      "street": "rue de la Victoire",
      "street_number": 9,
      "turnover": 175000,
      "user_id": 54,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLENAVE D ORNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066598,
      "email": null,
      "id": 3491,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "33140",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Louka Pizza",
      "street": "route de Toulouse",
      "street_number": 571,
      "turnover": null,
      "user_id": 202,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARGENTON SUR CREUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066612,
      "email": null,
      "id": 24797,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-54475791",
      "postal_code": "36200",
      "siren": "495395196",
      "siret": "49539519600027",
      "status": "P",
      "store_name": "Boulangerie Merlin",
      "street": "rue Grande",
      "street_number": 26,
      "turnover": 286700,
      "user_id": 52,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "2007",
      "closing_days_ids": [],
      "datlinq_code": 1066618,
      "email": null,
      "id": 3492,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "09-86327509",
      "postal_code": "69009",
      "siren": "803185578",
      "siret": "80318557800017",
      "status": "P",
      "store_name": "Snack le Pause Midi",
      "street": "rue Louis Loucheur",
      "street_number": 8,
      "turnover": 390000,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NEUVILLE DE POITOU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066782,
      "email": null,
      "id": 24802,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "RENAUD",
      "phone_number": "05-49513403",
      "postal_code": "86170",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Renaud",
      "street": "route de Clan",
      "street_number": 77,
      "turnover": 200000,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GERZAT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066863,
      "email": null,
      "id": 24805,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ANTONIO",
      "phone_number": "04-73256759",
      "postal_code": "63360",
      "siren": "508161130",
      "siret": "50816113000010",
      "status": "M",
      "store_name": "Boulangerie Antonio",
      "street": "rue des Martyrs",
      "street_number": 3,
      "turnover": 480000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GALAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067091,
      "email": null,
      "id": 24809,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RP889001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-81509106",
      "postal_code": "65330",
      "siren": "411745052",
      "siret": "41174505200034",
      "status": "P",
      "store_name": "Boulangerie La Chocolatine",
      "street": "place de la Bastide",
      "street_number": 10,
      "turnover": 130000,
      "user_id": 208,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067117,
      "email": null,
      "id": 3506,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561002001",
      "postal_code": "31000",
      "siren": "532007135",
      "siret": "53200713500025",
      "status": "P",
      "store_name": "Pizza Cap",
      "street": "rue du Languedoc",
      "street_number": 26,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067126,
      "email": null,
      "id": 50511,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561124821",
      "postal_code": "31000",
      "siren": "527567200",
      "siret": "52756720000011",
      "status": "EMPTY_STATUS",
      "store_name": "Columbus Café & Co",
      "street": "rue du Taur",
      "street_number": 10,
      "turnover": null,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MEUDON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067220,
      "email": null,
      "id": 24820,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0823G001",
      "location_areas_ids": [],
      "owner_name": "Mr aubid ",
      "phone_number": "01-41285869",
      "postal_code": "92360",
      "siren": "538949983",
      "siret": "53894998300018",
      "status": "P",
      "store_name": "Boulangerie Casa Four",
      "street": "allee Marcel Simon",
      "street_number": 26,
      "turnover": 300000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067330,
      "email": null,
      "id": 3512,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013305252110",
      "location_areas_ids": [],
      "owner_name": "IZARN NADINE",
      "phone_number": "+33 562895610",
      "postal_code": "31000",
      "siren": "448836163",
      "siret": "44883616300023",
      "status": "P",
      "store_name": "Sandwicherie l'Epicurien",
      "street": "rue de Metz",
      "street_number": 47,
      "turnover": 175849,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CLAR DE RIVIERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067331,
      "email": null,
      "id": 24824,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "L5705001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 562238714",
      "postal_code": "31600",
      "siren": "533680559",
      "siret": "53368055900010",
      "status": "P",
      "store_name": "Boulangerie Le Pain Gourmand",
      "street": "Grand Place",
      "street_number": 38,
      "turnover": 180000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALBI",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067332,
      "email": null,
      "id": 24825,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "RIMBAUX NICOLAS",
      "phone_number": "+33 563542729",
      "postal_code": "81000",
      "siren": "532875812",
      "siret": "53287581200010",
      "status": "P",
      "store_name": "Boulangerie Banette Rimbaux Boisloret",
      "street": "avenue Colonel Teyssier",
      "street_number": 123,
      "turnover": 114481,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067333,
      "email": null,
      "id": 24826,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "NEDJARI ABDELKADER",
      "phone_number": "+33 567687799",
      "postal_code": "31400",
      "siren": "439526153",
      "siret": "43952615300028",
      "status": "P",
      "store_name": "Boulangerie le Palais Gourmand",
      "street": "avenue Antoine de Saint Exupery",
      "street_number": 32,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALBIAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067433,
      "email": null,
      "id": 24833,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 965321119",
      "postal_code": "82350",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Castel Jean",
      "street": "place de la Liberation",
      "street_number": null,
      "turnover": 350000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LHERM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067437,
      "email": null,
      "id": 24836,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561561574",
      "postal_code": "31600",
      "siren": "522996388",
      "siret": "52299638800024",
      "status": "P",
      "store_name": "Boulangerie O Croustet du Lherm",
      "street": "place de l Eglise",
      "street_number": 33,
      "turnover": 150000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VITRY SUR SEINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067494,
      "email": null,
      "id": 24839,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47180429",
      "postal_code": "94400",
      "siren": "501431647",
      "siret": "50143164700012",
      "status": "EMPTY_STATUS",
      "store_name": "Elhadi Boulangerie",
      "street": "avenue Rouget de Lisle",
      "street_number": 139,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VENISSIEUX",
      "client_creation_date": "2012",
      "closing_days_ids": [],
      "datlinq_code": 1067529,
      "email": null,
      "id": 404,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0675B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78701024",
      "postal_code": "69200",
      "siren": "538950825",
      "siret": "53895082500017",
      "status": "P",
      "store_name": "Boulangerie la Huche aux Pains",
      "street": "rue Paul Bert",
      "street_number": 14,
      "turnover": 184700,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CHAPTES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067538,
      "email": null,
      "id": 24843,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010027720252110",
      "location_areas_ids": [],
      "owner_name": "ALMARIC",
      "phone_number": "+33 466812438",
      "postal_code": "30190",
      "siren": "530092980",
      "siret": "53009298000016",
      "status": "P",
      "store_name": "Boulangerie les Gourmandises de Saint Chaptes",
      "street": "avenue Raoul Vezol",
      "street_number": 17,
      "turnover": 320000,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RODEZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067539,
      "email": null,
      "id": 24844,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010032487252110",
      "location_areas_ids": [],
      "owner_name": "ANGLADE GHISLAIN",
      "phone_number": "+33 982582328",
      "postal_code": "12000",
      "siren": "539030106",
      "siret": "53903010600014",
      "status": "G",
      "store_name": "Boulangerie au Four Gourmand",
      "street": "avenue de Toulouse",
      "street_number": 66,
      "turnover": 450000,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DESVRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067542,
      "email": null,
      "id": 24847,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016794252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321915363",
      "postal_code": "62240",
      "siren": "478211196",
      "siret": "47821119600025",
      "status": "G",
      "store_name": "Boulangerie Carpentier",
      "street": "place Leon Blum",
      "street_number": 32,
      "turnover": 306000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PERPIGNAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067546,
      "email": null,
      "id": 24850,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468544921",
      "postal_code": "66000",
      "siren": "535284889",
      "siret": "53528488900016",
      "status": "P",
      "store_name": "Boulangerie Les Gourmands Disent...",
      "street": "rue Pascal Marie Agasse",
      "street_number": 79,
      "turnover": 150000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE SUR GESSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067549,
      "email": null,
      "id": 24853,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561886141",
      "postal_code": "31350",
      "siren": "522055284",
      "siret": "52205528400023",
      "status": "G",
      "store_name": "Boulangerie le Coin des Gourmets",
      "street": "rue Porte de Dessus",
      "street_number": null,
      "turnover": 460000,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WITRY LES REIMS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067555,
      "email": null,
      "id": 24857,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326970337",
      "postal_code": "51420",
      "siren": "429494529",
      "siret": "42949452900036",
      "status": "M",
      "store_name": "Boulangerie Marest",
      "street": "rue de la Paix",
      "street_number": 8,
      "turnover": 339308,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RASTEAU",
      "client_creation_date": "13-11-2009",
      "closing_days_ids": [],
      "datlinq_code": 1067566,
      "email": null,
      "id": 24864,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "begani",
      "phone_number": "04-90622884",
      "postal_code": "84110",
      "siren": "517943239",
      "siret": "51794323900023",
      "status": "P",
      "store_name": "Boulangerie au Fournil dee Sabine",
      "street": "rue du Vieux Moulin",
      "street_number": 1,
      "turnover": 218000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONT PRES CHAMBORD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067567,
      "email": null,
      "id": 24865,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 254707232",
      "postal_code": "41250",
      "siren": "488625401",
      "siret": "48862540100028",
      "status": "P",
      "store_name": "Boulangerie la Chabardiere",
      "street": "rue de la Chabardiere",
      "street_number": 33,
      "turnover": 230000,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST AUNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067574,
      "email": null,
      "id": 24867,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010006967252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467708256",
      "postal_code": "34130",
      "siren": "524480365",
      "siret": "52448036500013",
      "status": "M",
      "store_name": "Boulangerie Js Delices et Traditions",
      "street": "avenue des Costieres",
      "street_number": 475,
      "turnover": 180000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BLOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067575,
      "email": "f.durasnel@gmail.com",
      "id": 24868,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003797252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 254780922",
      "postal_code": "41000",
      "siren": "538122029",
      "siret": "53812202900019",
      "status": "G",
      "store_name": "Boulangerie Durasnel",
      "street": "rue Porte Chartraine",
      "street_number": 53,
      "turnover": 300000,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PUYLOUBIER",
      "client_creation_date": "21-8-2008",
      "closing_days_ids": [],
      "datlinq_code": 1067577,
      "email": null,
      "id": 24870,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-42663786",
      "postal_code": "13114",
      "siren": "507612356",
      "siret": "50761235600018",
      "status": "P",
      "store_name": "Boulangerie Feb la Gourmandine",
      "street": "avenue Francis Meano",
      "street_number": 6,
      "turnover": 90500,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE BOUPERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067580,
      "email": null,
      "id": 24872,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1339D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-51914173",
      "postal_code": "85510",
      "siren": "533741286",
      "siret": "53374128600017",
      "status": "M",
      "store_name": "Boulangerie l'Atelier des Délices",
      "street": "rue General de Gaulle",
      "street_number": 13,
      "turnover": 210000,
      "user_id": 153,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GOURNAY EN BRAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067584,
      "email": null,
      "id": 24874,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "76620",
      "siren": "534419098",
      "siret": "53441909800015",
      "status": "P",
      "store_name": "Boulangerie Lemitre Mickael",
      "street": "avenue de la 1ere Armee",
      "street_number": 28,
      "turnover": 180000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GARGAS",
      "client_creation_date": "1-7-2007",
      "closing_days_ids": [],
      "datlinq_code": 1067592,
      "email": null,
      "id": 24879,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0631F001",
      "location_areas_ids": [],
      "owner_name": "Ballere Mathieu",
      "phone_number": "04-90745491",
      "postal_code": "84400",
      "siren": "498777663",
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Les Gourmandises de Fontaine",
      "street": "quartier la Grande Fontaine",
      "street_number": null,
      "turnover": 174000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALENSOLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067593,
      "email": null,
      "id": 24880,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Gauthier",
      "phone_number": "04-92748101",
      "postal_code": "04210",
      "siren": "491201174",
      "siret": "49120117400019",
      "status": "P",
      "store_name": "Boulangerie Le Palais D'Or",
      "street": "place de la Fontaine",
      "street_number": null,
      "turnover": 283000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTCEAU LES MINES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067600,
      "email": null,
      "id": 24885,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010025790252110",
      "location_areas_ids": [],
      "owner_name": "PEGUESSE",
      "phone_number": "+33 385581877",
      "postal_code": "71300",
      "siren": "539027433",
      "siret": "53902743300017",
      "status": "M",
      "store_name": "Boulangerie Peguesse",
      "street": "rue de la Coudraie",
      "street_number": 58,
      "turnover": 200000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TREDANIEL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067604,
      "email": null,
      "id": 24889,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-96735350",
      "postal_code": "22510",
      "siren": "510945900",
      "siret": "51094590000015",
      "status": "P",
      "store_name": "Boulangerie Versabeau",
      "street": "Centre Commercial l Enseigne",
      "street_number": null,
      "turnover": 200000,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLE DI PIETRABUGNO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067633,
      "email": null,
      "id": 3520,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-95331603",
      "postal_code": "20200",
      "siren": "525255592",
      "siret": "52525559200012",
      "status": "P",
      "store_name": "Pizza Pietrabugno",
      "street": "hameau Guaitella",
      "street_number": 67,
      "turnover": 10000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIRANDEVILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067688,
      "email": null,
      "id": 3521,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 670935354",
      "postal_code": "50690",
      "siren": "530743467",
      "siret": "53074346700017",
      "status": "EMPTY_STATUS",
      "store_name": "Seb Pizza",
      "street": "le Moulin",
      "street_number": 3,
      "turnover": null,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GAVRAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067694,
      "email": null,
      "id": 24902,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233614079",
      "postal_code": "50450",
      "siren": "348982638",
      "siret": "34898263800036",
      "status": "G",
      "store_name": "Boulangerie Huze",
      "street": "rue de la Liberation",
      "street_number": 27,
      "turnover": 310000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTSECRET CLAIREFOUGERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067715,
      "email": null,
      "id": 24903,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233667095",
      "postal_code": "61800",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "Boulangerie aux Epis de Bles",
      "street": "Grande Rue",
      "street_number": 23,
      "turnover": 275000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SARTROUVILLE",
      "client_creation_date": "1-1-2012",
      "closing_days_ids": [],
      "datlinq_code": 1067832,
      "email": null,
      "id": 24905,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R8685001",
      "location_areas_ids": [],
      "owner_name": "BOUALI",
      "phone_number": "000-000",
      "postal_code": "78500",
      "siren": "505124560",
      "siret": "50512456000010",
      "status": "P",
      "store_name": "Boulangerie Patisserie du Plateau",
      "street": "boulevard Henri Barbusse",
      "street_number": 153,
      "turnover": 240000,
      "user_id": 96,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTERRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067846,
      "email": null,
      "id": 3522,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47252525",
      "postal_code": "92000",
      "siren": "519113005",
      "siret": "51911300500010",
      "status": "P",
      "store_name": "Cesar Pizza",
      "street": "avenue Georges Clemenceau",
      "street_number": 14,
      "turnover": 210000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DAMPIERRE SUR SALON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067854,
      "email": null,
      "id": 24908,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010549252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 384671041",
      "postal_code": "70180",
      "siren": "527634687",
      "siret": "52763468700026",
      "status": "M",
      "store_name": "Boulangerie Goiset",
      "street": "rue Sainte Catherine",
      "street_number": 15,
      "turnover": 220000,
      "user_id": 411,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAINT-QUENTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067864,
      "email": "atout-pains@orange.fr",
      "id": 24909,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 323641056",
      "postal_code": "02100",
      "siren": "529488520",
      "siret": "52948852000022",
      "status": "G",
      "store_name": "Boulangerie Atouts Pains",
      "street": "Rue de la Chaussée Romaine",
      "street_number": 4,
      "turnover": 808000,
      "user_id": 397,
      "working_days_amount": null
    }
  ]
}

Validation #636

Failure

The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:

  • The property '#/customers/880/average_ticket' of type number did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/customers/880/average_ticket' of type number did not match the following type: string - anyOf #1: - The property '#/customers/880/average_ticket' of type number did not match the following type: null

JSON Schema

{
  "additionalProperties": false,
  "description": "Automatically generated (please edit me)",
  "properties": {
    "customers": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "attractivity_poles_ids": {
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "average_ticket": {
            "anyOf": [
              {
                "pattern": "(^[+-]?(?:0|[1-9]\\d*)(?:\\.(?:\\d*[1-9]|0))?)$",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "city": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "client_creation_date": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "closing_days_ids": {
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "datlinq_code": {
            "type": "integer"
          },
          "email": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "id": {
            "type": "integer"
          },
          "is_deleted": {
            "description": "Customer deleted status in database (true if customer does not appear in the last csv synchronisation)",
            "type": "boolean"
          },
          "is_prospect": {
            "anyOf": [
              {
                "description": "Customer prospect status (true if customer does not have client_gmp = true is csv synchronisation)",
                "type": "boolean"
              },
              {
                "type": "null"
              }
            ]
          },
          "is_restaurant_place": {
            "anyOf": [
              {
                "type": "boolean"
              },
              {
                "type": "null"
              }
            ]
          },
          "local_id": {
            "anyOf": [
              {
                "description": "Customer local id (if customer has a local id, that means he is not a prospect anymore)",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "location_areas_ids": {
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "owner_name": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "phone_number": {
            "anyOf": [
              {
                "format": "datetime",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "postal_code": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "siren": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "siret": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "status": {
            "anyOf": [
              {
                "enum": [
                  "EMPTY_STATUS",
                  "P",
                  "M",
                  "G"
                ],
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "store_name": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "street": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "street_number": {
            "anyOf": [
              {
                "type": "integer"
              },
              {
                "type": "null"
              }
            ]
          },
          "turnover": {
            "anyOf": [
              {
                "type": "integer"
              },
              {
                "type": "null"
              }
            ]
          },
          "user_id": {
            "type": "integer"
          },
          "working_days_amount": {
            "anyOf": [
              {
                "type": "integer"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "required": [
          "attractivity_poles_ids",
          "average_ticket",
          "city",
          "client_creation_date",
          "closing_days_ids",
          "datlinq_code",
          "email",
          "id",
          "is_deleted",
          "is_prospect",
          "is_restaurant_place",
          "local_id",
          "location_areas_ids",
          "owner_name",
          "phone_number",
          "postal_code",
          "siren",
          "siret",
          "status",
          "store_name",
          "street",
          "street_number",
          "turnover",
          "user_id",
          "working_days_amount"
        ],
        "type": "object"
      },
      "type": "array"
    },
    "meta": {
      "properties": {
        "limit_value": {
          "type": "integer"
        },
        "total_pages": {
          "type": "integer"
        },
        "update_date": {
          "format": "datetime",
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "required": [
    "customers"
  ],
  "title": "Customer - ShortCustomer",
  "type": "object"
}

JSON instance

{
  "customers": [
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST DENIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890291,
      "email": null,
      "id": 1763,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48091255",
      "postal_code": "93200",
      "siren": "403052111",
      "siret": "40305211100164",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "rue Jean Jaures",
      "street_number": 3,
      "turnover": null,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST OUEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890300,
      "email": null,
      "id": 15213,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-40110527",
      "postal_code": "93400",
      "siren": "330344177",
      "siret": "33034417700051",
      "status": "M",
      "store_name": "Boulangerie Debure",
      "street": "place de la Republique",
      "street_number": 2,
      "turnover": 330000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOBIGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890303,
      "email": null,
      "id": 15215,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "Z0094001",
      "location_areas_ids": [],
      "owner_name": "KLAI ELLAFI MOUNIRA",
      "phone_number": "01-48321579",
      "postal_code": "93000",
      "siren": "413364365",
      "siret": "41336436500010",
      "status": "G",
      "store_name": "Boulangerie Ellafi Mounira",
      "street": "cite Jean Gremillon",
      "street_number": 8,
      "turnover": 300496,
      "user_id": 74,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GAGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890316,
      "email": null,
      "id": 15225,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "TROUFFLARD PASCAL, MICHEL",
      "phone_number": "01-43810902",
      "postal_code": "93220",
      "siren": "789814332",
      "siret": "78981433200019",
      "status": "P",
      "store_name": "Boulangerie le Fournil de la Gare",
      "street": "avenue Jean Jaures",
      "street_number": 71,
      "turnover": 220000,
      "user_id": 74,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA COURNEUVE",
      "client_creation_date": "1-1-1991",
      "closing_days_ids": [],
      "datlinq_code": 890345,
      "email": null,
      "id": 15243,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R2593001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-49370777",
      "postal_code": "93120",
      "siren": "380537829",
      "siret": "38053782900018",
      "status": "G",
      "store_name": "Boulangerie Sep",
      "street": "boulevard Pasteur",
      "street_number": 40,
      "turnover": 790000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAMPIGNY SUR MARNE",
      "client_creation_date": "1990",
      "closing_days_ids": [],
      "datlinq_code": 890355,
      "email": null,
      "id": 15250,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1500C001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48800712",
      "postal_code": "94500",
      "siren": "793765173",
      "siret": "79376517300018",
      "status": "G",
      "store_name": "Boulangerie Araujo",
      "street": "rue Moliere",
      "street_number": 29,
      "turnover": 850000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FONTENAY SOUS BOIS",
      "client_creation_date": "2011",
      "closing_days_ids": [],
      "datlinq_code": 890364,
      "email": null,
      "id": 15258,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R6186001",
      "location_areas_ids": [],
      "owner_name": "Marteau",
      "phone_number": "01-48738111",
      "postal_code": "94120",
      "siren": "479144479",
      "siret": "47914447900017",
      "status": "G",
      "store_name": "Boulangerie Au Petit Duc",
      "street": "avenue du Val de Fontenay",
      "street_number": 9,
      "turnover": 720000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAISONS ALFORT",
      "client_creation_date": "2-3-2012",
      "closing_days_ids": [],
      "datlinq_code": 890366,
      "email": null,
      "id": 15260,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Bernard tournier",
      "phone_number": "000-000",
      "postal_code": "94700",
      "siren": "511755597",
      "siret": "51175559700024",
      "status": "M",
      "store_name": "Boulangerie aux Delices de Maisons Alfort",
      "street": "avenue de la Republique",
      "street_number": 17,
      "turnover": 458000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEJUIF",
      "client_creation_date": "1-1-2004",
      "closing_days_ids": [],
      "datlinq_code": 890368,
      "email": null,
      "id": 15262,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R7763001",
      "location_areas_ids": [],
      "owner_name": "BEN ARFA",
      "phone_number": "01-46784762",
      "postal_code": "94800",
      "siren": "480830025",
      "siret": "48083002500015",
      "status": "M",
      "store_name": "Boulangerie Ben Arfa",
      "street": "place Paul Eluard",
      "street_number": 13,
      "turnover": 200000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VINCENNES",
      "client_creation_date": "2012",
      "closing_days_ids": [],
      "datlinq_code": 890369,
      "email": null,
      "id": 15263,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "N0929001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43288847",
      "postal_code": "94300",
      "siren": "491688966",
      "siret": "49168896600010",
      "status": "G",
      "store_name": "Boulangerie Benedicte et Ludovic Petit",
      "street": "rue Clement Vienot",
      "street_number": 4,
      "turnover": 650000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALFORTVILLE",
      "client_creation_date": "1990",
      "closing_days_ids": [],
      "datlinq_code": 890370,
      "email": null,
      "id": 15264,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0676G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-20960496",
      "postal_code": "94140",
      "siren": "399526045",
      "siret": "39952604500014",
      "status": "M",
      "store_name": "Boulangerie Biscuit d'Or",
      "street": "quai Jean Baptiste Clement",
      "street_number": 32,
      "turnover": 327000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "IVRY SUR SEINE",
      "client_creation_date": "1-1-2003",
      "closing_days_ids": [],
      "datlinq_code": 890373,
      "email": null,
      "id": 15267,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R2747001",
      "location_areas_ids": [],
      "owner_name": "BOUKCHIM",
      "phone_number": "07-69065355",
      "postal_code": "94200",
      "siren": "440934446",
      "siret": "44093444600012",
      "status": "M",
      "store_name": "Boulangerie Boukhchim",
      "street": "rue Gabriel Peri",
      "street_number": 90,
      "turnover": 300000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA QUEUE EN BRIE",
      "client_creation_date": "2004",
      "closing_days_ids": [],
      "datlinq_code": 890377,
      "email": null,
      "id": 15271,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "10667001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45767705",
      "postal_code": "94510",
      "siren": "478587959",
      "siret": "47858795900014",
      "status": "G",
      "store_name": "Boulangerie Guerin",
      "street": "rue Jean Jaures",
      "street_number": 38,
      "turnover": 722000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CRETEIL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890380,
      "email": null,
      "id": 1773,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48992727",
      "postal_code": "94000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "allee Parmentier",
      "street_number": 6,
      "turnover": null,
      "user_id": 81,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLENEUVE LE ROI",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890394,
      "email": null,
      "id": 15281,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R6020001",
      "location_areas_ids": [],
      "owner_name": "davory",
      "phone_number": "01-45974312",
      "postal_code": "94290",
      "siren": "488184508",
      "siret": "48818450800015",
      "status": "P",
      "store_name": "Boulangerie Davory",
      "street": "rue de la Mairie",
      "street_number": 9,
      "turnover": 340000,
      "user_id": 81,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "IVRY SUR SEINE",
      "client_creation_date": "1-1-1995",
      "closing_days_ids": [],
      "datlinq_code": 890395,
      "email": null,
      "id": 15282,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Miroslawa",
      "phone_number": "01-46728500",
      "postal_code": "94200",
      "siren": "348832247",
      "siret": "34883224700012",
      "status": "P",
      "store_name": "Boulangerie de Ville Miroslawa",
      "street": "bd Paul Vaillant Couturier",
      "street_number": 126,
      "turnover": 45000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MAUR DES FOSSES",
      "client_creation_date": "2001",
      "closing_days_ids": [],
      "datlinq_code": 890397,
      "email": null,
      "id": 15284,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R7241001",
      "location_areas_ids": [],
      "owner_name": "Lundi mardi",
      "phone_number": "01-48830784",
      "postal_code": "94100",
      "siren": "441515715",
      "siret": "44151571500015",
      "status": "G",
      "store_name": "Boulangerie Desjardins",
      "street": "avenue du Raincy",
      "street_number": 4,
      "turnover": 480000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VINCENNES",
      "client_creation_date": "2010",
      "closing_days_ids": [],
      "datlinq_code": 890399,
      "email": null,
      "id": 15286,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43282511",
      "postal_code": "94300",
      "siren": "452232721",
      "siret": "45223272100012",
      "status": "M",
      "store_name": "Boulangerie Douceurs Et Plaisirs De Vincennes",
      "street": "rue de Fontenay",
      "street_number": 83,
      "turnover": 450000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MAUR DES FOSSES",
      "client_creation_date": "2015",
      "closing_days_ids": [],
      "datlinq_code": 890417,
      "email": null,
      "id": 15300,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-77853811",
      "postal_code": "94210",
      "siren": "424161180",
      "siret": "42416118000015",
      "status": "P",
      "store_name": "Boulangerie la Chaumette",
      "street": "avenue du Bac",
      "street_number": 23,
      "turnover": 173000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MAUR DES FOSSES",
      "client_creation_date": "2007",
      "closing_days_ids": [],
      "datlinq_code": 890427,
      "email": null,
      "id": 15308,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0838E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-49769195",
      "postal_code": "94210",
      "siren": "389388885",
      "siret": "38938888500011",
      "status": "P",
      "store_name": "Le Fournil des Gourmands",
      "street": "avenue du Centenaire",
      "street_number": 127,
      "turnover": 380,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BRY SUR MARNE",
      "client_creation_date": "2010",
      "closing_days_ids": [],
      "datlinq_code": 890456,
      "email": null,
      "id": 15327,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48810013",
      "postal_code": "94360",
      "siren": "492446331",
      "siret": "49244633100018",
      "status": "P",
      "store_name": "Boulangerie Tenesi",
      "street": "Grande Rue Charles de Gaulle",
      "street_number": 39,
      "turnover": 580000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FONTENAY SOUS BOIS",
      "client_creation_date": "1999",
      "closing_days_ids": [],
      "datlinq_code": 890460,
      "email": null,
      "id": 15329,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48768887",
      "postal_code": "94120",
      "siren": "324139369",
      "siret": "32413936900023",
      "status": "P",
      "store_name": "Boulangerie Vallot",
      "street": "place du General Leclerc",
      "street_number": 7,
      "turnover": 150000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTIGNY LES CORMEILLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890468,
      "email": null,
      "id": 15337,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R5153001",
      "location_areas_ids": [],
      "owner_name": "Djeema",
      "phone_number": "01-39979212",
      "postal_code": "95370",
      "siren": "452270184",
      "siret": "45227018400016",
      "status": "P",
      "store_name": "Boulangerie aux Croissants d'Argent",
      "street": "residence de la Gare",
      "street_number": 12,
      "turnover": 210000,
      "user_id": 80,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PONTOISE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890544,
      "email": null,
      "id": 15398,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R8692001",
      "location_areas_ids": [],
      "owner_name": "Olivier Guillaume",
      "phone_number": "01-34241117",
      "postal_code": "95300",
      "siren": "508340205",
      "siret": "50834020500014",
      "status": "G",
      "store_name": "Boulangerie au Pain de Pontoise",
      "street": "av du General Gabriel Delarue",
      "street_number": 10,
      "turnover": 708000,
      "user_id": 78,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FRAIZE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 891375,
      "email": null,
      "id": 15405,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "88230",
      "siren": "798729109",
      "siret": "79872910900016",
      "status": "P",
      "store_name": "Boulangerie Du Four au Moulin",
      "street": "rue du General Ingold",
      "street_number": 15,
      "turnover": 140000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RAUCOURT ET FLABA",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 891982,
      "email": null,
      "id": 15410,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 324267140",
      "postal_code": "08450",
      "siren": "790963623",
      "siret": "79096362300018",
      "status": "P",
      "store_name": "Boulangerie Brule",
      "street": "rue de l Eglise",
      "street_number": 6,
      "turnover": 220000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "1992-01-01",
      "closing_days_ids": [],
      "datlinq_code": 892574,
      "email": "ce.0060033d@ac-nice.fr",
      "id": 199,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0166C001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93971200",
      "postal_code": "06000",
      "siren": "324538560",
      "siret": "32453856000081",
      "status": "P",
      "store_name": "Lycée Honoré d'Estienne d'Orves",
      "street": "avenue d Estienne d Orves",
      "street_number": 13,
      "turnover": 40000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "REIMS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 894382,
      "email": null,
      "id": 15420,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326849293",
      "postal_code": "51100",
      "siren": "488206517",
      "siret": "48820651700010",
      "status": "M",
      "store_name": "Boulangerie Case à Pains",
      "street": "place du Forum",
      "street_number": 5,
      "turnover": 600000,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CLAIR SUR L ELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 894511,
      "email": null,
      "id": 15421,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010031934252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233058624",
      "postal_code": "50680",
      "siren": "539639708",
      "siret": "53963970800012",
      "status": "G",
      "store_name": "Boulangerie Patisserie Saint Clair Sur L'Elle",
      "street": "rue de la Liberation",
      "street_number": 7,
      "turnover": 312000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JEAN DE MONTS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 896028,
      "email": null,
      "id": 15428,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "85160",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Brioche Vendeenne",
      "street": "rue Georges Clemenceau",
      "street_number": 9,
      "turnover": null,
      "user_id": 157,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHALINDREY",
      "client_creation_date": "2014-02-01",
      "closing_days_ids": [],
      "datlinq_code": 902653,
      "email": null,
      "id": 15449,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0010035393252110",
      "location_areas_ids": [],
      "owner_name": "Duc",
      "phone_number": "+33 967028646",
      "postal_code": "52600",
      "siren": "840098164",
      "siret": "84009816400014",
      "status": "M",
      "store_name": "Boulangerie aux Delices des Sorciers",
      "street": "rue de la Republique",
      "street_number": 60,
      "turnover": 260000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST BENOIT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 915305,
      "email": null,
      "id": 39917,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-49434432",
      "postal_code": "86280",
      "siren": "482340973",
      "siret": "48234097300999",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Marie Blachere",
      "street": "rue de la Varenne",
      "street_number": null,
      "turnover": null,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOURGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 920068,
      "email": null,
      "id": 32653,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R7292001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-48241263",
      "postal_code": "18000",
      "siren": "419217724",
      "siret": "41921772400014",
      "status": "M",
      "store_name": "Le Khedive",
      "street": "rue Moyenne",
      "street_number": 18,
      "turnover": 300000,
      "user_id": 51,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANNES",
      "client_creation_date": "1949-04-01",
      "closing_days_ids": [],
      "datlinq_code": 930675,
      "email": null,
      "id": 200,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0109W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93062304",
      "postal_code": "06400",
      "siren": "695520270",
      "siret": "69552027000015",
      "status": "P",
      "store_name": "Ernest Traiteur",
      "street": "rue Meynadier",
      "street_number": 52,
      "turnover": 10000,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAGNES SUR MER",
      "client_creation_date": "1999-01-18",
      "closing_days_ids": [],
      "datlinq_code": 930700,
      "email": null,
      "id": 202,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "M5138001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93310074",
      "postal_code": "06800",
      "siren": "421592783",
      "siret": "42159278300011",
      "status": "G",
      "store_name": "Patisserie Jamais Et Fils",
      "street": "boulevard de la Plage",
      "street_number": 83,
      "turnover": 730000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COUTICHES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 932554,
      "email": null,
      "id": 37335,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003343252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320616175",
      "postal_code": "59310",
      "siren": "452872252",
      "siret": "45287225200013",
      "status": "P",
      "store_name": "Duchateau Christophe",
      "street": "route Nationale",
      "street_number": 1247,
      "turnover": 50000,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 933365,
      "email": "le-havre@classcroute.com",
      "id": 41462,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235243446",
      "postal_code": "76600",
      "siren": "491566550",
      "siret": "49156655000019",
      "status": "EMPTY_STATUS",
      "store_name": "Class'Croute",
      "street": "rue Viviani",
      "street_number": 51,
      "turnover": null,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 937846,
      "email": null,
      "id": 15547,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91522685",
      "postal_code": "13002",
      "siren": "438155863",
      "siret": "43815586300022",
      "status": "P",
      "store_name": "Boulangerie la Fournee de Joseph",
      "street": "avenue Robert Schuman",
      "street_number": 61,
      "turnover": 128000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "METZ",
      "client_creation_date": "1995-01-01",
      "closing_days_ids": [],
      "datlinq_code": 938086,
      "email": null,
      "id": 15565,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016053252110",
      "location_areas_ids": [],
      "owner_name": "Laurent Clément",
      "phone_number": "+33 387750629",
      "postal_code": "57000",
      "siren": "400043030",
      "siret": "40004303000016",
      "status": "P",
      "store_name": "Boulangerie Laurent",
      "street": "rue des Allemands",
      "street_number": 82,
      "turnover": 150000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "1985-04-01",
      "closing_days_ids": [],
      "datlinq_code": 938155,
      "email": null,
      "id": 206,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "03070001",
      "location_areas_ids": [],
      "owner_name": "ANSELMI",
      "phone_number": "04-93877795",
      "postal_code": "06000",
      "siren": "332303718",
      "siret": "33230371800016",
      "status": "G",
      "store_name": "Boulangerie chez Maitre Pierre",
      "street": "rue Massena",
      "street_number": 41,
      "turnover": 488000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTPELLIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938251,
      "email": null,
      "id": 15578,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010028912252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 499625419",
      "postal_code": "34000",
      "siren": "527679104",
      "siret": "52767910400010",
      "status": "P",
      "store_name": "Boulangerie De L Aiguillerie",
      "street": "rue de l Aiguillerie",
      "street_number": 36,
      "turnover": 200000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "METZ",
      "client_creation_date": "1993-09-01",
      "closing_days_ids": [],
      "datlinq_code": 938254,
      "email": null,
      "id": 15579,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Hubert Lemoine",
      "phone_number": "+33 387521918",
      "postal_code": "57000",
      "siren": "392380994",
      "siret": "39238099400013",
      "status": "P",
      "store_name": "Boulangerie Banette Hubert Lemoine",
      "street": "rue de la Chapelle",
      "street_number": 38,
      "turnover": 1154000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "2009",
      "closing_days_ids": [],
      "datlinq_code": 938286,
      "email": null,
      "id": 15584,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78754729",
      "postal_code": "69008",
      "siren": "451245989",
      "siret": "45124598900012",
      "status": "P",
      "store_name": "Boulangerie la Mignardise",
      "street": "boulevard des Etats Unis",
      "street_number": 73,
      "turnover": 267000,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938341,
      "email": null,
      "id": 46572,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 648702238",
      "postal_code": "59800",
      "siren": "509476677",
      "siret": "50947667700018",
      "status": "P",
      "store_name": "La Boite à Sandwich",
      "street": "Boulevard Vauban",
      "street_number": 45,
      "turnover": 80000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRENOBLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938347,
      "email": null,
      "id": 15587,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76963298",
      "postal_code": "38100",
      "siren": "435293352",
      "siret": "43529335200017",
      "status": "M",
      "store_name": "Boulangerie Le Friand",
      "street": "cours Liberation Gal de Gaulle",
      "street_number": 159,
      "turnover": 359000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BORDEAUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938403,
      "email": null,
      "id": 1823,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56810100",
      "postal_code": "33000",
      "siren": "453637498",
      "siret": "45363749800024",
      "status": "EMPTY_STATUS",
      "store_name": "Karl",
      "street": "place du Parlement",
      "street_number": 6,
      "turnover": null,
      "user_id": 204,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAMBRAI",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938431,
      "email": null,
      "id": 36840,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 327818737",
      "postal_code": "59400",
      "siren": "498815844",
      "siret": "49881584400010",
      "status": "EMPTY_STATUS",
      "store_name": "Subway",
      "street": "place Aristide Briand",
      "street_number": 4,
      "turnover": null,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LORIENT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938445,
      "email": null,
      "id": 36852,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-97840432",
      "postal_code": "56100",
      "siren": "750777401",
      "siret": "75077740100019",
      "status": "EMPTY_STATUS",
      "store_name": "Subway",
      "street": "avenue du Faouedic",
      "street_number": 4,
      "turnover": null,
      "user_id": 262,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938447,
      "email": null,
      "id": 36854,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-72539273",
      "postal_code": "69009",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Subway",
      "street": "rue Saint Pierre de Vaise",
      "street_number": 36,
      "turnover": null,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NIORT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938466,
      "email": null,
      "id": 1824,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-49172080",
      "postal_code": "79000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Mie CalineÌÀ",
      "street": "place des Halles",
      "street_number": 1,
      "turnover": null,
      "user_id": 158,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAYEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938471,
      "email": null,
      "id": 1828,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231518743",
      "postal_code": "14400",
      "siren": "500511704",
      "siret": "50051170400016",
      "status": "M",
      "store_name": "La Mie Caline",
      "street": "rue Saint Malo",
      "street_number": 82,
      "turnover": 200000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BELFORT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938477,
      "email": null,
      "id": 1831,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 384285501",
      "postal_code": "90000",
      "siren": "487624512",
      "siret": "48762451200017",
      "status": "EMPTY_STATUS",
      "store_name": "La Mie Caline ",
      "street": "place du Docteur Georges Corbis",
      "street_number": 4,
      "turnover": null,
      "user_id": 411,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938482,
      "email": null,
      "id": 1833,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321104056",
      "postal_code": "62200",
      "siren": "434122149",
      "siret": "43412214900017",
      "status": "M",
      "store_name": "La Mie Caline ",
      "street": "Grande Rue",
      "street_number": 2,
      "turnover": 300000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATEAUROUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938493,
      "email": null,
      "id": 1840,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-54089064",
      "postal_code": "36000",
      "siren": "491896007",
      "siret": "49189600700011",
      "status": "EMPTY_STATUS",
      "store_name": "La Mie Caline ",
      "street": "rue Victor Hugo",
      "street_number": 45,
      "turnover": null,
      "user_id": 52,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938501,
      "email": null,
      "id": 36883,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561122592",
      "postal_code": "31000",
      "siren": "504703174",
      "siret": "50470317400020",
      "status": "EMPTY_STATUS",
      "store_name": "Subway",
      "street": "rue Leon Gambetta",
      "street_number": 41,
      "turnover": null,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NARBONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938522,
      "email": null,
      "id": 1859,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468497762",
      "postal_code": "11100",
      "siren": "500580220",
      "siret": "50058022000027",
      "status": "M",
      "store_name": "La Mie Caline ",
      "street": "cours de la Republique",
      "street_number": 7,
      "turnover": 350000,
      "user_id": 440,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RENNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938524,
      "email": null,
      "id": 1861,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-99315488",
      "postal_code": "35000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Mie CalineÌÀ",
      "street": "rue de Plelo",
      "street_number": 2,
      "turnover": null,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHOLET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938770,
      "email": null,
      "id": 1887,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241650799",
      "postal_code": "49300",
      "siren": "412473969",
      "siret": "41247396900019",
      "status": "M",
      "store_name": "La Mie Caline ",
      "street": "rue Nationale",
      "street_number": 142,
      "turnover": 200000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HETTANGE GRANDE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938879,
      "email": null,
      "id": 15631,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-82531064",
      "postal_code": "57330",
      "siren": "440163640",
      "siret": "44016364000012",
      "status": "P",
      "store_name": "Boulangerie Limacher",
      "street": "rue du General de Gaulle",
      "street_number": 14,
      "turnover": 405000,
      "user_id": 104,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-12-2008",
      "closing_days_ids": [],
      "datlinq_code": 938891,
      "email": null,
      "id": 15634,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0364A001",
      "location_areas_ids": [],
      "owner_name": "PIRES CHEIO",
      "phone_number": "09-53577295",
      "postal_code": "75009",
      "siren": "509251773",
      "siret": "50925177300016",
      "status": "P",
      "store_name": "Boulangerie Banette Cheio",
      "street": "rue des Martyrs",
      "street_number": 65,
      "turnover": 279080,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "2006-10-01",
      "closing_days_ids": [],
      "datlinq_code": 938915,
      "email": null,
      "id": 210,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "M1465001",
      "location_areas_ids": [],
      "owner_name": "LEFEVRE",
      "phone_number": "04-93856888",
      "postal_code": "06300",
      "siren": "492432711",
      "siret": "49243271100017",
      "status": "M",
      "store_name": "Boulangerie La Capeline",
      "street": "rue Centrale",
      "street_number": 12,
      "turnover": 150000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938952,
      "email": null,
      "id": 1895,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Kamel BESSAHA",
      "phone_number": "01-44820469",
      "postal_code": "75001",
      "siren": "482135852",
      "siret": "48213585200010",
      "status": "EMPTY_STATUS",
      "store_name": "Oh! Regalade Du Pont Neuf",
      "street": "quai du Louvre",
      "street_number": 20,
      "turnover": 362000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 939079,
      "email": null,
      "id": 1905,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43463255",
      "postal_code": "75012",
      "siren": "449448059",
      "siret": "44944805900013",
      "status": "P",
      "store_name": "L Esplanade",
      "street": "rue Jean Bouton",
      "street_number": 16,
      "turnover": 302000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 939085,
      "email": null,
      "id": 15650,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91487203",
      "postal_code": "13001",
      "siren": "394430409",
      "siret": "39443040900026",
      "status": "M",
      "store_name": "Boulangerie Praline",
      "street": "rue de Rome",
      "street_number": 167,
      "turnover": 230000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEURBANNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 939157,
      "email": null,
      "id": 1909,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Akbolat",
      "phone_number": "04-78949965",
      "postal_code": "69100",
      "siren": "478283427",
      "siret": "47828342700019",
      "status": "P",
      "store_name": "Boulangerie la Huche aux Pains",
      "street": "avenue Roger Salengro",
      "street_number": 78,
      "turnover": 222000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 939290,
      "email": null,
      "id": 15662,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "L5128001",
      "location_areas_ids": [],
      "owner_name": "BIRKA FATIHA",
      "phone_number": "+33 561596116",
      "postal_code": "31500",
      "siren": "508710308",
      "siret": "50871030800018",
      "status": "P",
      "store_name": "Le Fournil de l'Avenue",
      "street": "avenue de Lyon",
      "street_number": 11,
      "turnover": 82276,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PEYRUIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 878595,
      "email": null,
      "id": 5445,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92680979",
      "postal_code": "04310",
      "siren": "423609304",
      "siret": "42360930400013",
      "status": "P",
      "store_name": "Boulangerie les Alp Pains",
      "street": "place des Platanes",
      "street_number": 5,
      "turnover": 90000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 939329,
      "email": null,
      "id": 15666,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ZAROUI",
      "phone_number": "09-64283663",
      "postal_code": "75018",
      "siren": "340997527",
      "siret": "34099752700023",
      "status": "M",
      "store_name": "Boulangerie Zaroui",
      "street": "rue du Poteau",
      "street_number": 71,
      "turnover": 350000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": "2006",
      "closing_days_ids": [],
      "datlinq_code": 939410,
      "email": null,
      "id": 1923,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "RLA43001",
      "location_areas_ids": [],
      "owner_name": "KEMOUN",
      "phone_number": "04-91419267",
      "postal_code": "13006",
      "siren": "489841585",
      "siret": "48984158500024",
      "status": "M",
      "store_name": "Boulangerie le Fournil des Fourneaux",
      "street": "avenue de Toulon",
      "street_number": 71,
      "turnover": 600000,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 939946,
      "email": null,
      "id": 15697,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-46061826",
      "postal_code": "75018",
      "siren": "478432263",
      "siret": "47843226300018",
      "status": "G",
      "store_name": "Boulangerie le Pain en Fête",
      "street": "boulevard Barbes",
      "street_number": 69,
      "turnover": 555000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 939979,
      "email": null,
      "id": 46573,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-99427765",
      "postal_code": "13003",
      "siren": "451930432",
      "siret": "45193043200013",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Fournil du Racati",
      "street": "rue du Racati",
      "street_number": 2,
      "turnover": null,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHARTRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 940027,
      "email": null,
      "id": 32705,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010014573252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 237239457",
      "postal_code": "28000",
      "siren": "504390519",
      "siret": "50439051900016",
      "status": "P",
      "store_name": "Point Show",
      "street": "Place Des Epars",
      "street_number": 12,
      "turnover": 80000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THIONVILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 940297,
      "email": null,
      "id": 15717,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-82912416",
      "postal_code": "57100",
      "siren": "380626994",
      "siret": "38062699400087",
      "status": "EMPTY_STATUS",
      "store_name": "Snack Marius",
      "street": "avenue Albert 1er",
      "street_number": 23,
      "turnover": null,
      "user_id": 104,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 940443,
      "email": null,
      "id": 15731,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R8471001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "75003",
      "siren": "379124688",
      "siret": "37912468800019",
      "status": "M",
      "store_name": "Sandwicherie Ble d'Or",
      "street": "Rue Saint Martin",
      "street_number": 214,
      "turnover": 400000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 940668,
      "email": null,
      "id": 15748,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1470W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42713036",
      "postal_code": "75003",
      "siren": "312847296",
      "siret": "31284729600018",
      "status": "P",
      "store_name": "Boulangerie Mireille",
      "street": "rue Vieille du Temple",
      "street_number": 133,
      "turnover": 250000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 940793,
      "email": null,
      "id": 32707,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010014333252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386644465",
      "postal_code": "89100",
      "siren": "444687750",
      "siret": "44468775000018",
      "status": "P",
      "store_name": "Boulangerie Croque Chaud Piscine Tournesol",
      "street": "rue Etienne Mimard",
      "street_number": 7,
      "turnover": 100000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BITCHE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 940983,
      "email": null,
      "id": 15772,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010890252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387960104",
      "postal_code": "57230",
      "siren": "489229500",
      "siret": "48922950000017",
      "status": "P",
      "store_name": "Boulangerie Banette Martig",
      "street": "Rue Du Colonel Teyssier",
      "street_number": 8,
      "turnover": 200000,
      "user_id": 395,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HAYANGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 941087,
      "email": null,
      "id": 32708,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "45186001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-82842037",
      "postal_code": "57700",
      "siren": "392424115",
      "siret": "39242411500013",
      "status": "EMPTY_STATUS",
      "store_name": "Vichard Salon De The",
      "street": "rue General De Gaulle",
      "street_number": 1,
      "turnover": null,
      "user_id": 104,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LES LILAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 941133,
      "email": null,
      "id": 15793,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "THOMANN COLETTE MICHELINE",
      "phone_number": "01-43620063",
      "postal_code": "93260",
      "siren": "442376596",
      "siret": "44237659600015",
      "status": "P",
      "store_name": "Boulangerie Delices de Marion",
      "street": "rue de Paris",
      "street_number": 139,
      "turnover": 650000,
      "user_id": 74,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 941176,
      "email": null,
      "id": 15800,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "M0308001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43076305",
      "postal_code": "75012",
      "siren": "500806393",
      "siret": "50080639300012",
      "status": "P",
      "store_name": "Boulangerie Aux Delices De Dorith",
      "street": "rue de Charenton",
      "street_number": 269,
      "turnover": 324000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MULHOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 941347,
      "email": null,
      "id": 15822,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-62722673",
      "postal_code": "68200",
      "siren": "451286579",
      "siret": "45128657900045",
      "status": "G",
      "store_name": "Boulangerie Histoire de Pains",
      "street": "rue de Kingersheim",
      "street_number": 28,
      "turnover": 400000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GENTILLY",
      "client_creation_date": "1-1-2004",
      "closing_days_ids": [],
      "datlinq_code": 941424,
      "email": null,
      "id": 15825,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R9301001",
      "location_areas_ids": [],
      "owner_name": "DE SOUZA",
      "phone_number": "06-88203002",
      "postal_code": "94250",
      "siren": "500731690",
      "siret": "50073169000011",
      "status": "G",
      "store_name": "Boulangerie Pao Quente",
      "street": "rue des Champs Elysees",
      "street_number": 2,
      "turnover": 537470,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "KAYSERSBERG VIGNOBLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 943276,
      "email": null,
      "id": 50210,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-89473040",
      "postal_code": "68240",
      "siren": "335292967",
      "siret": "33529296700023",
      "status": "EMPTY_STATUS",
      "store_name": "Au Peche Mignon",
      "street": "rue du General de Gaulle",
      "street_number": 67,
      "turnover": null,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GUEUGNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 943326,
      "email": null,
      "id": 2002,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010030799252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 385258026",
      "postal_code": "71130",
      "siren": "804812543",
      "siret": "80481254300010",
      "status": "M",
      "store_name": "Pain et Cie",
      "street": "rue de la Convention",
      "street_number": 82,
      "turnover": 160000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GEVREY CHAMBERTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 943414,
      "email": null,
      "id": 2003,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 380341317",
      "postal_code": "21220",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Paul",
      "street": "station Auto Esso Gevrey Est",
      "street_number": null,
      "turnover": 10000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRIMAUD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 943799,
      "email": null,
      "id": 15932,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-94966297",
      "postal_code": "83310",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie la Tarte Tropezienne",
      "street": "quartier Saint Pons les Mures",
      "street_number": null,
      "turnover": null,
      "user_id": 185,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTAUROUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 943990,
      "email": null,
      "id": 15939,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Jasselin",
      "phone_number": "04-94767256",
      "postal_code": "83440",
      "siren": "414962076",
      "siret": "41496207600041",
      "status": "M",
      "store_name": "Boulangerie de l'Olivier",
      "street": "route Departementale 37",
      "street_number": 562,
      "turnover": 638000,
      "user_id": 185,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST BERTHEVIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 944085,
      "email": null,
      "id": 15948,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010009704252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243692599",
      "postal_code": "53940",
      "siren": "384606703",
      "siret": "38460670300021",
      "status": "G",
      "store_name": "Boulangerie la Tentation",
      "street": "avenue de la Liberation",
      "street_number": 63,
      "turnover": 430000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "APT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 944259,
      "email": null,
      "id": 38171,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-22412517",
      "postal_code": "84400",
      "siren": "351603162",
      "siret": "35160316200022",
      "status": "P",
      "store_name": "Snack la Fringale",
      "street": "rue Saint Pierre",
      "street_number": 36,
      "turnover": 73000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAVAILLON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 944260,
      "email": null,
      "id": 15958,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-85491566",
      "postal_code": "84300",
      "siren": "483856365",
      "siret": "48385636500018",
      "status": "G",
      "store_name": "Boulangerie la Fromenterie",
      "street": "avenue du Pont",
      "street_number": 110,
      "turnover": 352754,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAUREPAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 944304,
      "email": null,
      "id": 2009,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-30660092",
      "postal_code": "78310",
      "siren": "582150041",
      "siret": "58215004100827",
      "status": "EMPTY_STATUS",
      "store_name": "Pomme De Pain",
      "street": "avenue Gutenberg",
      "street_number": null,
      "turnover": null,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NEUVIC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 880154,
      "email": null,
      "id": 6705,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-55958152",
      "postal_code": "19160",
      "siren": "418817961",
      "siret": "41881796100018",
      "status": "M",
      "store_name": "Boulangerie Leger",
      "street": "rue de l Eglise",
      "street_number": null,
      "turnover": 180000,
      "user_id": 196,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": "2011-11-25",
      "closing_days_ids": [],
      "datlinq_code": 944533,
      "email": "leconcertgourmand@Orange.fr",
      "id": 15969,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010017865252110",
      "location_areas_ids": [],
      "owner_name": "Chevalier",
      "phone_number": "+33 320510815",
      "postal_code": "59800",
      "siren": "538332081",
      "siret": "53833208100016",
      "status": "G",
      "store_name": "Patisserie Boulangerie le Concert Gourmand",
      "street": "Rue de la Collégiale",
      "street_number": 7,
      "turnover": 415000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAIZIERES LES METZ",
      "client_creation_date": "2014-03-01",
      "closing_days_ids": [],
      "datlinq_code": 946290,
      "email": null,
      "id": 16030,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Benoît Merlin",
      "phone_number": "+33 387802595",
      "postal_code": "57280",
      "siren": "341092393",
      "siret": "34109239300022",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Merlin",
      "street": "Grand Rue",
      "street_number": 59,
      "turnover": 610000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAVAL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 946300,
      "email": null,
      "id": 16032,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243531585",
      "postal_code": "53000",
      "siren": "420321408",
      "siret": "42032140800023",
      "status": "M",
      "store_name": "Boulangerie Ribot",
      "street": "rue Echelle Marteau",
      "street_number": 6,
      "turnover": 150000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DIVES SUR MER",
      "client_creation_date": "2007-03-03",
      "closing_days_ids": [],
      "datlinq_code": 946630,
      "email": null,
      "id": 16078,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005234252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231247846",
      "postal_code": "14160",
      "siren": "494601487",
      "siret": "49460148700015",
      "status": "M",
      "store_name": "La Fournee des Delices",
      "street": "rue du General de Gaulle",
      "street_number": 95,
      "turnover": 641100,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DUNKERQUE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 946635,
      "email": null,
      "id": 32733,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016656252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328669748",
      "postal_code": "59140",
      "siren": "333840254",
      "siret": "33384025400010",
      "status": "P",
      "store_name": "Patisserie au Petit Mitron",
      "street": "place de la Gare",
      "street_number": 14,
      "turnover": 150000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": "2006-04-26",
      "closing_days_ids": [],
      "datlinq_code": 946806,
      "email": null,
      "id": 16091,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320061612",
      "postal_code": "59800",
      "siren": "423696574",
      "siret": "42369657400023",
      "status": "M",
      "store_name": "Boulangerie Debuiche",
      "street": "Rue du Faubourg de Roubaix",
      "street_number": 160,
      "turnover": 420000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTPELLIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 946843,
      "email": null,
      "id": 2040,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467751141",
      "postal_code": "34080",
      "siren": "488510876",
      "siret": "48851087600011",
      "status": "EMPTY_STATUS",
      "store_name": "Salade Rit",
      "street": "place Pierre Renaudel",
      "street_number": 3,
      "turnover": 79000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BULLY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 946981,
      "email": null,
      "id": 16113,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0172G001",
      "location_areas_ids": [],
      "owner_name": "Coquard",
      "phone_number": "04-74013632",
      "postal_code": "69210",
      "siren": "329511547",
      "siret": "32951154700021",
      "status": "M",
      "store_name": "Fournil des Pierres Dorées",
      "street": "route de Paris",
      "street_number": 30,
      "turnover": 350000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLICHY",
      "client_creation_date": "7-3-2014",
      "closing_days_ids": [],
      "datlinq_code": 947357,
      "email": "lesmignardises92@gmail.com",
      "id": 16145,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0742E001",
      "location_areas_ids": [],
      "owner_name": "AHMED CHMOURK",
      "phone_number": "01-47392858",
      "postal_code": "92110",
      "siren": "491043931",
      "siret": "49104393100014",
      "status": "M",
      "store_name": "Boulangerie les Mignardises",
      "street": "rue de Neuilly",
      "street_number": 70,
      "turnover": 500000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RETHEL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 947370,
      "email": "sarlbecue@wanadoo.fr",
      "id": 16147,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010161252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 324383323",
      "postal_code": "08300",
      "siren": "392049227",
      "siret": "39204922700011",
      "status": "M",
      "store_name": "Becue Boulangerie",
      "street": "place Hourtoule",
      "street_number": 2,
      "turnover": 539616,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PUID",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 947576,
      "email": null,
      "id": 32947,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "63280001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-29410539",
      "postal_code": "88210",
      "siren": "404067720",
      "siret": "40406772000015",
      "status": "P",
      "store_name": "Auberge du Raybois",
      "street": "Haut du Village",
      "street_number": 15,
      "turnover": 1000,
      "user_id": 109,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTERRE",
      "client_creation_date": "1-1-2014",
      "closing_days_ids": [],
      "datlinq_code": 947621,
      "email": null,
      "id": 16159,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "2158C001",
      "location_areas_ids": [],
      "owner_name": "HOUCINE SMIDA",
      "phone_number": "01-71974909",
      "postal_code": "92000",
      "siren": "800309163",
      "siret": "80030916300015",
      "status": "P",
      "store_name": "Boulangerie Delices de Nanterre",
      "street": "avenue du General Gallieni",
      "street_number": 6,
      "turnover": 250000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 947686,
      "email": null,
      "id": 2056,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 607084461",
      "postal_code": "62200",
      "siren": "400881835",
      "siret": "40088183500054",
      "status": "EMPTY_STATUS",
      "store_name": "Confiserie De Tradition",
      "street": "rue de Lille",
      "street_number": 48,
      "turnover": null,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BESANCON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 949082,
      "email": null,
      "id": 16210,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010505252110",
      "location_areas_ids": [],
      "owner_name": "RICOT",
      "phone_number": "+33 381808354",
      "postal_code": "25000",
      "siren": "524125614",
      "siret": "52412561400015",
      "status": "G",
      "store_name": "La Passion des Pains",
      "street": "rue de Belfort",
      "street_number": 67,
      "turnover": 535000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AMIENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 949580,
      "email": null,
      "id": 32743,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "A3101001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-22926515",
      "postal_code": "80000",
      "siren": "441720364",
      "siret": "44172036400021",
      "status": "P",
      "store_name": "Sandwicherie Comptoir les Encas",
      "street": "place Rene Goblet",
      "street_number": 45,
      "turnover": 60000,
      "user_id": 121,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": "2005-05-19",
      "closing_days_ids": [],
      "datlinq_code": 949905,
      "email": null,
      "id": 16240,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320978995",
      "postal_code": "59800",
      "siren": "434764957",
      "siret": "43476495700024",
      "status": "P",
      "store_name": "Boulangerie le Kennedy",
      "street": "Avenue du Président John F. Kennedy",
      "street_number": 43,
      "turnover": 160000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 950189,
      "email": null,
      "id": 2088,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561235830",
      "postal_code": "31200",
      "siren": "318906591",
      "siret": "31890659102252",
      "status": "EMPTY_STATUS",
      "store_name": "La Brioche Doree",
      "street": "chemin de Gabardie",
      "street_number": null,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RAMBOUILLET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 950408,
      "email": null,
      "id": 2093,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-34857351",
      "postal_code": "78120",
      "siren": "325509214",
      "siret": "32550921400020",
      "status": "EMPTY_STATUS",
      "store_name": "La Croissanterie",
      "street": "Centre Commercial Du Bel Air",
      "street_number": null,
      "turnover": null,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LANNION",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 950470,
      "email": null,
      "id": 2094,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-96483215",
      "postal_code": "22300",
      "siren": "322314410",
      "siret": "32231441000075",
      "status": "EMPTY_STATUS",
      "store_name": "La Croissanterie",
      "street": "Route De Perros",
      "street_number": null,
      "turnover": null,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST ETIENNE DE TULMONT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 950478,
      "email": null,
      "id": 16257,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010025401252140",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 563645043",
      "postal_code": "82410",
      "siren": "332555325",
      "siret": "33255532500049",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Maison Paga",
      "street": "rue du Tulmonenc",
      "street_number": 31,
      "turnover": null,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NIMES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 950611,
      "email": "lacroissanterie@lacroissanterie.fr",
      "id": 2102,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466646782",
      "postal_code": "30900",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "La Croissanterie",
      "street": "rue Andre Dupont",
      "street_number": 116,
      "turnover": 500000,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "OUISTREHAM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 950658,
      "email": null,
      "id": 46578,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231360140",
      "postal_code": "14150",
      "siren": "480400001",
      "siret": "48040000100016",
      "status": "P",
      "store_name": "Snack l'Americain",
      "street": "esplanade Alexandre Lofi",
      "street_number": null,
      "turnover": 50000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PLAISIR",
      "client_creation_date": "29/12/2006",
      "closing_days_ids": [],
      "datlinq_code": 950924,
      "email": null,
      "id": 16268,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ANCELET",
      "phone_number": "01-34810505",
      "postal_code": "78370",
      "siren": "491200119",
      "siret": "49120011900015",
      "status": "G",
      "store_name": "Boulangerie le Fournil A l'ancienne",
      "street": "centre Commercial Grand Plaisir",
      "street_number": null,
      "turnover": 728800,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SEDAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 878924,
      "email": null,
      "id": 5653,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 324291290",
      "postal_code": "08200",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Moullois Franck",
      "street": "place Turenne",
      "street_number": null,
      "turnover": 260000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ELBEUF",
      "client_creation_date": "2000-01-01",
      "closing_days_ids": [],
      "datlinq_code": 951085,
      "email": null,
      "id": 32749,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012087252110",
      "location_areas_ids": [],
      "owner_name": "PIERRE SYLVIE",
      "phone_number": "+33 235780664",
      "postal_code": "76500",
      "siren": "490286481",
      "siret": "49028648100018",
      "status": "P",
      "store_name": "Boulangerie Croq Chaud",
      "street": "rue des Martyrs",
      "street_number": 15,
      "turnover": 100000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ECULLY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 951622,
      "email": null,
      "id": 2125,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78331199",
      "postal_code": "69130",
      "siren": "310097092",
      "siret": "31009709201184",
      "status": "P",
      "store_name": "La Brioche Doree",
      "street": "chemin du Perollier",
      "street_number": null,
      "turnover": 387000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUVAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 951652,
      "email": null,
      "id": 16310,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-44452648",
      "postal_code": "60000",
      "siren": "493576094",
      "siret": "49357609400012",
      "status": "G",
      "store_name": "Boulangerie de la Cathedrale",
      "street": "rue Saint Pierre",
      "street_number": 71,
      "turnover": 240000,
      "user_id": 78,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TROYES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 952544,
      "email": null,
      "id": 16341,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010033100252110",
      "location_areas_ids": [],
      "owner_name": "GOBLET",
      "phone_number": "+33 325467914",
      "postal_code": "10000",
      "siren": "503035792",
      "siret": "50303579200012",
      "status": "P",
      "store_name": "Boulangerie Croustillant",
      "street": "Rue des Bas Trevois",
      "street_number": 23,
      "turnover": 122100,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AIRE SUR LA LYS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 952660,
      "email": null,
      "id": 16345,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BOURDON",
      "phone_number": "+33 321390048",
      "postal_code": "62120",
      "siren": "484055595",
      "siret": "48405559500017",
      "status": "M",
      "store_name": "Boulangerie Le Fournil De La Lys",
      "street": "rue du Bourg",
      "street_number": 38,
      "turnover": 200000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VITRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 952699,
      "email": null,
      "id": 2141,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-99728241",
      "postal_code": "35500",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Mie CalineÌÀ",
      "street": "Rue Garengeot",
      "street_number": 23,
      "turnover": null,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAUREPAS",
      "client_creation_date": "23-8-2006",
      "closing_days_ids": [],
      "datlinq_code": 952870,
      "email": null,
      "id": 16354,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R7150001",
      "location_areas_ids": [],
      "owner_name": "IMLAHI",
      "phone_number": "01-30666320",
      "postal_code": "78310",
      "siren": "491484879",
      "siret": "49148487900011",
      "status": "G",
      "store_name": "Boulangerie la Panetière aux Mille et une Saveur",
      "street": "place du Doubs",
      "street_number": 7,
      "turnover": 837300,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CESTAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953071,
      "email": null,
      "id": 16363,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "3189E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56215707",
      "postal_code": "33610",
      "siren": "453736068",
      "siret": "45373606800033",
      "status": "M",
      "store_name": "Boulangerie Le Moulin De Cestas",
      "street": "rue Valmon Agard",
      "street_number": 2,
      "turnover": 450000,
      "user_id": 206,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COMPIEGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953237,
      "email": null,
      "id": 16366,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R5266001",
      "location_areas_ids": [],
      "owner_name": "HAMARD GILLES",
      "phone_number": "03-44206478",
      "postal_code": "60200",
      "siren": "388712135",
      "siret": "38871213500028",
      "status": "G",
      "store_name": "Boulangerie la Seigneurie",
      "street": "rue des Capucins",
      "street_number": 14,
      "turnover": 800000,
      "user_id": 311,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURBEVOIE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953332,
      "email": null,
      "id": 2148,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47881940",
      "postal_code": "92400",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "Centre Commercial Charras",
      "street_number": null,
      "turnover": null,
      "user_id": 94,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953364,
      "email": null,
      "id": 32757,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013071252110",
      "location_areas_ids": [],
      "owner_name": "Pérez",
      "phone_number": "+33 561990126",
      "postal_code": "31000",
      "siren": "442398277",
      "siret": "44239827700024",
      "status": "G",
      "store_name": "Briocherie Des 3J",
      "street": "Rue De Bayard",
      "street_number": 70,
      "turnover": 860000,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953456,
      "email": null,
      "id": 16372,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010009832252110",
      "location_areas_ids": [],
      "owner_name": "SARRUS PHILIPPE",
      "phone_number": "+33 561213564",
      "postal_code": "31000",
      "siren": "415111665",
      "siret": "41511166500014",
      "status": "P",
      "store_name": "Patisserie le Gateautier",
      "street": "avenue Paul Sejourne",
      "street_number": 1,
      "turnover": 299000,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SCHWEIGHOUSE SUR MODER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953763,
      "email": null,
      "id": 16388,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "LAMEGER",
      "phone_number": "03-88727654",
      "postal_code": "67590",
      "siren": "400058913",
      "siret": "40005891300015",
      "status": "M",
      "store_name": "Boulangerie L'amandine",
      "street": "rue du General de Gaulle",
      "street_number": 42,
      "turnover": 450000,
      "user_id": 112,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AVIGNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953802,
      "email": null,
      "id": 2153,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "84000",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "Le Fournil des Roues",
      "street": "rue des Teinturiers",
      "street_number": 65,
      "turnover": 230000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE THOR",
      "client_creation_date": "01/2000",
      "closing_days_ids": [],
      "datlinq_code": 953857,
      "email": "sarl.gourmandise@laposte.net",
      "id": 16391,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Roisse",
      "phone_number": "04-90338795",
      "postal_code": "84250",
      "siren": "429036098",
      "siret": "42903609800029",
      "status": "M",
      "store_name": "Boulangerie Pains Et Gourmandises",
      "street": "place du 8 Mai et du 11 Novembre",
      "street_number": 6,
      "turnover": 281949,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PERRAY EN YVELINES",
      "client_creation_date": "11/09/2014",
      "closing_days_ids": [],
      "datlinq_code": 954077,
      "email": null,
      "id": 16402,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-34848005",
      "postal_code": "78610",
      "siren": "479507535",
      "siret": "479507535",
      "status": "P",
      "store_name": "Boulangerie Cosemans",
      "street": "rue de Chartres",
      "street_number": 2,
      "turnover": 380000,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 954301,
      "email": null,
      "id": 2162,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91672410",
      "postal_code": "13008",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "place Ernest Delibes",
      "street_number": 1,
      "turnover": null,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GENECH",
      "client_creation_date": "1993-06-11",
      "closing_days_ids": [],
      "datlinq_code": 954495,
      "email": null,
      "id": 16445,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0010011734252110",
      "location_areas_ids": [],
      "owner_name": "MONNIEZ CHRISTOPHE",
      "phone_number": "+33 320845025",
      "postal_code": "59242",
      "siren": "391297389",
      "siret": "39129738900010",
      "status": "G",
      "store_name": "Boulangerie au Moulin",
      "street": "rue de la Liberation",
      "street_number": 1118,
      "turnover": 375000,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THUMERIES",
      "client_creation_date": "2000-11-15",
      "closing_days_ids": [],
      "datlinq_code": 954521,
      "email": null,
      "id": 16452,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010002674252110",
      "location_areas_ids": [],
      "owner_name": "IDZIK STANISLAS",
      "phone_number": "+33 320869114",
      "postal_code": "59239",
      "siren": "433504990",
      "siret": "43350499000014",
      "status": "G",
      "store_name": "Boulangerie Idzik",
      "street": "rue Leon Blum",
      "street_number": 3,
      "turnover": 340000,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 954920,
      "email": null,
      "id": 16493,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93621039",
      "postal_code": "6300",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Multari",
      "street": "boulevard Jean Jaures",
      "street_number": 8,
      "turnover": null,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MULSANNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 955366,
      "email": null,
      "id": 16506,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010015852252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243428499",
      "postal_code": "72230",
      "siren": "437727191",
      "siret": "43772719100011",
      "status": "G",
      "store_name": "Boulangerie Dupont",
      "street": "centre Commercial des Rocheres",
      "street_number": null,
      "turnover": 450000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BALARUC LE VIEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 955645,
      "email": null,
      "id": 2190,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467691064",
      "postal_code": "34540",
      "siren": "324355205",
      "siret": "32435520500034",
      "status": "G",
      "store_name": "La Croissanterie",
      "street": "centre Commercial Carrefour",
      "street_number": null,
      "turnover": 800000,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 955725,
      "email": null,
      "id": 16513,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-37706731",
      "postal_code": "69007",
      "siren": "511242679",
      "siret": "51124267900013",
      "status": "P",
      "store_name": "Croq Pain",
      "street": "Place Gabriel Peri",
      "street_number": 12,
      "turnover": 140000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THIAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 955964,
      "email": null,
      "id": 2195,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45600458",
      "postal_code": "94320",
      "siren": "508892593",
      "siret": "50889259300015",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "centre commercial Carrefour",
      "street_number": null,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEFRANCHE SUR SAONE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 956554,
      "email": null,
      "id": 2222,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-74039744",
      "postal_code": "69400",
      "siren": "437589377",
      "siret": "43758937700021",
      "status": "EMPTY_STATUS",
      "store_name": "Au Fournil",
      "street": "rue Nationale",
      "street_number": 576,
      "turnover": null,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 956610,
      "email": null,
      "id": 2224,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235423613",
      "postal_code": "76600",
      "siren": "403052111",
      "siret": "40305211102079",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "centre commercial Rene Coty",
      "street_number": null,
      "turnover": null,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 956860,
      "email": null,
      "id": 2229,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45963515",
      "postal_code": "75009",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Brioche Doree",
      "street": "Rue De La Chaussee D Antin",
      "street_number": 56,
      "turnover": null,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "2002",
      "closing_days_ids": [],
      "datlinq_code": 957473,
      "email": null,
      "id": 2253,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1018F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78620163",
      "postal_code": "69003",
      "siren": "444340202",
      "siret": "44434020200019",
      "status": "P",
      "store_name": "Resto Confi",
      "street": "rue Villeroy",
      "street_number": 34,
      "turnover": 63000,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LABEGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 957506,
      "email": "toulouselabege@classcroute.com",
      "id": 41498,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561005050",
      "postal_code": "31670",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Class'croute",
      "street": "rue Pierre Gille de Gennes",
      "street_number": 1,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARCUEIL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 957594,
      "email": null,
      "id": 2257,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-57218939",
      "postal_code": "94110",
      "siren": "321716821",
      "siret": "32171682100053",
      "status": "EMPTY_STATUS",
      "store_name": "La Croissanterie",
      "street": "Centre commerciale Vache Noire",
      "street_number": null,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 957713,
      "email": null,
      "id": 16584,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42099968",
      "postal_code": "75018",
      "siren": "380214361",
      "siret": "38021436100012",
      "status": "P",
      "store_name": "Boulangerie Messedi",
      "street": "Rue Des Roses",
      "street_number": 22,
      "turnover": 350000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "11/2004",
      "closing_days_ids": [],
      "datlinq_code": 957776,
      "email": null,
      "id": 16589,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-46368711",
      "postal_code": "75020",
      "siren": "479467755",
      "siret": "47946775500019",
      "status": "G",
      "store_name": "Patisserie C B 4",
      "street": "avenue Gambetta",
      "street_number": 89,
      "turnover": 700000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 957807,
      "email": null,
      "id": 36915,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-24830071",
      "postal_code": "75012",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Subway",
      "street": "Rue De Reuilly",
      "street_number": 85,
      "turnover": null,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FOUQUIERES LES LENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958019,
      "email": null,
      "id": 32772,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016883252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321438976",
      "postal_code": "62740",
      "siren": "432442226",
      "siret": "43244222600010",
      "status": "P",
      "store_name": "Au Bon Accueil",
      "street": "Rue Roger Salengro",
      "street_number": 53,
      "turnover": 70000,
      "user_id": 416,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GEROGES DE DIDONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958075,
      "email": null,
      "id": 16595,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "LI527001",
      "location_areas_ids": [],
      "owner_name": "Desgris",
      "phone_number": "05-46939238",
      "postal_code": "17110",
      "siren": "325667442",
      "siret": "32566744200066",
      "status": "G",
      "store_name": "Boulangerie Degris",
      "street": "boulevard du Général Fresnal",
      "street_number": 18,
      "turnover": 650000,
      "user_id": 152,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "POITIERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958089,
      "email": null,
      "id": 2266,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-23022487",
      "postal_code": "86000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Mie CalineÌÀ",
      "street": "avenue De Paris",
      "street_number": 215,
      "turnover": null,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GOLBEY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958517,
      "email": null,
      "id": 16612,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Vinter",
      "phone_number": "03-29679554",
      "postal_code": "88190",
      "siren": "504963711",
      "siret": "50496371100024",
      "status": "M",
      "store_name": "Boulangerie Bothine",
      "street": "rue du General Leclerc",
      "street_number": 73,
      "turnover": 850000,
      "user_id": 109,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JOUY AUX ARCHES",
      "client_creation_date": "2014-01-01",
      "closing_days_ids": [],
      "datlinq_code": 958611,
      "email": null,
      "id": 16617,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0955E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 619709484",
      "postal_code": "57130",
      "siren": "800501652",
      "siret": "49949357500017",
      "status": "M",
      "store_name": "Boulangerie Histoire De Pains",
      "street": "Route De Metz",
      "street_number": 57,
      "turnover": 650000,
      "user_id": 395,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTPELLIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958756,
      "email": null,
      "id": 41504,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467723525",
      "postal_code": "34090",
      "siren": "434376653",
      "siret": "43437665300011",
      "status": "P",
      "store_name": "Boulangerie les Delices de Rimbaud",
      "street": "place Emile Combes",
      "street_number": 17,
      "turnover": 200000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROCHEFORT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958844,
      "email": null,
      "id": 33302,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "22172001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46832338",
      "postal_code": "17300",
      "siren": "514847888",
      "siret": "51484788800013",
      "status": "P",
      "store_name": "Snack Look Pizza",
      "street": "rue Gaston Baril",
      "street_number": 1,
      "turnover": 50000,
      "user_id": 155,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTBONNOT ST MARTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958856,
      "email": null,
      "id": 47649,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76448366",
      "postal_code": "38330",
      "siren": "492431168",
      "siret": "49243116800029",
      "status": "P",
      "store_name": "Boulangerie Epicuria",
      "street": "avenue de l Europe",
      "street_number": 1323,
      "turnover": 1,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958993,
      "email": null,
      "id": 16636,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40484850",
      "postal_code": "44000",
      "siren": "422051698",
      "siret": "42205169800021",
      "status": "P",
      "store_name": "La Boulangerie",
      "street": "allee Duquesne",
      "street_number": 4,
      "turnover": 264000,
      "user_id": 144,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TRITH ST LEGER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 959134,
      "email": null,
      "id": 38176,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010027390252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 662531252",
      "postal_code": "59125",
      "siren": "394169288",
      "siret": null,
      "status": "G",
      "store_name": "Sandwicherie aux Delices Trithois",
      "street": "rue de l Egalite",
      "street_number": null,
      "turnover": 375000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FROUZINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 959171,
      "email": null,
      "id": 16644,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561723493",
      "postal_code": "31270",
      "siren": "382403343",
      "siret": "38240334300033",
      "status": "P",
      "store_name": "Boulangerie Karin",
      "street": "avenue des Pyrenees",
      "street_number": 8,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VERSAILLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 959854,
      "email": null,
      "id": 32785,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R6141001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "78000",
      "siren": "487675969",
      "siret": "48767596900017",
      "status": "M",
      "store_name": "Boualngerie chez Juliette",
      "street": "rue Ducis",
      "street_number": 1,
      "turnover": 300000,
      "user_id": 96,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 959983,
      "email": null,
      "id": 16671,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "LUGOL JEAN MARC",
      "phone_number": "+33 561225905",
      "postal_code": "31000",
      "siren": "511725459",
      "siret": "51172545900016",
      "status": "M",
      "store_name": "Boulangerie O Délices d'Amandine",
      "street": "rue Leon Gambetta",
      "street_number": 17,
      "turnover": 522996,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 959997,
      "email": null,
      "id": 2305,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "75018",
      "siren": "479303836",
      "siret": "47930383600015",
      "status": "P",
      "store_name": "Croque Minute Gericot",
      "street": "rue du Mont Cenis",
      "street_number": 9,
      "turnover": 1000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SARZEAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960145,
      "email": null,
      "id": 32787,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "24826001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-97482247",
      "postal_code": "56370",
      "siren": "330405176",
      "siret": "33040517600034",
      "status": "M",
      "store_name": "Le Galichan",
      "street": "rue de la Corderie",
      "street_number": 8,
      "turnover": 150000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PRADES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960261,
      "email": null,
      "id": 16679,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468964410",
      "postal_code": "66500",
      "siren": "410865356",
      "siret": "0",
      "status": "G",
      "store_name": "Boulangerie la Justinette",
      "street": "rue Jean Jaures",
      "street_number": 10,
      "turnover": 310000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CADOLIVE",
      "client_creation_date": "10-11-2005",
      "closing_days_ids": [],
      "datlinq_code": 960268,
      "email": null,
      "id": 16683,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "bertochini",
      "phone_number": "000-000",
      "postal_code": "13950",
      "siren": "487530628",
      "siret": "48753062800022",
      "status": "P",
      "store_name": "Boulangerie Au Coin Provencal",
      "street": "Rue Du Village",
      "street_number": 12,
      "turnover": 139000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COLOMIERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960282,
      "email": null,
      "id": 16692,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013236252110",
      "location_areas_ids": [],
      "owner_name": "PONS",
      "phone_number": "+33 561783603",
      "postal_code": "31770",
      "siren": "413955055",
      "siret": "41395505500046",
      "status": "G",
      "store_name": "Boulangerie La Fougasse",
      "street": "rue d Auch",
      "street_number": 2,
      "turnover": 1431661,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ESPIRA DE L AGLY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960288,
      "email": null,
      "id": 16696,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010004926252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468622017",
      "postal_code": "66600",
      "siren": "507392967",
      "siret": "50739296700018",
      "status": "P",
      "store_name": "Boulangerie de l'Agly",
      "street": "rue du 4 Septembre",
      "street_number": 28,
      "turnover": 192000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BRISSAC LOIRE AUBANCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960301,
      "email": null,
      "id": 16704,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241912908",
      "postal_code": "49320",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie de l'Aubance",
      "street": "place des Freres de Montgolfier",
      "street_number": 4,
      "turnover": 320000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATILLON SUR CHALARONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960302,
      "email": null,
      "id": 16705,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467818563",
      "postal_code": "01400",
      "siren": "494262587",
      "siret": "49426258700012",
      "status": "P",
      "store_name": "Boulangerie aux Plaisirs Gourmands",
      "street": "rue Barrit",
      "street_number": 4,
      "turnover": 80000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA CROIX VALMER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960595,
      "email": null,
      "id": 16715,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010015248252110",
      "location_areas_ids": [],
      "owner_name": "CHRISTOPHE ROUX",
      "phone_number": "+33 494795797",
      "postal_code": "83420",
      "siren": "444892186",
      "siret": "44489218600057",
      "status": "M",
      "store_name": "Boulangerie Odysee Bleue (Roux)",
      "street": "rue Louis Martin",
      "street_number": 159,
      "turnover": 450000,
      "user_id": 451,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JUVISY SUR ORGE",
      "client_creation_date": "25-5-1992",
      "closing_days_ids": [],
      "datlinq_code": 960875,
      "email": null,
      "id": 32789,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1546C001",
      "location_areas_ids": [],
      "owner_name": "LOUATI Helene",
      "phone_number": "01-69217300",
      "postal_code": "91260",
      "siren": "387560873",
      "siret": "38756087300011",
      "status": "P",
      "store_name": "Intermarché Courdim",
      "street": "rue Camille Desmoulins",
      "street_number": 27,
      "turnover": 270600,
      "user_id": 84,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST NICOLAS LES CITEAUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960895,
      "email": null,
      "id": 16718,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010635252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 380613723",
      "postal_code": "21700",
      "siren": "794623827",
      "siret": "79462382700019",
      "status": "P",
      "store_name": "Boulangerie Remy",
      "street": "route de Citeaux",
      "street_number": 3,
      "turnover": 153000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA ROQUE D ANTHERON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961017,
      "email": null,
      "id": 16720,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-42505184",
      "postal_code": "13640",
      "siren": "349787432",
      "siret": "34978743200021",
      "status": "P",
      "store_name": "Au Peche Mignon",
      "street": "boulevard Adam de Craponne",
      "street_number": 18,
      "turnover": 30000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALLEROY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961199,
      "email": null,
      "id": 16722,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 382462117",
      "postal_code": "54910",
      "siren": "423227610",
      "siret": "42322761000015",
      "status": "P",
      "store_name": "Boulangerie Guilpain au Bon Pain",
      "street": "avenue Charles de Gaulle",
      "street_number": 52,
      "turnover": 200000,
      "user_id": 393,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHABLIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961202,
      "email": null,
      "id": 16723,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010000096252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386421028",
      "postal_code": "89800",
      "siren": "493259964",
      "siret": "49325996400010",
      "status": "G",
      "store_name": "Boulangerie Le Pilier De Chablis",
      "street": "rue du Mal de Lattre de Tassigny",
      "street_number": 6,
      "turnover": 440000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BERGUES",
      "client_creation_date": "2000-01-01",
      "closing_days_ids": [],
      "datlinq_code": 961203,
      "email": null,
      "id": 16724,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Franchois ",
      "phone_number": "+33 328686212",
      "postal_code": "59380",
      "siren": "524110558",
      "siret": "52411055800011",
      "status": "M",
      "store_name": "Boulangerie Franchois",
      "street": "rue Lamartine",
      "street_number": 6,
      "turnover": 420000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "UGINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961210,
      "email": "florian.allais@outlook.fr",
      "id": 258,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "SF023001",
      "location_areas_ids": [],
      "owner_name": "Allais",
      "phone_number": "04-79375760",
      "postal_code": "73400",
      "siren": "452065618",
      "siret": "45206561800012",
      "status": "P",
      "store_name": "Boulangerie La Floraline",
      "street": "avenue Paul Girod",
      "street_number": 40,
      "turnover": 220000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROMANS SUR ISERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961215,
      "email": null,
      "id": 16728,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-75020636",
      "postal_code": "26100",
      "siren": "442272381",
      "siret": "44227238100017",
      "status": "P",
      "store_name": "Boulangerie aux Galets de l'Isere",
      "street": "place Maurice Faure",
      "street_number": 7,
      "turnover": 120000,
      "user_id": 170,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GOBAIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961222,
      "email": null,
      "id": 16731,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 323528057",
      "postal_code": "02410",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie au Bon Pain",
      "street": "rue Lucas de Nehou",
      "street_number": 9,
      "turnover": 180000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURNEFEUILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961224,
      "email": null,
      "id": 16733,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561064906",
      "postal_code": "31170",
      "siren": "379498868",
      "siret": "37949886800023",
      "status": "P",
      "store_name": "Boulangerie le Petit Coquin",
      "street": "rue Gaston Doumergue",
      "street_number": 94,
      "turnover": 248800,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CRAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961227,
      "email": null,
      "id": 16735,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76077207",
      "postal_code": "38210",
      "siren": "451711428",
      "siret": "45171142800016",
      "status": "M",
      "store_name": "Boulangerie Maison Franchini",
      "street": "chemin de Montferrier",
      "street_number": 699,
      "turnover": 825000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLERMONT FERRAND",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961228,
      "email": null,
      "id": 16736,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ROUX",
      "phone_number": "04-73912572",
      "postal_code": "63000",
      "siren": "451323869",
      "siret": "45132386900011",
      "status": "P",
      "store_name": "Boulangerie La Pyramide",
      "street": "rue Ballainvilliers",
      "street_number": 48,
      "turnover": 177000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VENCE",
      "client_creation_date": "2003-10-22",
      "closing_days_ids": [],
      "datlinq_code": 961232,
      "email": null,
      "id": 16740,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93580564",
      "postal_code": "06140",
      "siren": "450656137",
      "siret": "45065613700012",
      "status": "P",
      "store_name": "Boulangerie Aux Saveurs Retrouvees",
      "street": "avenue Marechal Foch",
      "street_number": null,
      "turnover": 170000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST VICTORET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961233,
      "email": null,
      "id": 16741,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-42104302",
      "postal_code": "13730",
      "siren": "441207883",
      "siret": "44120788300014",
      "status": "M",
      "store_name": "Boulangerie Maitre Crousti",
      "street": "avenue Jacque Prevert",
      "street_number": null,
      "turnover": 513000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAMPIGNY SUR MARNE",
      "client_creation_date": "2012",
      "closing_days_ids": [],
      "datlinq_code": 961239,
      "email": null,
      "id": 16744,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0266C001",
      "location_areas_ids": [],
      "owner_name": "Hartoun",
      "phone_number": "01-45160056",
      "postal_code": "94500",
      "siren": "450800644",
      "siret": "45080064400012",
      "status": "G",
      "store_name": "Boulangerie La Rose Des Sables",
      "street": "Place rodin",
      "street_number": 2,
      "turnover": 420000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUMES DE VENISE",
      "client_creation_date": "19-7-2005",
      "closing_days_ids": [],
      "datlinq_code": 961251,
      "email": null,
      "id": 16754,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "bessac",
      "phone_number": "09-60061155",
      "postal_code": "84190",
      "siren": "343101457",
      "siret": "34310145700038",
      "status": "P",
      "store_name": "Boulangerie Bessac",
      "street": "avenue Raspail",
      "street_number": null,
      "turnover": 218000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PLATS",
      "client_creation_date": "2005-01-01",
      "closing_days_ids": [],
      "datlinq_code": 961255,
      "email": null,
      "id": 16756,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 475066818",
      "postal_code": "07300",
      "siren": "394789382",
      "siret": "39478938200022",
      "status": "P",
      "store_name": "Boulangerie Bruniere",
      "street": "le Village",
      "street_number": null,
      "turnover": 130000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GERGY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961256,
      "email": null,
      "id": 16757,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 385916198",
      "postal_code": "71590",
      "siren": "821232899",
      "siret": "82123289900012",
      "status": "P",
      "store_name": "Boulanger Secret des Pains",
      "street": "rue Louis Loranchet",
      "street_number": 2,
      "turnover": 150000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PERPIGNAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961257,
      "email": null,
      "id": 16758,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005959252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468347554",
      "postal_code": "66000",
      "siren": "801868845",
      "siret": "80186884500026",
      "status": "M",
      "store_name": "Boulangerie Au Levain D Helios Les Pains D",
      "street": "boulevard Georges Clemenceau",
      "street_number": 21,
      "turnover": 200000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PLOUMILLIAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 880362,
      "email": null,
      "id": 6880,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "23305001",
      "location_areas_ids": [],
      "owner_name": "ROLLAND DAVID",
      "phone_number": "02-96354438",
      "postal_code": "22300",
      "siren": "442917662",
      "siret": "44291766200011",
      "status": "P",
      "store_name": "Boulangerie au Pain Plie",
      "street": "rue Croix Oges",
      "street_number": 6,
      "turnover": 272854,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LABOURSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961265,
      "email": null,
      "id": 16765,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011825252110",
      "location_areas_ids": [],
      "owner_name": "BIGET",
      "phone_number": "+33 321012773",
      "postal_code": "62113",
      "siren": "492858980",
      "siret": "49285898000021",
      "status": "P",
      "store_name": "Boulangerie La Bourse Aux Pains",
      "street": "rue Achille Larue",
      "street_number": 14,
      "turnover": 140000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLECHENEVE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961273,
      "email": null,
      "id": 16768,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-74701586",
      "postal_code": "69770",
      "siren": "380799494",
      "siret": "38079949400022",
      "status": "P",
      "store_name": "Lyonnaise de Boulangerie Gastronomique",
      "street": "parc d Activites",
      "street_number": null,
      "turnover": 17000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CARCASSONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961275,
      "email": null,
      "id": 16770,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468252701",
      "postal_code": "11000",
      "siren": "424358141",
      "siret": "42435814100010",
      "status": "M",
      "store_name": "Boulangerie Bimas",
      "street": "avenue Arthur Mullot",
      "street_number": 7,
      "turnover": 309000,
      "user_id": 440,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST SERNIN SUR RANCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961277,
      "email": null,
      "id": 16772,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "AMALRIC MARIE FRANCOISE",
      "phone_number": "+33 565996006",
      "postal_code": "12380",
      "siren": "414209742",
      "siret": "41420974200017",
      "status": "M",
      "store_name": "Boulangerie Maison Nespoulous",
      "street": "place du Fort",
      "street_number": null,
      "turnover": 362000,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST PORQUIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961292,
      "email": null,
      "id": 16778,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010030926252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 563687575",
      "postal_code": "82700",
      "siren": "352996383",
      "siret": "35299638300035",
      "status": "M",
      "store_name": "Boulangerie Chafi Nordine",
      "street": "Route départementale 813",
      "street_number": null,
      "turnover": 290000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SALINDRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961297,
      "email": null,
      "id": 16782,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466856178",
      "postal_code": "30340",
      "siren": "402390744",
      "siret": "40239074400017",
      "status": "P",
      "store_name": "Patisserie Galia",
      "street": "rue Henri Merle",
      "street_number": 79,
      "turnover": 100000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COMBS LA VILLE",
      "client_creation_date": "1-5-2004",
      "closing_days_ids": [],
      "datlinq_code": 961309,
      "email": null,
      "id": 16789,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R6219001",
      "location_areas_ids": [],
      "owner_name": "COURTALON",
      "phone_number": "01-60024725",
      "postal_code": "77380",
      "siren": "453609562",
      "siret": "45360956200013",
      "status": "G",
      "store_name": "Boulangerie la Frangine (Atelier des Pains)",
      "street": "rue Pierre et Marie Curie",
      "street_number": 0,
      "turnover": 456000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NIORT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961312,
      "email": null,
      "id": 16791,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "22109001",
      "location_areas_ids": [],
      "owner_name": "CASAJOUX",
      "phone_number": "05-59243783",
      "postal_code": "79000",
      "siren": "504122151",
      "siret": "50412215100013",
      "status": "M",
      "store_name": "Boulangerie La Farandole Des Pains",
      "street": "rue Vaumorin",
      "street_number": 2,
      "turnover": 680000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "L ISLE SUR LA SORGUE",
      "client_creation_date": "7-12-1998",
      "closing_days_ids": [],
      "datlinq_code": 961343,
      "email": null,
      "id": 16814,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Tudury eric",
      "phone_number": "04-90380371",
      "postal_code": "84800",
      "siren": "344885504",
      "siret": "34488550400037",
      "status": "P",
      "store_name": "Boulangerie Le Petit Palais",
      "street": "route de Petit Palais",
      "street_number": 353,
      "turnover": 110000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PACY SUR EURE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961354,
      "email": null,
      "id": 16822,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232360207",
      "postal_code": "27120",
      "siren": "482809134",
      "siret": "48280913400018",
      "status": "M",
      "store_name": "Boulangerie Ballay",
      "street": "rue Edouard Isambard",
      "street_number": 79,
      "turnover": 550000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ORAISON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961357,
      "email": null,
      "id": 16824,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92786294",
      "postal_code": "04700",
      "siren": "419763933",
      "siret": "41976393300019",
      "status": "P",
      "store_name": "Boulangerie Kyrilis Olivier",
      "street": "place Clement Plane",
      "street_number": null,
      "turnover": 90000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROSULT",
      "client_creation_date": "2006-02-23",
      "closing_days_ids": [],
      "datlinq_code": 961359,
      "email": null,
      "id": 16826,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010027991252110",
      "location_areas_ids": [],
      "owner_name": "VERMEILLE",
      "phone_number": "+33 327355702",
      "postal_code": "59230",
      "siren": "817519242",
      "siret": "81751924200017",
      "status": "M",
      "store_name": "Le Fournil de Rosult",
      "street": "rue de l Adjudant Dufour",
      "street_number": 45,
      "turnover": 260000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST ANTHEME",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961378,
      "email": null,
      "id": 16841,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "SL001001",
      "location_areas_ids": [],
      "owner_name": "SBEGHEN",
      "phone_number": "04-73954068",
      "postal_code": "63660",
      "siren": "431528181",
      "siret": "43152818100024",
      "status": "M",
      "store_name": "Boulangerie Sbeghen",
      "street": "place de l Aubepin",
      "street_number": null,
      "turnover": 350000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961382,
      "email": null,
      "id": 16845,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91051989",
      "postal_code": "13013",
      "siren": "489816843",
      "siret": "48981684300028",
      "status": "M",
      "store_name": "Boulangerie Frigoli",
      "street": "rue Albert Einstein",
      "street_number": 305,
      "turnover": 602000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FEURS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961394,
      "email": null,
      "id": 16854,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-77261011",
      "postal_code": "42110",
      "siren": "381919315",
      "siret": "38191931500030",
      "status": "P",
      "store_name": "Boulangerie Levrat Philippe",
      "street": "avenue Jean Jaures",
      "street_number": 16,
      "turnover": 200000,
      "user_id": 62,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST ROMAIN DE COLBOSC",
      "client_creation_date": "2006-09-18",
      "closing_days_ids": [],
      "datlinq_code": 961396,
      "email": null,
      "id": 16855,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235205276",
      "postal_code": "76430",
      "siren": "434307872",
      "siret": null,
      "status": "G",
      "store_name": "Boulangerie Lucas",
      "street": "place Theodule Benoist",
      "street_number": 18,
      "turnover": 750000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA PORTE DU DER",
      "client_creation_date": "2006-11-22",
      "closing_days_ids": [],
      "datlinq_code": 961402,
      "email": null,
      "id": 16859,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Monteleon",
      "phone_number": "+33 325042159",
      "postal_code": "52220",
      "siren": "492908793",
      "siret": "49290879300010",
      "status": "P",
      "store_name": "Boulangerie Monteleone",
      "street": "rue de l Isle",
      "street_number": 4,
      "turnover": 350000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961404,
      "email": null,
      "id": 16860,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010031646252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235264033",
      "postal_code": "76600",
      "siren": "809997034",
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Tiphaigne",
      "street": "rue de la Vallee",
      "street_number": 110,
      "turnover": 180000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DANNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961409,
      "email": null,
      "id": 16865,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010029254252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321327100",
      "postal_code": "62187",
      "siren": "493540991",
      "siret": "49354099100012",
      "status": "M",
      "store_name": "Boulangerie Mangard",
      "street": "rue du Stade",
      "street_number": 22,
      "turnover": 500000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURNONSEC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961417,
      "email": null,
      "id": 16873,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467699384",
      "postal_code": "34660",
      "siren": "492339908",
      "siret": "49233990800013",
      "status": "P",
      "store_name": "Boulangerie Le Petrin De Steph Anne",
      "street": "rue de la Cave Cooperative",
      "street_number": 10,
      "turnover": 192000,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LEVIGNAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961418,
      "email": null,
      "id": 16874,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010008425252110",
      "location_areas_ids": [],
      "owner_name": "HOLTZ",
      "phone_number": "+33 561857581",
      "postal_code": "31530",
      "siren": "478876253",
      "siret": "47887625300020",
      "status": "P",
      "store_name": "Boulangerie Holtz",
      "street": "avenue de la Republique",
      "street_number": 50,
      "turnover": 306000,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TERGNIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961426,
      "email": null,
      "id": 16880,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "FRANCOIS JEROME",
      "phone_number": "+33 323570216",
      "postal_code": "02700",
      "siren": "433251972",
      "siret": "43325197200025",
      "status": "P",
      "store_name": "Boulangerie Francois",
      "street": "boulevard Gambetta",
      "street_number": 14,
      "turnover": 150000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JULIEN EN BORN",
      "client_creation_date": "2007-08-30",
      "closing_days_ids": [],
      "datlinq_code": 961441,
      "email": null,
      "id": 16892,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RP565001",
      "location_areas_ids": [],
      "owner_name": "PAREAU",
      "phone_number": "05-58428019",
      "postal_code": "40170",
      "siren": "499996049",
      "siret": "49999604900023",
      "status": "M",
      "store_name": "Boulangerie Pareau Regis",
      "street": "Route des lacs",
      "street_number": null,
      "turnover": 264910,
      "user_id": 210,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOUARGAT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 880493,
      "email": null,
      "id": 6995,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-96431380",
      "postal_code": "22540",
      "siren": "432323806",
      "siret": "43232380600013",
      "status": "P",
      "store_name": "Boulangerie Scaviner",
      "street": "avenue des Prunus",
      "street_number": 16,
      "turnover": 270000,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CONDE SUR L ESCAUT",
      "client_creation_date": "2007-10-01",
      "closing_days_ids": [],
      "datlinq_code": 961443,
      "email": null,
      "id": 16893,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SANTRAINE",
      "phone_number": "+33 327401052",
      "postal_code": "59163",
      "siren": "500630538",
      "siret": "50063053800014",
      "status": "P",
      "store_name": "Boulangerie Santraine",
      "street": "rue Gambetta",
      "street_number": 32,
      "turnover": 150000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST SEVER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961444,
      "email": null,
      "id": 16894,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "laborde",
      "phone_number": "05-58765335",
      "postal_code": "40500",
      "siren": "500798509",
      "siret": "50079850900013",
      "status": "P",
      "store_name": "Boulangerie la Rose des Sables",
      "street": "zone Artisanale Escales",
      "street_number": null,
      "turnover": 400000,
      "user_id": 211,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STRAZEELE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961447,
      "email": null,
      "id": 16897,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328435606",
      "postal_code": "59270",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie au Pain à l'Ancienne",
      "street": "Route d'Hazebrouck",
      "street_number": 26,
      "turnover": 110000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PORTES",
      "client_creation_date": "2012-01-01",
      "closing_days_ids": [],
      "datlinq_code": 961456,
      "email": null,
      "id": 16901,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010029217252110",
      "location_areas_ids": [],
      "owner_name": "Argaud",
      "phone_number": "+33 609613690",
      "postal_code": "30530",
      "siren": "422062075",
      "siret": "42206207500029",
      "status": "M",
      "store_name": "Boulangerie la Paillasse Cevenole (Argaud)",
      "street": "rue de la Mairie",
      "street_number": 7,
      "turnover": 125000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA SENTINELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961463,
      "email": null,
      "id": 16906,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 327464131",
      "postal_code": "59174",
      "siren": "504287483",
      "siret": "50428748300011",
      "status": "M",
      "store_name": "Boulangerie Boutoille",
      "street": "rue Roger Salengro",
      "street_number": 71,
      "turnover": 280000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "POISSY",
      "client_creation_date": "1-1-2008",
      "closing_days_ids": [],
      "datlinq_code": 961468,
      "email": null,
      "id": 16909,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0418F001",
      "location_areas_ids": [],
      "owner_name": "CHEVRIEUX",
      "phone_number": "01-30740518",
      "postal_code": "78300",
      "siren": "814256020",
      "siret": "48384608500015",
      "status": "G",
      "store_name": "Boulangerie au Pere Petrin",
      "street": "boulevard Devaux",
      "street_number": 4,
      "turnover": 700000,
      "user_id": 96,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MELUN",
      "client_creation_date": "1-12-2006",
      "closing_days_ids": [],
      "datlinq_code": 961478,
      "email": null,
      "id": 16919,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ZITRINI",
      "phone_number": "01-64520834",
      "postal_code": "77000",
      "siren": "493440481",
      "siret": "49344048100015",
      "status": "P",
      "store_name": "Boulangerie le Cygne Blanc",
      "street": "place Saint Jean",
      "street_number": 23,
      "turnover": 280000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GERMAIN DU PUCH",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961488,
      "email": null,
      "id": 16926,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-57240056",
      "postal_code": "33750",
      "siren": "500682984",
      "siret": "50068298400017",
      "status": "P",
      "store_name": "Boulangerie Revidat",
      "street": "route de Creon",
      "street_number": 10,
      "turnover": 300000,
      "user_id": 202,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "2008-10-01",
      "closing_days_ids": [],
      "datlinq_code": 961490,
      "email": null,
      "id": 16928,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DANJOUX",
      "phone_number": "04-93891213",
      "postal_code": "06300",
      "siren": "508806320",
      "siret": "50880632000018",
      "status": "P",
      "store_name": "Boulangerie Danjoux",
      "street": "rue Monseigneur Alfred Daumas",
      "street_number": 42,
      "turnover": 270000,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAILLAGOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961493,
      "email": null,
      "id": 16931,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468041007",
      "postal_code": "66800",
      "siren": "410391601",
      "siret": "41039160100029",
      "status": "P",
      "store_name": "Boulangerie Ribas Joseph",
      "street": "rue des Ceretes",
      "street_number": 3,
      "turnover": 150000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALES",
      "client_creation_date": "2009-01-01",
      "closing_days_ids": [],
      "datlinq_code": 961505,
      "email": "alespainauburtin@hotmail.fr",
      "id": 16942,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010004437252110",
      "location_areas_ids": [],
      "owner_name": "auburtin",
      "phone_number": "+33 466867170",
      "postal_code": "30100",
      "siren": "509552378",
      "siret": "50955237800010",
      "status": "G",
      "store_name": "Boulangerie Ales Pain (Auburtin)",
      "street": "Avenue Jean Perrin",
      "street_number": 170,
      "turnover": 650000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAROST",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961508,
      "email": null,
      "id": 16944,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R6976001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-48262717",
      "postal_code": "18290",
      "siren": "493703268",
      "siret": "49370326800018",
      "status": "M",
      "store_name": "Boulangerie Aguilar",
      "street": "Grande Rue",
      "street_number": 40,
      "turnover": 250000,
      "user_id": 52,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAMPIGNY SUR MARNE",
      "client_creation_date": "2003",
      "closing_days_ids": [],
      "datlinq_code": 961509,
      "email": null,
      "id": 16945,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R2117001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "94500",
      "siren": "434885703",
      "siret": "43488570300018",
      "status": "M",
      "store_name": "Boulangerie Le Coin Des Gourmands",
      "street": "avenue Elisa Mercoeur",
      "street_number": 2,
      "turnover": 300000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAVAILLON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961510,
      "email": null,
      "id": 16946,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-90780751",
      "postal_code": "84300",
      "siren": "479252736",
      "siret": "47925273600018",
      "status": "M",
      "store_name": "Boulangerie l Etoile du Delice",
      "street": "place Castil Blaze",
      "street_number": 57,
      "turnover": 239000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARGENTEUIL",
      "client_creation_date": "1-1-2012",
      "closing_days_ids": [],
      "datlinq_code": 961513,
      "email": null,
      "id": 16948,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1632D001",
      "location_areas_ids": [],
      "owner_name": "BEN KHALIFAT",
      "phone_number": "01-34103896",
      "postal_code": "95100",
      "siren": "539607721",
      "siret": "53960772100013",
      "status": "P",
      "store_name": "Boulangerie l'Epi Dore",
      "street": "boulevard Jean Allemane",
      "street_number": 116,
      "turnover": 150000,
      "user_id": 79,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JUVISY SUR ORGE",
      "client_creation_date": "2-5-2005",
      "closing_days_ids": [],
      "datlinq_code": 961518,
      "email": null,
      "id": 16950,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0302E001",
      "location_areas_ids": [],
      "owner_name": "SABRI",
      "phone_number": "01-69214809",
      "postal_code": "91260",
      "siren": "482080603",
      "siret": "48208060300012",
      "status": "M",
      "store_name": "Boulangerie Sabri",
      "street": "avenue Gabriel Peri",
      "street_number": 72,
      "turnover": 342400,
      "user_id": 84,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PANTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961521,
      "email": null,
      "id": 16952,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "Z0146001",
      "location_areas_ids": [],
      "owner_name": "SELLAMI KARIMA",
      "phone_number": "000-000",
      "postal_code": "93500",
      "siren": "511581670",
      "siret": "51158167000011",
      "status": "P",
      "store_name": "Boulangerie Guyot",
      "street": "rue Mehul",
      "street_number": 32,
      "turnover": 180000,
      "user_id": 74,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CHRISTOL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961522,
      "email": null,
      "id": 16953,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "RAZON",
      "phone_number": "+33 467544526",
      "postal_code": "34400",
      "siren": "503680621",
      "siret": "50368062100011",
      "status": "P",
      "store_name": "Boulangerie Razon Freres",
      "street": "rue de la Barbe",
      "street_number": 3,
      "turnover": 130000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLENEUVE LE ROI",
      "client_creation_date": "1-1-2011",
      "closing_days_ids": [],
      "datlinq_code": 961523,
      "email": null,
      "id": 16954,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "FERREIRA",
      "phone_number": "01-49614019",
      "postal_code": "94290",
      "siren": "530751783",
      "siret": "53075178300016",
      "status": "P",
      "store_name": "Boulangerie Petrin d'Antan",
      "street": "avenue de la Republique",
      "street_number": 47,
      "turnover": 375000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MAUR DES FOSSES",
      "client_creation_date": "2001",
      "closing_days_ids": [],
      "datlinq_code": 961524,
      "email": null,
      "id": 16955,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48852606",
      "postal_code": "94100",
      "siren": "480707603",
      "siret": "48070760300027",
      "status": "G",
      "store_name": "Boulangerie Luna Traiteur",
      "street": "rue Ledru Rollin",
      "street_number": 127,
      "turnover": 13879000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LONGVIC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961527,
      "email": null,
      "id": 50449,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Zanneta",
      "phone_number": "+33 380660340",
      "postal_code": "21600",
      "siren": "524520517",
      "siret": "52452051700029",
      "status": "G",
      "store_name": "Boulangerie Maison Roger",
      "street": "rue du Professeur Louis Neel",
      "street_number": 12,
      "turnover": 7615290,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FORCALQUIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961537,
      "email": null,
      "id": 16961,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92745121",
      "postal_code": "04300",
      "siren": "509344578",
      "siret": "50934457800018",
      "status": "P",
      "store_name": "Boulangerie Une Fournee En Provence",
      "street": "place Martial Sicard",
      "street_number": 11,
      "turnover": 173000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MOYENMOUTIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961539,
      "email": null,
      "id": 16963,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "66211001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-29415411",
      "postal_code": "88420",
      "siren": "492018338",
      "siret": "49201833800011",
      "status": "M",
      "store_name": "Boulangerie Levy",
      "street": "rue de l Hotel de Ville",
      "street_number": 8,
      "turnover": 200000,
      "user_id": 109,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAUZET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961541,
      "email": null,
      "id": 16964,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-75467149",
      "postal_code": "26740",
      "siren": "447553231",
      "siret": "44755323100021",
      "status": "P",
      "store_name": "Boulangerie Garrione",
      "street": "chemin de Ronde",
      "street_number": 7,
      "turnover": 186000,
      "user_id": 170,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PONCHEL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961560,
      "email": null,
      "id": 16977,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010001604252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321411500",
      "postal_code": "62390",
      "siren": "432690063",
      "siret": "43269006300016",
      "status": "G",
      "store_name": "Boulangerie Lagache",
      "street": "Route de berck",
      "street_number": 3,
      "turnover": 400000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MANTES LA JOLIE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961590,
      "email": "guerridazine@Hotmail.com",
      "id": 17001,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1921F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-34769955",
      "postal_code": "78200",
      "siren": "511832347",
      "siret": "51183234700013",
      "status": "P",
      "store_name": "Boulangerie Guerrida",
      "street": "rue Jean Baptiste Corot",
      "street_number": 18,
      "turnover": 195000,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MELLECEY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961601,
      "email": null,
      "id": 17007,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012552252110",
      "location_areas_ids": [],
      "owner_name": "BUATOIS",
      "phone_number": "+33 385980417",
      "postal_code": "71640",
      "siren": "450378484",
      "siret": "45037848400015",
      "status": "M",
      "store_name": "Le Fournil de Mellecey",
      "street": "Route de la Vallée",
      "street_number": 616,
      "turnover": 150000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALLAUCH",
      "client_creation_date": "24-8-1988",
      "closing_days_ids": [],
      "datlinq_code": 961603,
      "email": null,
      "id": 17009,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91071348",
      "postal_code": "13190",
      "siren": "345358022",
      "siret": "34535802200019",
      "status": "P",
      "store_name": "Boulangerie Perugini",
      "street": "rue Pierre Queirel",
      "street_number": 20,
      "turnover": 10000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COUTANCES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961644,
      "email": null,
      "id": 17033,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233450408",
      "postal_code": "50200",
      "siren": "351441886",
      "siret": "35144188600014",
      "status": "M",
      "store_name": "Boulangerie Lemonnier",
      "street": "rue Geoffroy de Montbray",
      "street_number": 5,
      "turnover": 290000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FIENNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961697,
      "email": null,
      "id": 17063,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011661252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 960128376",
      "postal_code": "62132",
      "siren": "453592057",
      "siret": "45359205700013",
      "status": "M",
      "store_name": "Boulangerie Ivart",
      "street": "rue de l Eglise",
      "street_number": 242,
      "turnover": 480000,
      "user_id": 422,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TARASCON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961705,
      "email": null,
      "id": 2314,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "13150",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Les Mille Et Un Delices",
      "street": "rue Neuve",
      "street_number": 1,
      "turnover": null,
      "user_id": 177,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962062,
      "email": "lyonpartdieu@classcroute.com",
      "id": 41513,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-37430101",
      "postal_code": "69003",
      "siren": "499530681",
      "siret": "49953068100018",
      "status": "EMPTY_STATUS",
      "store_name": "Class'croute",
      "street": "rue Lavoisier",
      "street_number": 12,
      "turnover": 0,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HYERES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962260,
      "email": null,
      "id": 32797,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "V0404001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-94353592",
      "postal_code": "83400",
      "siren": "480206895",
      "siret": "48020689500017",
      "status": "P",
      "store_name": "Patisserie Pblonna",
      "street": "PLACE CLEMENCEAU",
      "street_number": 1,
      "turnover": 350000,
      "user_id": 188,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-1-2014",
      "closing_days_ids": [],
      "datlinq_code": 962402,
      "email": null,
      "id": 17097,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Achack",
      "phone_number": "000-000",
      "postal_code": "13011",
      "siren": "383272994",
      "siret": "38327299400047",
      "status": "P",
      "store_name": "Boulangerie Achchak",
      "street": "boulevard Saint Marcel",
      "street_number": 165,
      "turnover": 120000,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962598,
      "email": null,
      "id": 17109,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43723953",
      "postal_code": "75012",
      "siren": "501176275",
      "siret": "50117627500011",
      "status": "M",
      "store_name": "Boulangerie Aux Delices De Paris",
      "street": "rue de Reuilly",
      "street_number": 33,
      "turnover": 484900,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURNEFEUILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962655,
      "email": null,
      "id": 17115,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010004627252110",
      "location_areas_ids": [],
      "owner_name": "MATHEU",
      "phone_number": "+33 561865683",
      "postal_code": "31170",
      "siren": "501343412",
      "siret": "50134341200018",
      "status": "M",
      "store_name": "Boulangerie le Colibri",
      "street": "boulevard Vincent Auriol",
      "street_number": 49,
      "turnover": 344160,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURCOING",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962791,
      "email": null,
      "id": 17123,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320260028",
      "postal_code": "59200",
      "siren": "314187048",
      "siret": "31418704800132",
      "status": "P",
      "store_name": "Boulangerie Tout Chaud",
      "street": "rue Saint Jacques",
      "street_number": 2,
      "turnover": 65000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JEAN CAP FERRAT",
      "client_creation_date": "2009-06-01",
      "closing_days_ids": [],
      "datlinq_code": 962838,
      "email": null,
      "id": 17141,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BONFIGLI",
      "phone_number": "04-93760575",
      "postal_code": "06230",
      "siren": "512419730",
      "siret": "51241973000019",
      "status": "P",
      "store_name": "Boulangerie Banette Du Port",
      "street": "avenue Jean Mermoz",
      "street_number": 5,
      "turnover": 350000,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAUJON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962928,
      "email": null,
      "id": 17192,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46224068",
      "postal_code": "17600",
      "siren": "443204862",
      "siret": "44320486200033",
      "status": "P",
      "store_name": "Boulangerie Artisanale",
      "street": "rue Thiers",
      "street_number": 71,
      "turnover": 180000,
      "user_id": 152,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST DOULCHARD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962930,
      "email": null,
      "id": 17193,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-48242651",
      "postal_code": "18230",
      "siren": null,
      "siret": null,
      "status": "G",
      "store_name": "Boulangerie Pouillard",
      "street": "rue du Paradis",
      "street_number": 24,
      "turnover": 1000000,
      "user_id": 51,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LONGECOURT EN PLAINE",
      "client_creation_date": "2009-06-01",
      "closing_days_ids": [],
      "datlinq_code": 962937,
      "email": null,
      "id": 17198,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Perrussot",
      "phone_number": null,
      "postal_code": "21110",
      "siren": "513403204",
      "siret": "51340320400011",
      "status": "M",
      "store_name": "Boulangerie La Halte Gourmande",
      "street": "route de Dijon",
      "street_number": 39,
      "turnover": 495000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JEAN DE LINIERES",
      "client_creation_date": "2007-10-03",
      "closing_days_ids": [],
      "datlinq_code": 962945,
      "email": null,
      "id": 2332,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010009779252110",
      "location_areas_ids": [],
      "owner_name": "MOURGUES pierre",
      "phone_number": "+33 964066655",
      "postal_code": "49070",
      "siren": "500273461",
      "siret": "50027346100011",
      "status": "P",
      "store_name": "Le Fournee de Pierre",
      "street": "place des Plantagenets",
      "street_number": 15,
      "turnover": 191600,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LANNION",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962967,
      "email": null,
      "id": 17201,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MANSUIS PHILIPPE",
      "phone_number": "06-75257845",
      "postal_code": "22300",
      "siren": "314796152",
      "siret": "31479615200069",
      "status": "P",
      "store_name": "Boulangerie au Pain d'Antan",
      "street": "route de Perros Guirec",
      "street_number": null,
      "turnover": 200000,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DREUX",
      "client_creation_date": "2009-03-05",
      "closing_days_ids": [],
      "datlinq_code": 962994,
      "email": null,
      "id": 17223,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ACHAFI",
      "phone_number": "+33 237502814",
      "postal_code": "28100",
      "siren": "510816218",
      "siret": "51081621800018",
      "status": "M",
      "store_name": "Boulangerie Pâtisserie Melissa",
      "street": "Avenue du General Marceau",
      "street_number": 25,
      "turnover": 256600,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PONTGOUIN",
      "client_creation_date": "2009-04-16",
      "closing_days_ids": [],
      "datlinq_code": 962995,
      "email": null,
      "id": 17224,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SABLONS",
      "phone_number": "+33 237374135",
      "postal_code": "28190",
      "siren": "350348173",
      "siret": "35034817300039",
      "status": "P",
      "store_name": "Boulangerie Sablons",
      "street": "rue du Pont de l Aumone",
      "street_number": 9,
      "turnover": 130000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTASTRUC LA CONSEILLERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963027,
      "email": null,
      "id": 17246,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010009899252110",
      "location_areas_ids": [],
      "owner_name": "THIBAULT JEROME",
      "phone_number": "+33 561842595",
      "postal_code": "31380",
      "siren": "511294449",
      "siret": "51129444900018",
      "status": "M",
      "store_name": "Boulangerie Thibault",
      "street": "avenue du General Castelnau",
      "street_number": 76,
      "turnover": 540000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ORGERES",
      "client_creation_date": "2013-05-22",
      "closing_days_ids": [],
      "datlinq_code": 963090,
      "email": null,
      "id": 17287,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "PROD'HOMMES",
      "phone_number": "02-99054956",
      "postal_code": "35230",
      "siren": "511176604",
      "siret": "51117660400011",
      "status": "P",
      "store_name": "Boulangerie aux Saveurs d'Antan",
      "street": "rue de la Mairie",
      "street_number": 2,
      "turnover": 248560,
      "user_id": 148,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AIGURANDE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963121,
      "email": null,
      "id": 17297,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "36140001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-54063151",
      "postal_code": "36140",
      "siren": "494818131",
      "siret": "49481813100026",
      "status": "P",
      "store_name": "Boulangerie Banette Ocean Et Llilian",
      "street": "place du Champ de Foire",
      "street_number": null,
      "turnover": 418000,
      "user_id": 52,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARTANNES SUR INDRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963126,
      "email": null,
      "id": 17300,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0601E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-47268182",
      "postal_code": "37260",
      "siren": "788775658",
      "siret": "51205619300018",
      "status": "M",
      "store_name": "Boulangerie Horde",
      "street": "rue du Commerce",
      "street_number": 3,
      "turnover": 180000,
      "user_id": 140,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST DENIS",
      "client_creation_date": "1-4-2008",
      "closing_days_ids": [],
      "datlinq_code": 963193,
      "email": null,
      "id": 2337,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42432355",
      "postal_code": "93200",
      "siren": "508617677",
      "siret": "50861767700010",
      "status": "EMPTY_STATUS",
      "store_name": "Sakura",
      "street": "place des Pianos",
      "street_number": 4,
      "turnover": 170000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HAZEBROUCK",
      "client_creation_date": "2016-01-01",
      "closing_days_ids": [],
      "datlinq_code": 963224,
      "email": null,
      "id": 41515,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016608252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328418202",
      "postal_code": "59190",
      "siren": "804225431",
      "siret": "80422543100019",
      "status": "M",
      "store_name": "Patisserie Prum",
      "street": "place du General de Gaulle",
      "street_number": 25,
      "turnover": 300000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MARTIN DE FUGERES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963237,
      "email": null,
      "id": 17329,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "43152001",
      "location_areas_ids": [],
      "owner_name": "Elodie FRADET",
      "phone_number": "06-64419928",
      "postal_code": "43150",
      "siren": "511462376",
      "siret": "51146237600019",
      "status": "M",
      "store_name": "Boulangerie Chez Lilian et Elodie",
      "street": "le Bourg",
      "street_number": null,
      "turnover": 110000,
      "user_id": 54,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANCENIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963239,
      "email": null,
      "id": 17331,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31321001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40830126",
      "postal_code": "44150",
      "siren": "512890328",
      "siret": "51289032800028",
      "status": "G",
      "store_name": "Boulangerie O Saveurs d'Ancenis",
      "street": "rue Pierre de Coubertin",
      "street_number": 37,
      "turnover": 600000,
      "user_id": 138,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LUDRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963297,
      "email": null,
      "id": 17373,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83256070",
      "postal_code": "54710",
      "siren": "513834804",
      "siret": "51383480400017",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Maison Chone",
      "street": "place Ferri de Ludre",
      "street_number": 118,
      "turnover": null,
      "user_id": 102,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LUDRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963298,
      "email": null,
      "id": 17374,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83258201",
      "postal_code": "54710",
      "siren": "491183588",
      "siret": "49118358800020",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Banette Noaremy",
      "street": "avenue du Bon Cure",
      "street_number": null,
      "turnover": null,
      "user_id": 102,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SOCX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963343,
      "email": null,
      "id": 17380,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328682240",
      "postal_code": "59380",
      "siren": "340171883",
      "siret": "34017188300010",
      "status": "P",
      "store_name": "Boulangerie Quaghebeur",
      "street": "passage Fleuri",
      "street_number": 2,
      "turnover": 180000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE KREMLIN BICETRE",
      "client_creation_date": "1-1-2008",
      "closing_days_ids": [],
      "datlinq_code": 963460,
      "email": null,
      "id": 17387,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R8491001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-46724582",
      "postal_code": "94270",
      "siren": "505103622",
      "siret": "50510362200013",
      "status": "P",
      "store_name": "Boulangerie La Folie Du Pain",
      "street": "avenue Charles Gide",
      "street_number": 25,
      "turnover": 300000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TRIEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963490,
      "email": null,
      "id": 17388,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "PF206001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-82463341",
      "postal_code": "54750",
      "siren": "408729572",
      "siret": "40872957200029",
      "status": "P",
      "store_name": "Boulangerie Calvisi Fabrice",
      "street": "avenue de la Liberation",
      "street_number": 9,
      "turnover": 434,
      "user_id": 108,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SEREMANGE ERZANGE",
      "client_creation_date": "2016-03-01",
      "closing_days_ids": [],
      "datlinq_code": 963503,
      "email": null,
      "id": 17400,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010028105252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 382582922",
      "postal_code": "57290",
      "siren": "818320186",
      "siret": "81832018600021",
      "status": "G",
      "store_name": "Boulangerie NJGM",
      "street": "rue Charles de Gaulle",
      "street_number": 20,
      "turnover": 1000000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLAMECY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963505,
      "email": null,
      "id": 17402,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386271610",
      "postal_code": "58500",
      "siren": "511500043",
      "siret": "51150004300019",
      "status": "P",
      "store_name": "Boulangerie Roy",
      "street": "rue du Petit Marche",
      "street_number": 4,
      "turnover": 150000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BELLEME",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963521,
      "email": null,
      "id": 17416,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233830418",
      "postal_code": "61130",
      "siren": "512303280",
      "siret": "51230328000014",
      "status": "G",
      "store_name": "Boulangerie le Carre Bellemois",
      "street": "place de la Liberte",
      "street_number": null,
      "turnover": 325000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GERMAIN DU CORBEIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963524,
      "email": null,
      "id": 17419,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012389252110",
      "location_areas_ids": [],
      "owner_name": "LEFORT",
      "phone_number": "+33 962120801",
      "postal_code": "61000",
      "siren": "511647497",
      "siret": "51164749700011",
      "status": "G",
      "store_name": "Boulangerie Panis Trad",
      "street": "rue du General Leclerc",
      "street_number": 95,
      "turnover": 643230,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LANNEMEZAN",
      "client_creation_date": "2009-06-01",
      "closing_days_ids": [],
      "datlinq_code": 963544,
      "email": null,
      "id": 17427,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-62402519",
      "postal_code": "65300",
      "siren": "512575846",
      "siret": "51257584600013",
      "status": "P",
      "store_name": "Boulangerie Le Fournil Du Lustou",
      "street": "rue du 8 Mai 1945",
      "street_number": 285,
      "turnover": 633651,
      "user_id": 208,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARTHENAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963593,
      "email": null,
      "id": 17460,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31296001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-49711083",
      "postal_code": "79200",
      "siren": "514093186",
      "siret": "51409318600013",
      "status": "G",
      "store_name": "Boulangerie Le Fournil Des Loges",
      "street": "rue Ludwig Van Beethoven",
      "street_number": 32,
      "turnover": 900000,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PUYLAROQUE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963602,
      "email": null,
      "id": 17465,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010033397252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 563304819",
      "postal_code": "82240",
      "siren": "511158149",
      "siret": "51115814900019",
      "status": "P",
      "store_name": "Boulangerie L'etoile Des Saveurs",
      "street": "lieu dit Les Experts",
      "street_number": null,
      "turnover": 169000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WISSOUS",
      "client_creation_date": "11-3-2009",
      "closing_days_ids": [],
      "datlinq_code": 963683,
      "email": null,
      "id": 17493,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "2536E001",
      "location_areas_ids": [],
      "owner_name": "SALVADOS Sergio",
      "phone_number": "01-69531677",
      "postal_code": "91320",
      "siren": "511008021",
      "siret": "51100802100012",
      "status": "P",
      "store_name": "Boulangerie La Gourmandise Lg",
      "street": "rue Fernand Leger",
      "street_number": 2,
      "turnover": 455300,
      "user_id": 86,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAUTERETS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963706,
      "email": null,
      "id": 17504,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "65110",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Au Peche Mignon",
      "street": "place Marechal Foch",
      "street_number": 2,
      "turnover": null,
      "user_id": 208,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEZONS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963786,
      "email": null,
      "id": 17518,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "Z0286001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-39613319",
      "postal_code": "95870",
      "siren": "510513310",
      "siret": "51051331000019",
      "status": "G",
      "store_name": "Boulangerie Le Fournil de Bezons",
      "street": "rue Jean Jaures",
      "street_number": 124,
      "turnover": 350000,
      "user_id": 80,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHARENTON DU CHER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963804,
      "email": null,
      "id": 17528,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0750D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-48608078",
      "postal_code": "18210",
      "siren": "438862302",
      "siret": "43886230200025",
      "status": "P",
      "store_name": "Boulangerie Reuillard",
      "street": "rue Nationale",
      "street_number": 70,
      "turnover": 200000,
      "user_id": 51,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ENSISHEIM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963819,
      "email": null,
      "id": 46586,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0449G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-89810252",
      "postal_code": "68190",
      "siren": "491606224",
      "siret": "49160622400013",
      "status": "P",
      "store_name": "Patisserie Ruthmann",
      "street": "rue de la 1ere Armee Francaise",
      "street_number": 33,
      "turnover": 280000,
      "user_id": 111,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FABREGUES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963823,
      "email": null,
      "id": 17542,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467852157",
      "postal_code": "34690",
      "siren": "398862870",
      "siret": "39886287000019",
      "status": "M",
      "store_name": "Boulangerie Les Bles Tendres",
      "street": "rue Paul Doumer",
      "street_number": 35,
      "turnover": 215000,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FLEURY SUR ANDELLE",
      "client_creation_date": "2009-03-11",
      "closing_days_ids": [],
      "datlinq_code": 963825,
      "email": null,
      "id": 17544,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012388252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232490181",
      "postal_code": "27380",
      "siren": "438624330",
      "siret": "43862433000025",
      "status": "P",
      "store_name": "Boulangerie Aux Mille Et Une Saveurs",
      "street": "rue Pouyer Quertier",
      "street_number": 84,
      "turnover": 145000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FISMES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 853186,
      "email": null,
      "id": 5040,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326488017",
      "postal_code": "51170",
      "siren": "539838409",
      "siret": "53983840900016",
      "status": "M",
      "store_name": "Boulangerie Bayart",
      "street": "rue Charles Ledru",
      "street_number": 2,
      "turnover": 200000,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963986,
      "email": null,
      "id": 17574,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78240413",
      "postal_code": "69006",
      "siren": "514990837",
      "siret": "51499083700015",
      "status": "P",
      "store_name": "Boulangerie Duranton",
      "street": "petite Rue de la Viabert",
      "street_number": 24,
      "turnover": 230000,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963993,
      "email": null,
      "id": 17580,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "13F98001",
      "location_areas_ids": [],
      "owner_name": "BENHEBBA Mohamed",
      "phone_number": "04-91913020",
      "postal_code": "13002",
      "siren": "306490756",
      "siret": "30649075600013",
      "status": "P",
      "store_name": "Boulangerie Benhebba Mohamed",
      "street": "rue du Bon Pasteur",
      "street_number": 13,
      "turnover": 220000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "OBERSCHAEFFOLSHEIM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964024,
      "email": null,
      "id": 17600,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-88761774",
      "postal_code": "67203",
      "siren": "798812558",
      "siret": "79881255800020",
      "status": "P",
      "store_name": "Boulangerie Passion Pains",
      "street": "rue du General de Gaulle",
      "street_number": 74,
      "turnover": 250000,
      "user_id": 112,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STE SAVINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964094,
      "email": null,
      "id": 17646,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Gervais",
      "phone_number": "+33 325792469",
      "postal_code": "10300",
      "siren": "422931055",
      "siret": "42293105500012",
      "status": "P",
      "store_name": "Pâtisserie aux Comtes de Champagne",
      "street": "avenue du General Gallieni",
      "street_number": 16,
      "turnover": 57700,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALENCE",
      "client_creation_date": "2005-10-01",
      "closing_days_ids": [],
      "datlinq_code": 964112,
      "email": null,
      "id": 17655,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010031460252110",
      "location_areas_ids": [],
      "owner_name": "CHAPEY Jean Luc",
      "phone_number": "+33 475437635",
      "postal_code": "26000",
      "siren": "422843672",
      "siret": "42284367200029",
      "status": "P",
      "store_name": "Boulangerie Chapey",
      "street": "avenue de Verdun",
      "street_number": 38,
      "turnover": 150000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEMUR SUR TARN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964121,
      "email": null,
      "id": 32801,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013285252110",
      "location_areas_ids": [],
      "owner_name": "??",
      "phone_number": "+33 561351066",
      "postal_code": "31340",
      "siren": "505400416",
      "siret": "50540041600036",
      "status": "G",
      "store_name": "Boulangerie le Pétrin de Villemur",
      "street": "avenue Michel Rocard",
      "street_number": 28,
      "turnover": 510000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PIERREFITTE SUR SEINE",
      "client_creation_date": "1-7-1985",
      "closing_days_ids": [],
      "datlinq_code": 964759,
      "email": null,
      "id": 17685,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1377W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48235592",
      "postal_code": "93380",
      "siren": "800536617",
      "siret": "80053661700015",
      "status": "P",
      "store_name": "Boulangerie Aissaoui",
      "street": "avenue Elisee Reclus",
      "street_number": 221,
      "turnover": 90000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MEUDON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964762,
      "email": null,
      "id": 17687,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "04074001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45341990",
      "postal_code": "92190",
      "siren": "429071525",
      "siret": "42907152500019",
      "status": "P",
      "store_name": "Boulangerie Gie Alain",
      "street": "rue Banes",
      "street_number": 19,
      "turnover": 430000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RAIMBEAUCOURT",
      "client_creation_date": "2006-10-06",
      "closing_days_ids": [],
      "datlinq_code": 964774,
      "email": null,
      "id": 17692,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "PLUCHART",
      "phone_number": "+33 327800887",
      "postal_code": "59283",
      "siren": "492085527",
      "siret": "49208552700017",
      "status": "M",
      "store_name": "Boulangerie Artesienne Des Pains",
      "street": "Rue marechal joffre",
      "street_number": 7,
      "turnover": 190000,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST LYS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964793,
      "email": null,
      "id": 17709,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561769866",
      "postal_code": "31470",
      "siren": "499691947",
      "siret": "49969194700018",
      "status": "M",
      "store_name": "Boulangerie aux Delys",
      "street": "avenue de Toulouse",
      "street_number": 19,
      "turnover": 459754,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAMBERSART",
      "client_creation_date": "2003-10-28",
      "closing_days_ids": [],
      "datlinq_code": 964810,
      "email": null,
      "id": 17723,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BELE CHARLES",
      "phone_number": "+33 320923290",
      "postal_code": "59130",
      "siren": "450487327",
      "siret": "45048732700014",
      "status": "P",
      "store_name": "Boulangerie Bele",
      "street": "avenue Henri Delecaux",
      "street_number": 38,
      "turnover": 350000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ESTREES ST DENIS",
      "client_creation_date": "24-7-2008",
      "closing_days_ids": [],
      "datlinq_code": 964846,
      "email": null,
      "id": 17740,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R8533001",
      "location_areas_ids": [],
      "owner_name": "BRANLANT",
      "phone_number": "03-44413179",
      "postal_code": "60190",
      "siren": "429755804",
      "siret": "42975580400029",
      "status": "G",
      "store_name": "Boulangerie Branlant",
      "street": "rue de la Republique",
      "street_number": 42,
      "turnover": 340000,
      "user_id": 311,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NEUVILLE AUX BOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964884,
      "email": null,
      "id": 17765,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 238910018",
      "postal_code": "45170",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Coint Gerard",
      "street": "rue Dollon",
      "street_number": 21,
      "turnover": 197000,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SOUMOULOU",
      "client_creation_date": "1993-07-01",
      "closing_days_ids": [],
      "datlinq_code": 964895,
      "email": null,
      "id": 17774,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1456D001",
      "location_areas_ids": [],
      "owner_name": "cuyala",
      "phone_number": "05-59046019",
      "postal_code": "64420",
      "siren": "393058193",
      "siret": "39305819300011",
      "status": "P",
      "store_name": "Boulangerie Cuyala",
      "street": "avenue Lasbordes",
      "street_number": 25,
      "turnover": 366969,
      "user_id": 208,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOIS EN ARDRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964932,
      "email": null,
      "id": 17808,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321199920",
      "postal_code": "62610",
      "siren": "499830362",
      "siret": "49983036200012",
      "status": "P",
      "store_name": "Boulangerie du Village",
      "street": "Rue General De Saint Just",
      "street_number": 123,
      "turnover": 150000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TREMBLAY EN FRANCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964959,
      "email": null,
      "id": 17829,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Lefèvre ",
      "phone_number": "01-49639088",
      "postal_code": "93290",
      "siren": "478835648",
      "siret": "47883564800047",
      "status": "P",
      "store_name": "Boulangerie Lefèvre",
      "street": "avenue Roger Salengro",
      "street_number": 68,
      "turnover": 400000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLENEUVE D ASCQ",
      "client_creation_date": "2004-02-17",
      "closing_days_ids": [],
      "datlinq_code": 964976,
      "email": null,
      "id": 17843,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011723252110",
      "location_areas_ids": [],
      "owner_name": "GHILLEBAERT",
      "phone_number": "+33 320568820",
      "postal_code": "59650",
      "siren": "342590767",
      "siret": "34259076700022",
      "status": "G",
      "store_name": "Boulangerie Banette Ghillebaert Philippe",
      "street": "rue du General Leclerc",
      "street_number": 2,
      "turnover": 390000,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GONESSE",
      "client_creation_date": "1-9-2008",
      "closing_days_ids": [],
      "datlinq_code": 964978,
      "email": null,
      "id": 17844,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1760F001",
      "location_areas_ids": [],
      "owner_name": "FRIAA",
      "phone_number": "000-000",
      "postal_code": "95500",
      "siren": "508135712",
      "siret": "50813571200018",
      "status": "P",
      "store_name": "Boulangerie Pâtisserie Gonesse",
      "street": "square des Sports",
      "street_number": 1,
      "turnover": 269942,
      "user_id": 79,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AUBERVILLIERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964992,
      "email": "erouel.ali@gmail.com",
      "id": 17856,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "14122001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48349656/06117994",
      "postal_code": "93300",
      "siren": "497592766",
      "siret": "49759276600016",
      "status": "M",
      "store_name": "Boulangerie les Saveurs de l'Orient",
      "street": "rue Danielle Casanova",
      "street_number": 126,
      "turnover": 170000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHOISY LE ROI",
      "client_creation_date": "1-1-2004",
      "closing_days_ids": [],
      "datlinq_code": 965065,
      "email": null,
      "id": 17920,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "YAKLEF LACHAAL",
      "phone_number": "01-48535988",
      "postal_code": "94600",
      "siren": "449596980",
      "siret": "44959698000010",
      "status": "P",
      "store_name": "Boulangerie Lachaal",
      "street": "avenue Victor Hugo",
      "street_number": 57,
      "turnover": 280000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MANDE",
      "client_creation_date": "2009",
      "closing_days_ids": [],
      "datlinq_code": 965072,
      "email": null,
      "id": 17925,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R9004001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43653217",
      "postal_code": "94160",
      "siren": "508225166",
      "siret": "50822516600018",
      "status": "M",
      "store_name": "Boulangerie Blavette",
      "street": "avenue Alphand",
      "street_number": 20,
      "turnover": 350000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LIANCOURT",
      "client_creation_date": "2015",
      "closing_days_ids": [],
      "datlinq_code": 965083,
      "email": null,
      "id": 17930,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1653D001",
      "location_areas_ids": [],
      "owner_name": "Corbière et Beranger ",
      "phone_number": "03-44602543",
      "postal_code": "60140",
      "siren": "391969557",
      "siret": "39196955700092",
      "status": "M",
      "store_name": "Boulangerie le Four à Bois",
      "street": "rue Roger Duplessis",
      "street_number": 14,
      "turnover": 730000,
      "user_id": 78,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLETY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965086,
      "email": null,
      "id": 17933,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "AUXENFANTS",
      "phone_number": "+33 321952048",
      "postal_code": "62380",
      "siren": "433120011",
      "siret": "43312001100021",
      "status": "M",
      "store_name": "Boulangerie Auxenfants René",
      "street": "route Nationale",
      "street_number": 57,
      "turnover": 400000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANNEZIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965125,
      "email": "jean-Marc.legrand9@orange.fr",
      "id": 17962,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012003252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321564493",
      "postal_code": "62232",
      "siren": "402239040",
      "siret": "40223904000023",
      "status": "G",
      "store_name": "Boulangerie Au Boulot",
      "street": "rue de la Mairie",
      "street_number": 22,
      "turnover": 310000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BALMA",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965150,
      "email": null,
      "id": 17979,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013217252110",
      "location_areas_ids": [],
      "owner_name": "GUILLOT LAURENT",
      "phone_number": "+33 561240064",
      "postal_code": "31130",
      "siren": "424880391",
      "siret": "42488039100026",
      "status": "G",
      "store_name": "Boulangerie Maison Guillot",
      "street": "avenue Pierre Coupeau",
      "street_number": 2,
      "turnover": 586000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAURAINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965154,
      "email": null,
      "id": 17982,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321235827",
      "postal_code": "62217",
      "siren": "504819392",
      "siret": "50481939200011",
      "status": "P",
      "store_name": "Boulangerie Maleska",
      "street": "avenue Pierre Bolle",
      "street_number": 8,
      "turnover": 250000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WATTEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965170,
      "email": null,
      "id": 17991,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321882367",
      "postal_code": "59143",
      "siren": "433604295",
      "siret": "43360429500017",
      "status": "P",
      "store_name": "Boulangerie Martinez",
      "street": "rue Saint Antoine",
      "street_number": 8,
      "turnover": 210000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLERMONT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965175,
      "email": null,
      "id": 17995,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561963003",
      "postal_code": "09420",
      "siren": "411744634",
      "siret": "41174463400014",
      "status": "P",
      "store_name": "Boulangerie Mauret",
      "street": "Peyruc",
      "street_number": null,
      "turnover": 110000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MEUDON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965211,
      "email": null,
      "id": 18025,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0565B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "92190",
      "siren": "512742974",
      "siret": "51274297400011",
      "status": "P",
      "store_name": "Boulangerie Yousra",
      "street": "rue des Marais",
      "street_number": 60,
      "turnover": 300000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PUYCALVEL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965217,
      "email": null,
      "id": 18028,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "GONTIE MICHEL",
      "phone_number": "+33 563759744",
      "postal_code": "81440",
      "siren": "391914512",
      "siret": "39191451200010",
      "status": "M",
      "store_name": "Boulangerie Pain Et Nature",
      "street": "Douasso",
      "street_number": null,
      "turnover": 256000,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AUCHEL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965271,
      "email": null,
      "id": 18066,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010002754252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321270362",
      "postal_code": "62260",
      "siren": "521731281",
      "siret": "52173128100015",
      "status": "M",
      "store_name": "Boulangerie Pâtisserie Salomez",
      "street": "rue Arthur Lamendin",
      "street_number": 39,
      "turnover": 400000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "17/07/2009",
      "closing_days_ids": [],
      "datlinq_code": 965321,
      "email": null,
      "id": 18103,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "75011",
      "siren": "513785600",
      "siret": "51378560000018",
      "status": "P",
      "store_name": "Boulangerie Moisson Des Saveurs",
      "street": "boulevard Beaumarchais",
      "street_number": 86,
      "turnover": 590000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUNE",
      "client_creation_date": "2007-07-01",
      "closing_days_ids": [],
      "datlinq_code": 965457,
      "email": null,
      "id": 18116,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Gagelin",
      "phone_number": "+33 380228475",
      "postal_code": "21200",
      "siren": "499895142",
      "siret": "49989514200010",
      "status": "M",
      "store_name": "Boulangerie la Fournée Beaunoise",
      "street": "route de Dijon",
      "street_number": 166,
      "turnover": 515000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA BUSSIERE SUR OUCHE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965578,
      "email": "ouchotte@orange.fr",
      "id": 18142,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010390252110",
      "location_areas_ids": [],
      "owner_name": "benoit guyod bruno",
      "phone_number": "+33 380490162",
      "postal_code": "21360",
      "siren": "495145781",
      "siret": "49514578100011",
      "status": "P",
      "store_name": "Boulangerie Artisanale l'Ouchotte",
      "street": "la Forge",
      "street_number": 0,
      "turnover": 140000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAIGNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965587,
      "email": null,
      "id": 18144,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "galimard patrice",
      "phone_number": "+33 380814171",
      "postal_code": "21330",
      "siren": "382843258",
      "siret": "38284325800015",
      "status": "P",
      "store_name": "Boulangerie La Belle Fournee",
      "street": "Route de Tonnerre",
      "street_number": null,
      "turnover": 140000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRANDPARIGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965614,
      "email": null,
      "id": 18150,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233490069",
      "postal_code": "50600",
      "siren": "342840873",
      "siret": "34284087300034",
      "status": "P",
      "store_name": "Boulangerie Jean-Claude",
      "street": "le Bourg",
      "street_number": null,
      "turnover": 140000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST EVROULT NOTRE DAME DU BOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965653,
      "email": null,
      "id": 18163,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "61550",
      "siren": "327294641",
      "siret": "32729464100011",
      "status": "P",
      "store_name": "Boulangerie Crépinel",
      "street": "Grande Rue",
      "street_number": null,
      "turnover": 135000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THORIGNE FOUILLARD",
      "client_creation_date": "2010-02-19",
      "closing_days_ids": [],
      "datlinq_code": 965960,
      "email": null,
      "id": 18190,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "GUERROIS",
      "phone_number": "02-99620543",
      "postal_code": "35235",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie l'Atelier du Pain",
      "street": "rue Beaumanoir",
      "street_number": 6,
      "turnover": 250000,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ECULLY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 966002,
      "email": null,
      "id": 2365,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "69130",
      "siren": "520488586",
      "siret": "52048858600014",
      "status": "P",
      "store_name": "E.K",
      "street": "chemin des Cerisiers",
      "street_number": 40,
      "turnover": 150000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VENDIN LES BETHUNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 966016,
      "email": null,
      "id": 18195,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010000316252110",
      "location_areas_ids": [],
      "owner_name": "DUPONT FRANSOIS",
      "phone_number": "000-000",
      "postal_code": "62232",
      "siren": "789681376",
      "siret": "78968137600016",
      "status": "M",
      "store_name": "Boulangerie Pains Et Delices",
      "street": "rue Pierre Mendes France",
      "street_number": 8,
      "turnover": 211000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "REIMS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 966179,
      "email": "la-fournee-croquante@orange.fr",
      "id": 18207,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003151252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326248393",
      "postal_code": "51100",
      "siren": "479137507",
      "siret": "47913750700022",
      "status": "G",
      "store_name": "Boulangerie la Fournée Croquante",
      "street": "rue Gambetta",
      "street_number": 100,
      "turnover": 323633,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AVANNE AVENEY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 968078,
      "email": null,
      "id": 18222,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010528252110",
      "location_areas_ids": [],
      "owner_name": "CLERGET",
      "phone_number": "+33 381521839",
      "postal_code": "25720",
      "siren": "531784338",
      "siret": "53178433800018",
      "status": "M",
      "store_name": "Boulangerie Pains & Delices",
      "street": "rue de l Eglise",
      "street_number": 22,
      "turnover": 230000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VERTOU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 968367,
      "email": null,
      "id": 38188,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-51794600",
      "postal_code": "44120",
      "siren": "856801519",
      "siret": "85680151900070",
      "status": "EMPTY_STATUS",
      "store_name": "United Biscuit France",
      "street": "route du Mortier Vannerie",
      "street_number": 27,
      "turnover": null,
      "user_id": 138,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SABLE SUR SARTHE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 968557,
      "email": null,
      "id": 2369,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243957888",
      "postal_code": "72300",
      "siren": "520423294",
      "siret": "52042329400013",
      "status": "P",
      "store_name": "Le Régal",
      "street": "rue Aristide Briand",
      "street_number": 2,
      "turnover": 0,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-1-2002",
      "closing_days_ids": [],
      "datlinq_code": 969100,
      "email": "maisonbichon@hotmail.com",
      "id": 18226,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "U0503001",
      "location_areas_ids": [],
      "owner_name": "DELGADO ELISEE",
      "phone_number": "01-9596036035",
      "postal_code": "75010",
      "siren": "440672970",
      "siret": "44067297000025",
      "status": "M",
      "store_name": "Boulangerie Maison Bichon",
      "street": "rue Cail",
      "street_number": 2,
      "turnover": 650000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VANDOEUVRE LES NANCY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 970319,
      "email": null,
      "id": 18235,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1270C001",
      "location_areas_ids": [],
      "owner_name": "Clop",
      "phone_number": "03-83515767",
      "postal_code": "54500",
      "siren": "502752108",
      "siret": "50275210800022",
      "status": "M",
      "store_name": "Boulangerie le Blé d'Or",
      "street": "rue Aristide Briand",
      "street_number": 9,
      "turnover": 200000,
      "user_id": 106,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAGNES SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 972066,
      "email": null,
      "id": 2377,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93733734",
      "postal_code": "06800",
      "siren": "410599534",
      "siret": "41059953400014",
      "status": "P",
      "store_name": "Le Fournil Pasqualini",
      "street": "rue J P Pasqualini",
      "street_number": 3,
      "turnover": 20000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MIGNALOUX BEAUVOIR",
      "client_creation_date": "2001-01-01",
      "closing_days_ids": [],
      "datlinq_code": 972234,
      "email": null,
      "id": 18246,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0630A001",
      "location_areas_ids": [],
      "owner_name": "BOULOUX",
      "phone_number": "05-49475297",
      "postal_code": "86550",
      "siren": "531941656",
      "siret": "53194165600013",
      "status": "M",
      "store_name": "Boulangerie La Mie Do Re",
      "street": "route de Limoges",
      "street_number": 1480,
      "turnover": 350000,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIZILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 972765,
      "email": null,
      "id": 47659,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0109C001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76087000",
      "postal_code": "38220",
      "siren": "514488113",
      "siret": "51448811300010",
      "status": "G",
      "store_name": "Croissanterie Lili Croutille (Liviz)",
      "street": "avenue Maurice Thorez",
      "street_number": 742,
      "turnover": 1441891,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PROPRIANO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 973121,
      "email": null,
      "id": 18251,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-95760171",
      "postal_code": "20110",
      "siren": "812537744",
      "siret": "81253774400011",
      "status": "P",
      "store_name": "Patisserie Peche Mignon",
      "street": "avenue Napoleon III",
      "street_number": 9,
      "turnover": 10000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "METZ",
      "client_creation_date": "2007-02-01",
      "closing_days_ids": [],
      "datlinq_code": 973446,
      "email": null,
      "id": 18254,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010960252110",
      "location_areas_ids": [],
      "owner_name": "Jean singler",
      "phone_number": "000-000",
      "postal_code": "57000",
      "siren": "494921240",
      "siret": "49492124000011",
      "status": "P",
      "store_name": "Boulangerie Patisserie Lacyleen",
      "street": "place des Charrons",
      "street_number": 9,
      "turnover": 170000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 974307,
      "email": null,
      "id": 2382,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "75008",
      "siren": "502407976",
      "siret": "50240797600039",
      "status": "M",
      "store_name": "Romantica Café",
      "street": "Rue Du Chevalier de Saint Georges",
      "street_number": 7,
      "turnover": 729770,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ELANCOURT",
      "client_creation_date": "21-9-2005",
      "closing_days_ids": [],
      "datlinq_code": 974345,
      "email": null,
      "id": 18260,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "EEUWAERT",
      "phone_number": "01-30513140",
      "postal_code": "78990",
      "siren": "484163688",
      "siret": "48416368800027",
      "status": "G",
      "store_name": "Boulangerie Eeuwaert",
      "street": "centre Commercial des 7 Mares",
      "street_number": null,
      "turnover": 1364400,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIRE NORMANDIE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 974892,
      "email": null,
      "id": 18270,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231682547",
      "postal_code": "14500",
      "siren": "798222337",
      "siret": "79822233700015",
      "status": "P",
      "store_name": "Boulangerie aux Douceurs de Martilly",
      "street": "place de Martilly",
      "street_number": 1,
      "turnover": 100000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 975200,
      "email": null,
      "id": 2387,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48244675",
      "postal_code": "75009",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Sandwicherie Jour Apres Jour",
      "street": "rue Cadet",
      "street_number": 1,
      "turnover": 10000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PORT VENDRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 975228,
      "email": null,
      "id": 2388,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010026020252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468839713",
      "postal_code": "66660",
      "siren": "812780732",
      "siret": "0",
      "status": "M",
      "store_name": "Les Pains du Quai",
      "street": "quai Pierre Forgas",
      "street_number": 11,
      "turnover": 150000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 975438,
      "email": null,
      "id": 2392,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45863641",
      "postal_code": "75013",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie Pomme de Pain",
      "street": "rue Marie Andree Lagroud Weill Halle",
      "street_number": 9,
      "turnover": null,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 975511,
      "email": null,
      "id": 18274,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Saibron",
      "phone_number": "01-43350107",
      "postal_code": "75014",
      "siren": "510944275",
      "siret": "51094427500013",
      "status": "P",
      "store_name": "Boulangerie Macaron's Café Dominique Saibron",
      "street": "avenue du General Leclerc",
      "street_number": 77,
      "turnover": 2000000,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GUERIGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 975739,
      "email": null,
      "id": 18276,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386373141",
      "postal_code": "58130",
      "siren": "523883130",
      "siret": "52388313000016",
      "status": "M",
      "store_name": "Boulanderie l'Amarena",
      "street": "Grande Rue",
      "street_number": 16,
      "turnover": 200000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AVIGNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 975865,
      "email": null,
      "id": 2394,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-32741308",
      "postal_code": "84000",
      "siren": "500676085",
      "siret": "50067608500011",
      "status": "P",
      "store_name": "Restaurant le Pêché de la Gourmandise",
      "street": "rue Petramale",
      "street_number": 18,
      "turnover": 125000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BREST",
      "client_creation_date": "2009",
      "closing_days_ids": [],
      "datlinq_code": 975897,
      "email": null,
      "id": 47662,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "09-67465484",
      "postal_code": "29200",
      "siren": "518027438",
      "siret": "51802743800036",
      "status": "P",
      "store_name": "Le Fournil du Port (Sounalisa)",
      "street": "quai de la Douane",
      "street_number": 22,
      "turnover": 150000,
      "user_id": 147,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-10-2009",
      "closing_days_ids": [],
      "datlinq_code": 975942,
      "email": null,
      "id": 2397,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "VENTURA SERGE",
      "phone_number": "01-42613758",
      "postal_code": "75001",
      "siren": "515299741",
      "siret": "51529974100014",
      "status": "EMPTY_STATUS",
      "store_name": "IL Café",
      "street": "rue des Capucines",
      "street_number": 23,
      "turnover": 400000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEBON SUR YVETTE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 976104,
      "email": null,
      "id": 2398,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-64868141",
      "postal_code": "91140",
      "siren": "582150041",
      "siret": "58215004101031",
      "status": "EMPTY_STATUS",
      "store_name": "Pomme de Pain",
      "street": "rue du Chemin de Briis",
      "street_number": 2,
      "turnover": 1227562,
      "user_id": 84,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VOIRON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 977235,
      "email": null,
      "id": 18298,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "38508001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76658888",
      "postal_code": "38500",
      "siren": "394213649",
      "siret": "39421364900038",
      "status": "M",
      "store_name": "Au Pain d'Antan",
      "street": "cours Becquart Castelbon",
      "street_number": 42,
      "turnover": 350000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COUZON AU MONT D OR",
      "client_creation_date": "2008",
      "closing_days_ids": [],
      "datlinq_code": 977347,
      "email": null,
      "id": 18309,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "69273001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78222119",
      "postal_code": "69270",
      "siren": "434526810",
      "siret": "43452681000016",
      "status": "G",
      "store_name": "Boulangerie le Moulin de Couzon",
      "street": "avenue du General de Gaulle",
      "street_number": 89,
      "turnover": 440000,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "OUCHES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 977348,
      "email": null,
      "id": 18310,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1258C001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-77668322",
      "postal_code": "42155",
      "siren": "449585272",
      "siret": "44958527200023",
      "status": "P",
      "store_name": "Boulangerie Bardou",
      "street": "rue Principale",
      "street_number": 180,
      "turnover": 200000,
      "user_id": 62,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST ANDRE DE L EURE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 977762,
      "email": null,
      "id": 2404,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232372474",
      "postal_code": "27220",
      "siren": "522735208",
      "siret": "52273520800012",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Vernoline",
      "street": "place de Gaulle",
      "street_number": 2,
      "turnover": null,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST REMY DE PROVENCE",
      "client_creation_date": "2009",
      "closing_days_ids": [],
      "datlinq_code": 978013,
      "email": null,
      "id": 38190,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-90921108",
      "postal_code": "13210",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Confiserie Lilamand",
      "street": "avenue Albert Schweitzer",
      "street_number": 5,
      "turnover": 40000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAUSSONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 979683,
      "email": null,
      "id": 18457,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Eric OUTIN",
      "phone_number": "04-71051106",
      "postal_code": "43150",
      "siren": "504217753",
      "siret": "50421775300012",
      "status": "P",
      "store_name": "Fournil de la Fontaine",
      "street": "Le Bourg",
      "street_number": null,
      "turnover": 160000,
      "user_id": 54,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 980022,
      "email": null,
      "id": 18465,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40205773",
      "postal_code": "44000",
      "siren": "521867226",
      "siret": "52186722600024",
      "status": "P",
      "store_name": "Boulangerie Irla",
      "street": "rue des Hauts Paves",
      "street_number": 8,
      "turnover": 250000,
      "user_id": 144,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NEUVILLE SUR ESCAUT",
      "client_creation_date": "2007-01-01",
      "closing_days_ids": [],
      "datlinq_code": 980369,
      "email": null,
      "id": 18476,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 327440061",
      "postal_code": "59293",
      "siren": "520914854",
      "siret": "52091485400010",
      "status": "P",
      "store_name": "Boulangerie aux Petits Délices",
      "street": "rue Louis Pasteur",
      "street_number": 19,
      "turnover": 190000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALLAURIS",
      "client_creation_date": "2010-03-01",
      "closing_days_ids": [],
      "datlinq_code": 980435,
      "email": null,
      "id": 274,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0047E001",
      "location_areas_ids": [],
      "owner_name": "Pauget Véronique",
      "phone_number": "04-92969559",
      "postal_code": "06220",
      "siren": "521000547",
      "siret": "52100054700013",
      "status": "M",
      "store_name": "Boulangerie Cheminat Et Cie",
      "street": "avenue de la Liberte",
      "street_number": 50,
      "turnover": 488000,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TANNERON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 980466,
      "email": null,
      "id": 18477,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93662495",
      "postal_code": "83440",
      "siren": "521219212",
      "siret": "52121921200011",
      "status": "P",
      "store_name": "Boulangerie le P'tit Pain",
      "street": "place de la Mairie",
      "street_number": null,
      "turnover": 100000,
      "user_id": 185,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MIRAMAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 980487,
      "email": null,
      "id": 18478,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-18934726",
      "postal_code": "13140",
      "siren": "520923715",
      "siret": "52092371500012",
      "status": "P",
      "store_name": "Boulangerie Falbo",
      "street": "boulevard Aristide Briand",
      "street_number": 24,
      "turnover": 210000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 981058,
      "email": null,
      "id": 276,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1676D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93134026",
      "postal_code": "06000",
      "siren": "388506586",
      "siret": "38850658600014",
      "status": "P",
      "store_name": "Boulangerie la Nicoise",
      "street": "rue Gubernatis",
      "street_number": 21,
      "turnover": 250000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MANTES LA JOLIE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 981532,
      "email": null,
      "id": 2448,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0520C001",
      "location_areas_ids": [],
      "owner_name": "HASSAN",
      "phone_number": "000-000",
      "postal_code": "78200",
      "siren": "521020859",
      "siret": "52102085900018",
      "status": "P",
      "store_name": "Sandwicherie Gassichaud",
      "street": "rue Maurice Braunstein",
      "street_number": 108,
      "turnover": 180000,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARTIGNAS SUR JALLE",
      "client_creation_date": "2011-01-01",
      "closing_days_ids": [],
      "datlinq_code": 981732,
      "email": null,
      "id": 18527,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXD47001",
      "location_areas_ids": [],
      "owner_name": "Charriot",
      "phone_number": "05-56214150",
      "postal_code": "33127",
      "siren": "521487355",
      "siret": "52148735500013",
      "status": "G",
      "store_name": "Boulangerie le Remède d'epicure",
      "street": "avenue du 18 Juin 1940",
      "street_number": null,
      "turnover": 757969,
      "user_id": 206,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PIERREFITTE SUR SEINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 981870,
      "email": null,
      "id": 38191,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "93380",
      "siren": "521805713",
      "siret": "52180571300018",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie BLA Distribution",
      "street": "avenue Nungesser et Coli",
      "street_number": 46,
      "turnover": null,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAGNEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 981893,
      "email": null,
      "id": 41535,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "09-52564213",
      "postal_code": "92220",
      "siren": "521756486",
      "siret": "52175648600010",
      "status": "P",
      "store_name": "Sandwicherie Best Of",
      "street": "place de la Republique",
      "street_number": 4,
      "turnover": 150000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 982241,
      "email": null,
      "id": 2468,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42365811",
      "postal_code": "75002",
      "siren": "433432820",
      "siret": "43343282000176",
      "status": "P",
      "store_name": "CO Jean",
      "street": "rue Reaumur",
      "street_number": 121,
      "turnover": 10000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GIRONS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 982657,
      "email": null,
      "id": 18560,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561048388",
      "postal_code": "09200",
      "siren": "408531234",
      "siret": "40853123400032",
      "status": "P",
      "store_name": "Boulangerie Soum",
      "street": "place Pasteur",
      "street_number": 5,
      "turnover": 145000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BLAGNAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 982700,
      "email": null,
      "id": 18561,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 663841063",
      "postal_code": "31700",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie la Goutte d'Or",
      "street": "rue de la Croix Blanche",
      "street_number": 1,
      "turnover": 160000,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA SALVETAT ST GILLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 983375,
      "email": null,
      "id": 18576,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "GUICHET MARC",
      "phone_number": "+33 561077818",
      "postal_code": "31880",
      "siren": "509786976",
      "siret": "50978697600019",
      "status": "M",
      "store_name": "Boulangerie Valse Des Pains",
      "street": "avenue des Pyrenees",
      "street_number": 36,
      "turnover": 404110,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LIEUSAINT",
      "client_creation_date": "1-10-2003",
      "closing_days_ids": [],
      "datlinq_code": 983765,
      "email": null,
      "id": 2482,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R4040001",
      "location_areas_ids": [],
      "owner_name": "SOTTEAU",
      "phone_number": "01-64880723",
      "postal_code": "77127",
      "siren": "752137463",
      "siret": "0",
      "status": "M",
      "store_name": "Boulangerie Pains et Viennoiseries du Colombier",
      "street": "place du Colombier",
      "street_number": 21,
      "turnover": 250000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE MANS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 983929,
      "email": null,
      "id": 18631,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Guyot",
      "phone_number": "+33 243841479",
      "postal_code": "72100",
      "siren": "504851007",
      "siret": "50485100700014",
      "status": "P",
      "store_name": "Boulangerie Davoust",
      "street": "avenue Felix Geneslay",
      "street_number": 422,
      "turnover": 209000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAULIEU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 984703,
      "email": null,
      "id": 32854,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012554252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 380641713",
      "postal_code": "21210",
      "siren": "016850422",
      "siret": "01685042200011",
      "status": "P",
      "store_name": "Pâtisserie Guillemard",
      "street": "rue du Marche",
      "street_number": 11,
      "turnover": 180000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 984711,
      "email": null,
      "id": 32855,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R6773001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43077759",
      "postal_code": "75012",
      "siren": "492342746",
      "siret": "49234274600012",
      "status": "EMPTY_STATUS",
      "store_name": "Patisserie le Panthéon",
      "street": "rue Saint-Jacques",
      "street_number": 200,
      "turnover": null,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTGERON",
      "client_creation_date": "20-3-2003",
      "closing_days_ids": [],
      "datlinq_code": 984744,
      "email": null,
      "id": 18677,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "PIOT",
      "phone_number": "01-69036763",
      "postal_code": "91230",
      "siren": "448148080",
      "siret": "44814808000022",
      "status": "P",
      "store_name": "Boulangerie Cedric Piot",
      "street": "avenue de la Republique",
      "street_number": 176,
      "turnover": 160000,
      "user_id": 84,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HAGONDANGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 984848,
      "email": null,
      "id": 18722,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387715053",
      "postal_code": "57300",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie la Petite Douceur",
      "street": "rue de la Gare",
      "street_number": 21,
      "turnover": null,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTROUGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 984869,
      "email": null,
      "id": 18732,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42534348",
      "postal_code": "92120",
      "siren": "512893272",
      "siret": "51289327200017",
      "status": "P",
      "store_name": "Boulangerie Bonheur et Gourmandise (Guerard)",
      "street": "avenue de la Republique",
      "street_number": 78,
      "turnover": 320000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHOISY LE ROI",
      "client_creation_date": "29-6-2007",
      "closing_days_ids": [],
      "datlinq_code": 984879,
      "email": null,
      "id": 18737,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R7429001",
      "location_areas_ids": [],
      "owner_name": "AMINE BOUHARBA",
      "phone_number": "01-48907934",
      "postal_code": "94600",
      "siren": "498800192",
      "siret": "49880019200011",
      "status": "P",
      "store_name": "Boulangerie la Princesse",
      "street": "avenue Gambetta",
      "street_number": 9,
      "turnover": 240000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTEILS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 984924,
      "email": null,
      "id": 18761,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "GROS FABRICE",
      "phone_number": "+33 565296316",
      "postal_code": "12200",
      "siren": "517745030",
      "siret": "51774503000018",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Gros",
      "street": "le Bourg",
      "street_number": null,
      "turnover": null,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2005",
      "closing_days_ids": [],
      "datlinq_code": 985004,
      "email": null,
      "id": 2504,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1829D001",
      "location_areas_ids": [],
      "owner_name": "DALHOUMI",
      "phone_number": null,
      "postal_code": "75018",
      "siren": "504032277",
      "siret": "50403227700015",
      "status": "P",
      "store_name": "Boulangerie le Fournil de Vaunenargue",
      "street": "rue Vauvenargues",
      "street_number": 70,
      "turnover": 200000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PERPIGNAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985096,
      "email": null,
      "id": 2509,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468576033",
      "postal_code": "66000",
      "siren": "501676746",
      "siret": "50167674600024",
      "status": "M",
      "store_name": "La Mie Caline",
      "street": "rue Alsace Lorraine",
      "street_number": 2,
      "turnover": 350000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BRUGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985521,
      "email": null,
      "id": 32869,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "20042001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56430606",
      "postal_code": "33520",
      "siren": "353618564",
      "siret": "35361856400010",
      "status": "P",
      "store_name": "Patisserie Le Bouchon De Bordeaux",
      "street": "chemin de Bacchus",
      "street_number": 12,
      "turnover": 100,
      "user_id": 207,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAULEON LICHARRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985573,
      "email": null,
      "id": 18854,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BESSAGNET Jean",
      "phone_number": "05-59280033",
      "postal_code": "64130",
      "siren": "402158992",
      "siret": "40215899200014",
      "status": "P",
      "store_name": "Boulangerie Bessagnet",
      "street": "rue Victor Hugo",
      "street_number": 35,
      "turnover": 250000,
      "user_id": 214,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARTHENAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985627,
      "email": null,
      "id": 18875,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "79005001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-49941129",
      "postal_code": "79200",
      "siren": "343926267",
      "siret": "34392626700034",
      "status": "M",
      "store_name": "Boulangerie Wypych",
      "street": "av du 114e Regiment d Infanterie",
      "street_number": 23,
      "turnover": 230000,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PESSAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985665,
      "email": null,
      "id": 18897,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56453538",
      "postal_code": "33600",
      "siren": "382496032",
      "siret": "38249603200014",
      "status": "P",
      "store_name": "Boulangerie à la Marquise d Arago",
      "street": "avenue Arago",
      "street_number": null,
      "turnover": 300000,
      "user_id": 206,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AULNAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985737,
      "email": null,
      "id": 18934,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "LI045001",
      "location_areas_ids": [],
      "owner_name": "BOUILLON",
      "phone_number": "05-46331183",
      "postal_code": "17470",
      "siren": "421768789",
      "siret": "42176878900016",
      "status": "P",
      "store_name": "Boulangerie Jacky Bouillon",
      "street": "rue Porte Matha",
      "street_number": 34,
      "turnover": 80000,
      "user_id": 152,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARTELANGE",
      "client_creation_date": "2000-02-01",
      "closing_days_ids": [],
      "datlinq_code": 477541,
      "email": null,
      "id": 50268,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010121252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+32 63600157",
      "postal_code": "6630",
      "siren": "441332875",
      "siret": "2049415505",
      "status": "P",
      "store_name": "Boulangerie-Patisserie Stouvenaker",
      "street": "route de Bastogne",
      "street_number": 3,
      "turnover": 200000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BONINNE-GELBRESSÉE",
      "client_creation_date": "2001-02-01",
      "closing_days_ids": [],
      "datlinq_code": 502196,
      "email": null,
      "id": 50286,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016369252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+32 81214877",
      "postal_code": "5021",
      "siren": "837084858",
      "siret": "2200091741",
      "status": "P",
      "store_name": "Boulangerie la Maison Demoulin",
      "street": "route de Hannut",
      "street_number": 278,
      "turnover": 100000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NALINNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 531259,
      "email": null,
      "id": 50316,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016326252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+32 71215558",
      "postal_code": "6120",
      "siren": "0810933361",
      "siret": "2180417864",
      "status": "M",
      "store_name": "Boulangerie la Palette Sucrée",
      "street": "rue Couture",
      "street_number": 18,
      "turnover": 350000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARCINELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 556561,
      "email": "douceursetgourmandises@hotmail.com",
      "id": 50321,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012053252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+32 71562636",
      "postal_code": "6001",
      "siren": "836526911",
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Douceurs et gourmandises - SPRL Kimmes",
      "street": "rue Destrée",
      "street_number": 96,
      "turnover": 150000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LONGWY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 556841,
      "email": null,
      "id": 4577,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010030328252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 382444241",
      "postal_code": "54400",
      "siren": "823990767",
      "siret": null,
      "status": "G",
      "store_name": "DPDG",
      "street": "rue Carnot",
      "street_number": 11,
      "turnover": 500000,
      "user_id": 393,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HERZEELE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 632022,
      "email": null,
      "id": 33233,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010002706252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328276600",
      "postal_code": "59470",
      "siren": "344847827",
      "siret": "34484782700013",
      "status": "P",
      "store_name": "Coccimarket",
      "street": "rue de Bambecque",
      "street_number": 162,
      "turnover": 70000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MACON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 634563,
      "email": null,
      "id": 50343,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 385383325",
      "postal_code": "71000",
      "siren": "342689940",
      "siret": "34268994000027",
      "status": "M",
      "store_name": "Etablissements Got",
      "street": "rue du Port",
      "street_number": null,
      "turnover": 2351155,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MARTIN DE VALGALGUES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 674059,
      "email": null,
      "id": 32279,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010000843252140",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466300886",
      "postal_code": "30520",
      "siren": "318759941",
      "siret": "31875994100038",
      "status": "EMPTY_STATUS",
      "store_name": "Societe Nouvelle Alesienne De Produits De Patisser",
      "street": "le Devois",
      "street_number": null,
      "turnover": null,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RONCHIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 678683,
      "email": null,
      "id": 4611,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016867252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 674085737",
      "postal_code": "59790",
      "siren": "304979032",
      "siret": "30497903200014",
      "status": "P",
      "store_name": "Boulangeriec au Pain d'Aujourd'hui",
      "street": "avenue Jean Jaures",
      "street_number": 137,
      "turnover": 85000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VENCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 684410,
      "email": "reservation@chateau-st-martin.com",
      "id": 6,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "05223001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93580202",
      "postal_code": "06140",
      "siren": "382846418",
      "siret": "38284641800020",
      "status": "P",
      "store_name": "Hôtel Restaurant Chateau du Domaine Saint Martin",
      "street": "avenue des Templiers",
      "street_number": 2490,
      "turnover": 10000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "REIMS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 684950,
      "email": "colpart.carine@yahoo.fr",
      "id": 4640,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326072819",
      "postal_code": "51100",
      "siren": "440969939",
      "siret": "44096993900022",
      "status": "M",
      "store_name": "Boulangerie Colpart",
      "street": "rue Camille Lenoir",
      "street_number": 135,
      "turnover": 263117,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TALLOIRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 688798,
      "email": "reception@perebise.com",
      "id": 10,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "02034001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50607201",
      "postal_code": "74290",
      "siren": "350547816",
      "siret": "35054781600016",
      "status": "P",
      "store_name": "Hotel Restaurant Auberge Du Pere Bise",
      "street": "route du Port",
      "street_number": null,
      "turnover": 1000,
      "user_id": 263,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLOHARS FOUESNANT",
      "client_creation_date": "Mr Hervé",
      "closing_days_ids": [],
      "datlinq_code": 704695,
      "email": "info@campingbenodet.fr",
      "id": 32331,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "22248001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-98570238",
      "postal_code": "29950",
      "siren": "390289221",
      "siret": "39028922100017",
      "status": "M",
      "store_name": "Camping du Port de Plaisance",
      "street": "Prad Poullou",
      "street_number": null,
      "turnover": 200000,
      "user_id": 147,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THUIR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985756,
      "email": null,
      "id": 18943,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468534037",
      "postal_code": "66300",
      "siren": "434524740",
      "siret": "43452474000025",
      "status": "P",
      "store_name": "Boulangerie Le Pain Du Roussillon",
      "street": "rue de la Salanque",
      "street_number": 3,
      "turnover": 295000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AURILLAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985759,
      "email": null,
      "id": 18944,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012143252110",
      "location_areas_ids": [],
      "owner_name": "CASSAN",
      "phone_number": "000-000",
      "postal_code": "15000",
      "siren": "439578469",
      "siret": "43957846900017",
      "status": "G",
      "store_name": "Boulangerie Cassan",
      "street": "rue d Illzach",
      "street_number": 1,
      "turnover": 250000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAULEON LICHARRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985760,
      "email": null,
      "id": 18945,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-59283730",
      "postal_code": "64130",
      "siren": "439739301",
      "siret": "43973930100018",
      "status": "P",
      "store_name": "Boulangerie Ludovic",
      "street": "avenue de Belzunce",
      "street_number": 26,
      "turnover": 200000,
      "user_id": 214,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA ROCHELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985852,
      "email": "philippe.loiseau67@gmail.com",
      "id": 19004,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXC60001",
      "location_areas_ids": [],
      "owner_name": "loiseau",
      "phone_number": "05-46437611",
      "postal_code": "17000",
      "siren": "430334656",
      "siret": "43033465600039",
      "status": "G",
      "store_name": "Boulangerie Philippe Loiseau",
      "street": "place de l Ile de France",
      "street_number": 1,
      "turnover": 500000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985888,
      "email": null,
      "id": 19025,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SAINT CRIQ JEAN PIERRE",
      "phone_number": "+33 561493507",
      "postal_code": "31300",
      "siren": "797466752",
      "siret": "79746675200012",
      "status": "P",
      "store_name": "Boulangerie aux Petits Fours",
      "street": "place de la Patte d Oie",
      "street_number": 7,
      "turnover": 500000,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DAX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985889,
      "email": "boulangerie.depart@wanadoo.fr",
      "id": 19026,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RP345001",
      "location_areas_ids": [],
      "owner_name": "DEPART",
      "phone_number": "05-58742712",
      "postal_code": "40100",
      "siren": "398937391",
      "siret": "39893739100017",
      "status": "M",
      "store_name": "Boulangerie Depart",
      "street": "place du Marechal Joffre",
      "street_number": 16,
      "turnover": 300000,
      "user_id": 210,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BIARRITZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985974,
      "email": null,
      "id": 19078,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-59039785",
      "postal_code": "64200",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Bourgeais Dominique",
      "street": "avenue Reine Victoria",
      "street_number": 49,
      "turnover": null,
      "user_id": 214,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CASTRES GIRONDE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985997,
      "email": null,
      "id": 19088,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "33640",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Soci‰Û_t‰Û_ De Panification",
      "street": "rue du President Carnot",
      "street_number": null,
      "turnover": null,
      "user_id": 202,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PUYLAURENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986042,
      "email": null,
      "id": 19114,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DULAC DENIS",
      "phone_number": "+33 563820589",
      "postal_code": "81700",
      "siren": "494931389",
      "siret": "49493138900014",
      "status": "M",
      "store_name": "Boulangerie Le Moulin Du Girou",
      "street": "Prat Martel",
      "street_number": null,
      "turnover": 350000,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986048,
      "email": "artak.apoyan@yahoo.fr",
      "id": 19120,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91265293",
      "postal_code": "13009",
      "siren": "489768275",
      "siret": "48976827500013",
      "status": "P",
      "store_name": "Boulangerie Alice Et Arsen",
      "street": "boulevard Romain Rolland",
      "street_number": 397,
      "turnover": 228000,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST LAURENT DE LA SALANQUE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986061,
      "email": "edithchristophe66@orange.fr / stephane.grotter@orange.fr",
      "id": 19130,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013225252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468282461",
      "postal_code": "66250",
      "siren": "518962873",
      "siret": "51896287300015",
      "status": "G",
      "store_name": "Boulangerie Stéphane Grotter",
      "street": "rue Gabriel Peri",
      "street_number": 13,
      "turnover": 380000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROYAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986102,
      "email": null,
      "id": 19166,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0961F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46390137",
      "postal_code": "17200",
      "siren": "499221364",
      "siret": "49536011700016",
      "status": "G",
      "store_name": "Boulangerie Binjamin",
      "street": "boulevard Champlain",
      "street_number": 85,
      "turnover": 360000,
      "user_id": 152,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CASTELNAUD LA CHAPELLE",
      "client_creation_date": "2005-06-01",
      "closing_days_ids": [],
      "datlinq_code": 986496,
      "email": null,
      "id": 19195,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXB99001",
      "location_areas_ids": [],
      "owner_name": "CARRE",
      "phone_number": "05-53593390",
      "postal_code": "24250",
      "siren": "510445885",
      "siret": "51044588500013",
      "status": "G",
      "store_name": "Boulangerie Delices et Traditions",
      "street": "lieu dit Tournepique",
      "street_number": null,
      "turnover": 600000,
      "user_id": 198,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STE MAURE DE TOURAINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986675,
      "email": null,
      "id": 19227,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "37800",
      "siren": "528371412",
      "siret": "52837141200016",
      "status": "P",
      "store_name": "Boulangerie La Baguette Rustique",
      "street": "rue Auguste Chevallier",
      "street_number": 27,
      "turnover": 170000,
      "user_id": 140,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAUDENEY SUR MOSELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986736,
      "email": null,
      "id": 19239,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83432041",
      "postal_code": "54200",
      "siren": "323583047",
      "siret": "32358304700010",
      "status": "P",
      "store_name": "Boulangerie Gerard Alison",
      "street": "rue Edmond Gerard",
      "street_number": 61,
      "turnover": 130000,
      "user_id": 108,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986812,
      "email": null,
      "id": 19271,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231930288",
      "postal_code": "14000",
      "siren": "330461773",
      "siret": "33046177300054",
      "status": "P",
      "store_name": "Boulangerie Dominique",
      "street": "avenue Professeur Horatio Smith",
      "street_number": 15,
      "turnover": 280000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FONTAINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986816,
      "email": null,
      "id": 19274,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "38857001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76271213",
      "postal_code": "38600",
      "siren": "330675828",
      "siret": "33067582800025",
      "status": "G",
      "store_name": "Boulangerie De Freitas",
      "street": "avenue du Vercors",
      "street_number": 73,
      "turnover": 506000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ÉPERNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986819,
      "email": null,
      "id": 50462,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 237834052",
      "postal_code": "28230",
      "siren": "330725839",
      "siret": "33072583900022",
      "status": "P",
      "store_name": "Patisserie Ravel",
      "street": "Rue Paul Painlevé",
      "street_number": 2,
      "turnover": 350000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986821,
      "email": null,
      "id": 46589,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43595231",
      "postal_code": "75008",
      "siren": "503436214",
      "siret": "50343621400012",
      "status": "EMPTY_STATUS",
      "store_name": "la Suite Haussmann",
      "street": "boulevard Haussmann",
      "street_number": 146,
      "turnover": null,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AVIGNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986838,
      "email": null,
      "id": 32905,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0727G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-90862472",
      "postal_code": "84000",
      "siren": "505333351",
      "siret": "50533335100011",
      "status": "P",
      "store_name": "Patisserie La Tropezienne",
      "street": "rue Saint Agricol",
      "street_number": 22,
      "turnover": 150000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NEUFCHATEAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986871,
      "email": null,
      "id": 32911,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "43266001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-29941129",
      "postal_code": "88300",
      "siren": "333254993",
      "siret": "33325499300012",
      "status": "P",
      "store_name": "Patisserie Chocolaterie Goujaud Cavanna",
      "street": "rue Saint Jean",
      "street_number": 51,
      "turnover": 160000,
      "user_id": 109,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARCHES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987066,
      "email": null,
      "id": 19371,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-29327729",
      "postal_code": "88380",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie les Moulins de Séverine",
      "street": "rue de Remiremont",
      "street_number": 10,
      "turnover": 180000,
      "user_id": 109,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NOVALAISE",
      "client_creation_date": "2004",
      "closing_days_ids": [],
      "datlinq_code": 987074,
      "email": null,
      "id": 19375,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79287129",
      "postal_code": "73470",
      "siren": "330561259",
      "siret": "33056125900020",
      "status": "P",
      "store_name": "Boulangerie Bonnet",
      "street": "route du Col de l Epine",
      "street_number": 47,
      "turnover": 270000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARZON",
      "client_creation_date": "2-5-2010",
      "closing_days_ids": [],
      "datlinq_code": 987135,
      "email": null,
      "id": 19407,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1006D001",
      "location_areas_ids": [],
      "owner_name": "BRUNET",
      "phone_number": "02-97537217",
      "postal_code": "56640",
      "siren": "388758609",
      "siret": "38875860900050",
      "status": "G",
      "store_name": "Boulangerie Brunet",
      "street": "rue des Mouettes",
      "street_number": 1,
      "turnover": 450000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LES MOUTIERS EN RETZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987181,
      "email": null,
      "id": 19430,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40827547",
      "postal_code": "44760",
      "siren": "344373931",
      "siret": "34437393100015",
      "status": "P",
      "store_name": "Boulangerie Mellerin",
      "street": "rue de l Abbe Baconnais",
      "street_number": 11,
      "turnover": 180000,
      "user_id": 144,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROQUEBILLIERE",
      "client_creation_date": "2002-05-01",
      "closing_days_ids": [],
      "datlinq_code": 987311,
      "email": null,
      "id": 291,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0103D001",
      "location_areas_ids": [],
      "owner_name": "SOMAINI",
      "phone_number": "04-93034081",
      "postal_code": "06450",
      "siren": "338969454",
      "siret": "33896945400010",
      "status": "G",
      "store_name": "Boulangerie Jean Pierre Somaini",
      "street": "av Philippe Corniglion Molinier",
      "street_number": 9,
      "turnover": 450000,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAULNIERES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987335,
      "email": null,
      "id": 19515,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-99446195",
      "postal_code": "35320",
      "siren": "341300580",
      "siret": "34130058000022",
      "status": "P",
      "store_name": "Patisserie Ruaudel",
      "street": "rue des Saulniers",
      "street_number": 6,
      "turnover": 120000,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA MOTTE D AVEILLANS",
      "client_creation_date": "07/1989",
      "closing_days_ids": [],
      "datlinq_code": 987435,
      "email": null,
      "id": 19563,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Broutin",
      "phone_number": "04-76306126",
      "postal_code": "38770",
      "siren": "352138457",
      "siret": "35213845700036",
      "status": "P",
      "store_name": "Boulangerie Des Mottes",
      "street": "route de la Roche",
      "street_number": 2,
      "turnover": 100000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JARD SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987462,
      "email": null,
      "id": 19582,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-51334009",
      "postal_code": "85520",
      "siren": "402756324",
      "siret": "40275632400024",
      "status": "M",
      "store_name": "Boulangerie Patisserie Fradet",
      "street": "place de l Hotel de Ville",
      "street_number": 5,
      "turnover": 730000,
      "user_id": 153,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHARPEY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987478,
      "email": null,
      "id": 19589,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-75598695",
      "postal_code": "26300",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Au Pain Vivant",
      "street": "route de Chabeuil",
      "street_number": null,
      "turnover": 110000,
      "user_id": 170,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PRECIGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987480,
      "email": null,
      "id": 19591,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 962246545",
      "postal_code": "72300",
      "siren": "378918114",
      "siret": "37891811400026",
      "status": "M",
      "store_name": "Boulangerie Thierry Gaugain",
      "street": "rue Abbe Louis Chevallier",
      "street_number": 3,
      "turnover": 360000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAICHE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987489,
      "email": null,
      "id": 19598,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003950252110",
      "location_areas_ids": [],
      "owner_name": "RICHARD",
      "phone_number": "+33 381640047",
      "postal_code": "25120",
      "siren": "379490246",
      "siret": "37949024600012",
      "status": "P",
      "store_name": "Boulangerie Richard",
      "street": "rue du General de Gaulle",
      "street_number": 13,
      "turnover": 410000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STE FOY LES LYON",
      "client_creation_date": "2013",
      "closing_days_ids": [],
      "datlinq_code": 718435,
      "email": null,
      "id": 19,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "69811001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78844862",
      "postal_code": "69110",
      "siren": "798483491",
      "siret": "79848349100014",
      "status": "M",
      "store_name": "Boulangerie la Caserne des Pains",
      "street": "avenue de Limburg",
      "street_number": 5,
      "turnover": 320000,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST BREVIN LES PINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 718631,
      "email": null,
      "id": 4723,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40270602",
      "postal_code": "44250",
      "siren": "492818414",
      "siret": "49281841400038",
      "status": "M",
      "store_name": "Boulangerie Denion",
      "street": "avenue du President Roosevelt",
      "street_number": 48,
      "turnover": 250000,
      "user_id": 144,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST QUENTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 719241,
      "email": null,
      "id": 32360,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010006966252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 323683908",
      "postal_code": "02100",
      "siren": "804059632",
      "siret": "80405963200013",
      "status": "P",
      "store_name": "Le Neuville",
      "street": "avenue Pierre Choquart",
      "street_number": 1,
      "turnover": 140000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 719310,
      "email": null,
      "id": 20,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "M2924001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93387279",
      "postal_code": "06400",
      "siren": "316919174",
      "siret": "31691917400029",
      "status": "P",
      "store_name": "Restaurant Canelle",
      "street": "rue des Serbes",
      "street_number": 32,
      "turnover": 10000,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEMOMBLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 719494,
      "email": null,
      "id": 725,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48556981",
      "postal_code": "93250",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Chocolaterie Viridiana",
      "street": "avenue Outrebon",
      "street_number": 35,
      "turnover": null,
      "user_id": 74,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 719817,
      "email": null,
      "id": 46537,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561252827",
      "postal_code": "31400",
      "siren": "489349449",
      "siret": "48934944900020",
      "status": "EMPTY_STATUS",
      "store_name": "Le Zagora",
      "street": "avenue de l Urss",
      "street_number": 6,
      "turnover": null,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STRASBOURG",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 719913,
      "email": null,
      "id": 4725,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "70074001",
      "location_areas_ids": [],
      "owner_name": "Bouali",
      "phone_number": "03-88324347",
      "postal_code": "67000",
      "siren": "523107126",
      "siret": "52310712600014",
      "status": "M",
      "store_name": "Boulangerie la Petite France",
      "street": "Grand Rue",
      "street_number": 98,
      "turnover": 320000,
      "user_id": 112,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLENAVE D ORNON",
      "client_creation_date": "2010-01-01",
      "closing_days_ids": [],
      "datlinq_code": 720842,
      "email": null,
      "id": 4728,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXD74001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56871763",
      "postal_code": "33140",
      "siren": "523291896",
      "siret": "52329189600018",
      "status": "M",
      "store_name": "Boulangerie Wildah Chapelle",
      "street": "rue Marcel Cachin",
      "street_number": 13,
      "turnover": 315000,
      "user_id": 202,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 721407,
      "email": null,
      "id": 32361,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "J1007001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42610590",
      "postal_code": "75001",
      "siren": "479256760",
      "siret": "47925676000014",
      "status": "M",
      "store_name": "Ebisu",
      "street": "rue Saint Roch",
      "street_number": 19,
      "turnover": 300000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARRAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 721878,
      "email": null,
      "id": 41403,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010029757252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321512970",
      "postal_code": "62000",
      "siren": "508588845",
      "siret": "50858884500018",
      "status": "P",
      "store_name": "Restaurant le Petit Rat Porteur",
      "street": "Rue de la Taillerie",
      "street_number": 11,
      "turnover": 20000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "L ILE ROUSSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 722687,
      "email": null,
      "id": 33454,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RLQ02001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "20220",
      "siren": "520730680",
      "siret": "52073068000011",
      "status": "M",
      "store_name": "Point chaud Pane Untu",
      "street": "Place Du Monument aux morts",
      "street_number": 0,
      "turnover": 347400,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PORT MARLY",
      "client_creation_date": "Pizzeria",
      "closing_days_ids": [],
      "datlinq_code": 724060,
      "email": null,
      "id": 32363,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "U0796001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-39584456",
      "postal_code": "78560",
      "siren": "478255896",
      "siret": "47825589600019",
      "status": "P",
      "store_name": "le Bistrot Italien",
      "street": "rue de Paris",
      "street_number": 7,
      "turnover": 200000,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JULIEN EN ST ALBAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 724277,
      "email": null,
      "id": 729,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Martinez",
      "phone_number": "+33 475653278",
      "postal_code": "07000",
      "siren": "403281884",
      "siret": "40328188400011",
      "status": "P",
      "store_name": "Point Chaud la Valentine",
      "street": "route Departementale 104",
      "street_number": null,
      "turnover": 100000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "METZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 724336,
      "email": null,
      "id": 32364,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010004811252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387386060",
      "postal_code": "57000",
      "siren": "957503931",
      "siret": "95750393100579",
      "status": "EMPTY_STATUS",
      "store_name": "Galeries Lafayette",
      "street": "rue Winston Churchill",
      "street_number": 4,
      "turnover": null,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "USSEAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 725142,
      "email": null,
      "id": 32365,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "LI360001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-49049302",
      "postal_code": "79210",
      "siren": "327635058",
      "siret": "32763505800024",
      "status": "P",
      "store_name": "Restaurant Chez Dominique",
      "street": "route de la Foret",
      "street_number": 4,
      "turnover": 20000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COLMAR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 725284,
      "email": null,
      "id": 32366,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "63286001",
      "location_areas_ids": [],
      "owner_name": "Hébert ",
      "phone_number": "03-89237081",
      "postal_code": "68000",
      "siren": "342974367",
      "siret": "34297436700019",
      "status": "P",
      "store_name": "Au Croissant Dore",
      "street": "rue des Marchands",
      "street_number": 28,
      "turnover": 1000,
      "user_id": 111,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 725844,
      "email": null,
      "id": 32368,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010014744252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386653199",
      "postal_code": "89100",
      "siren": "305541757",
      "siret": "30554175700020",
      "status": "P",
      "store_name": "Bar Du Palais",
      "street": "Grande Rue",
      "street_number": 7,
      "turnover": 50000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOCHES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 726110,
      "email": null,
      "id": 47541,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1223G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-47592559",
      "postal_code": "37600",
      "siren": "508916012",
      "siret": "50891601200018",
      "status": "M",
      "store_name": "Restaurant La Crepicoise",
      "street": "rue Picois",
      "street_number": 3,
      "turnover": 200000,
      "user_id": 140,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 727731,
      "email": null,
      "id": 46539,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-11089341",
      "postal_code": "75019",
      "siren": "423086610",
      "siret": "42308661000015",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie Itsik",
      "street": "avenue Secretan",
      "street_number": 78,
      "turnover": null,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RENNES",
      "client_creation_date": "2010-08-02",
      "closing_days_ids": [],
      "datlinq_code": 728396,
      "email": null,
      "id": 4740,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Andrieux",
      "phone_number": "02-99368901",
      "postal_code": "35000",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "Boulangerie aux Gourmandises de Gregoire",
      "street": "rue de Paris",
      "street_number": 111,
      "turnover": 306843,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANNECY LE VIEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 728965,
      "email": null,
      "id": 4743,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50232503",
      "postal_code": "74940",
      "siren": "531831253",
      "siret": "53183125300012",
      "status": "G",
      "store_name": "Rispe pan et gato",
      "street": "rue du Pre d Avril",
      "street_number": 6,
      "turnover": 925000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAGNES SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 729024,
      "email": null,
      "id": 24,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "05378001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93310775",
      "postal_code": "06800",
      "siren": "798506051",
      "siret": "0",
      "status": "P",
      "store_name": "Restaurant la Bourride",
      "street": "rue Capitaine de Fregate H Vial",
      "street_number": 5,
      "turnover": 10000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAILLY ROMAINVILLIERS",
      "client_creation_date": "1-12-2010",
      "closing_days_ids": [],
      "datlinq_code": 729352,
      "email": null,
      "id": 4744,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Lelievre Isabelle De Sousa",
      "phone_number": "01-60422835",
      "postal_code": "77700",
      "siren": "528865660",
      "siret": "52886566000013",
      "status": "M",
      "store_name": "Boulangerie la Boite a Pain",
      "street": "boulevard des Sports",
      "street_number": 7,
      "turnover": 435599,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "EYMET",
      "client_creation_date": "2008",
      "closing_days_ids": [],
      "datlinq_code": 730049,
      "email": null,
      "id": 32372,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "IF136001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-53227283",
      "postal_code": "24500",
      "siren": "448106161",
      "siret": "44810616100012",
      "status": "P",
      "store_name": "Restaurant la Cour d'Eymet",
      "street": "boulevard National",
      "street_number": 32,
      "turnover": 100,
      "user_id": 198,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAGNES SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 730223,
      "email": null,
      "id": 34411,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0114W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93310007",
      "postal_code": "06800",
      "siren": "312733975",
      "siret": "31273397500014",
      "status": "P",
      "store_name": "Restaurant Charlot 1er",
      "street": "promenade de la Plage",
      "street_number": 87,
      "turnover": 20000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NARBONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 730554,
      "email": null,
      "id": 50373,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468327670",
      "postal_code": "11100",
      "siren": "508599271",
      "siret": "50859927100014",
      "status": "EMPTY_STATUS",
      "store_name": "La Grande Brasserie",
      "street": "boulevard de Creissel",
      "street_number": 24,
      "turnover": null,
      "user_id": 440,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BERCK",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 730641,
      "email": null,
      "id": 50374,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321843820",
      "postal_code": "62600",
      "siren": "792765711",
      "siret": "79276571100025",
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant la Grilladine",
      "street": "rue Carnot",
      "street_number": 76,
      "turnover": null,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PEISEY NANCROIX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 730864,
      "email": null,
      "id": 25,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0159E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79075092",
      "postal_code": "73210",
      "siren": "534561519",
      "siret": "53456151900016",
      "status": "P",
      "store_name": "Restaurant l'Alpage de Peisey",
      "street": "Peisey",
      "street_number": null,
      "turnover": 150000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MARTIN AUX BOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 731062,
      "email": null,
      "id": 37282,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0055C001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-44506124",
      "postal_code": "60420",
      "siren": "509724233",
      "siret": "50972423300010",
      "status": "P",
      "store_name": "Bar Restaurant de l Abbaye",
      "street": "rue de l Abbaye",
      "street_number": 487,
      "turnover": 100000,
      "user_id": 311,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "2007-08-01",
      "closing_days_ids": [],
      "datlinq_code": 731099,
      "email": null,
      "id": 26,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "ND031001",
      "location_areas_ids": [],
      "owner_name": "Alexandre Heissat",
      "phone_number": "04-78610028",
      "postal_code": "69007",
      "siren": "498789460",
      "siret": "49878946000017",
      "status": "G",
      "store_name": "Boulangerie La Mie du Pain",
      "street": "rue Garibaldi",
      "street_number": 304,
      "turnover": 529637,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 731105,
      "email": null,
      "id": 736,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-44064565",
      "postal_code": "75013",
      "siren": "449636042",
      "siret": "44963604200011",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie la Grignote",
      "street": "rue de Tolbiac",
      "street_number": 10,
      "turnover": 208106,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 731596,
      "email": null,
      "id": 37283,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1043E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45395541",
      "postal_code": "75014",
      "siren": "538485665",
      "siret": "53848566500011",
      "status": "P",
      "store_name": "Restaurant la Porte Didot",
      "street": "boulevard Brune",
      "street_number": 77,
      "turnover": 100,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BERNIN",
      "client_creation_date": "2010",
      "closing_days_ids": [],
      "datlinq_code": 731759,
      "email": null,
      "id": 4750,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "OD298001",
      "location_areas_ids": [],
      "owner_name": "MORHAIN",
      "phone_number": "09-83400260",
      "postal_code": "38190",
      "siren": "523953842",
      "siret": "52395384200011",
      "status": "M",
      "store_name": "Boulangerie la Boulange",
      "street": "route Departementale 1090",
      "street_number": 134,
      "turnover": 180000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "2010-07-01",
      "closing_days_ids": [],
      "datlinq_code": 731825,
      "email": null,
      "id": 27,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "M2955001",
      "location_areas_ids": [],
      "owner_name": "LAMINE",
      "phone_number": "06-14913382",
      "postal_code": "06000",
      "siren": "523899854",
      "siret": "52389985400013",
      "status": "P",
      "store_name": "Boulangerie Lamine",
      "street": "avenue du Marechal Lyautey",
      "street_number": 79,
      "turnover": 220000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATENOY EN BRESSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 731856,
      "email": null,
      "id": 50375,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010033819252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 385415714",
      "postal_code": "71380",
      "siren": "422609107",
      "siret": "42260910700012",
      "status": "G",
      "store_name": "Restaurant la Roseraie Chalon",
      "street": "Prairie Saint Nicolas",
      "street_number": null,
      "turnover": 200000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHANTELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 732214,
      "email": null,
      "id": 39893,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0424F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "09-50755366",
      "postal_code": "03140",
      "siren": "802333856",
      "siret": null,
      "status": "P",
      "store_name": "Restaurant la Taverne",
      "street": "Grande Rue",
      "street_number": 22,
      "turnover": 190000,
      "user_id": 51,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE THOLONET",
      "client_creation_date": "31-10-2012",
      "closing_days_ids": [],
      "datlinq_code": 732801,
      "email": null,
      "id": 4751,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Anthony Guichard",
      "phone_number": "06-62525585",
      "postal_code": "13100",
      "siren": "789034774",
      "siret": "78903477400016",
      "status": "M",
      "store_name": "Boulangerie Anthony",
      "street": "Espace commercial du Moulin - lot 11 - avenue Paul JULLIEN",
      "street_number": 1652,
      "turnover": 500000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOUGUENAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 733144,
      "email": null,
      "id": 4752,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "3471E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-20315364",
      "postal_code": "44340",
      "siren": "431612704",
      "siret": "43161270400020",
      "status": "P",
      "store_name": "Boulangerie les Saveurs d'Autrefois",
      "street": "rue de la Paix",
      "street_number": 10,
      "turnover": 200000,
      "user_id": 138,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LUMIO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 733269,
      "email": null,
      "id": 32375,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0975D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-95651120",
      "postal_code": "20260",
      "siren": "321500472",
      "siret": "32150047200022",
      "status": "M",
      "store_name": "Restaurant le Blockos",
      "street": "route de Calvi",
      "street_number": null,
      "turnover": 350000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BORDEAUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 733297,
      "email": null,
      "id": 4753,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56930015",
      "postal_code": "33000",
      "siren": "422756122",
      "siret": "42275612200111",
      "status": "P",
      "store_name": "Boulangerie Pain Maitre",
      "street": "rue du Chateau d Eau",
      "street_number": 54,
      "turnover": 200000,
      "user_id": 205,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANCY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 733630,
      "email": null,
      "id": 32377,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "40022001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83351756",
      "postal_code": "54000",
      "siren": "493793889",
      "siret": "49379388900012",
      "status": "P",
      "store_name": "Pizzeria Le Capri",
      "street": "rue Stanislas",
      "street_number": 26,
      "turnover": 1000,
      "user_id": 106,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NIEPPE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 733849,
      "email": null,
      "id": 37284,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016896252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320489713",
      "postal_code": "59850",
      "siren": "349259127",
      "siret": "34925912700026",
      "status": "P",
      "store_name": "Restaurant le Clos du Bac",
      "street": "rue de la Croix du Bac",
      "street_number": 664,
      "turnover": 110000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 733861,
      "email": null,
      "id": 32378,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010002759252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321314395",
      "postal_code": "62200",
      "siren": "333531044",
      "siret": "33353104400019",
      "status": "P",
      "store_name": "Restaurant Le Chatillon",
      "street": "rue Charles Tellier",
      "street_number": 6,
      "turnover": 80000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANGERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 734221,
      "email": null,
      "id": 37285,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010006725252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241708884",
      "postal_code": "49100",
      "siren": "801369786",
      "siret": "80136978600018",
      "status": "P",
      "store_name": "Fabricant le Fournil du Levant",
      "street": "rue du Soleil Levant",
      "street_number": 7,
      "turnover": 160000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 734244,
      "email": null,
      "id": 32379,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R4005001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43542455",
      "postal_code": "75005",
      "siren": "315430793",
      "siret": "31543079300010",
      "status": "EMPTY_STATUS",
      "store_name": "Le Depart",
      "street": "place Saint Michel",
      "street_number": 1,
      "turnover": null,
      "user_id": 91,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURCOING",
      "client_creation_date": "2009-04-29",
      "closing_days_ids": [],
      "datlinq_code": 736207,
      "email": null,
      "id": 740,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "HADHOM",
      "phone_number": "+33 320947091",
      "postal_code": "59200",
      "siren": "512177924",
      "siret": "51217792400010",
      "status": "P",
      "store_name": "Au Ble Dorer",
      "street": "rue du Pont de Neuville",
      "street_number": 232,
      "turnover": 8000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHELLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 736784,
      "email": null,
      "id": 46542,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Barba",
      "phone_number": "01-64729716",
      "postal_code": "77500",
      "siren": "351285069",
      "siret": "35128506900016",
      "status": "M",
      "store_name": "Restaurant le Rocael Club",
      "street": "rue Auguste Meunier",
      "street_number": 74,
      "turnover": 300000,
      "user_id": 311,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUCROISSANT",
      "client_creation_date": "2011-05-01",
      "closing_days_ids": [],
      "datlinq_code": 736883,
      "email": "yoann.palomino@yahoo.fr",
      "id": 4760,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1304F001",
      "location_areas_ids": [],
      "owner_name": "Palomino",
      "phone_number": "04-76329821",
      "postal_code": "38140",
      "siren": "821598810",
      "siret": "53159930600010",
      "status": "P",
      "store_name": "Boulangerie le Beau Croissant",
      "street": "rue du Bourg",
      "street_number": 75,
      "turnover": 120000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AIX EN PROVENCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 737271,
      "email": null,
      "id": 741,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "13090",
      "siren": "484474184",
      "siret": "48447418400013",
      "status": "P",
      "store_name": "Restaurant l'Escargot",
      "street": "avenue Winston Churchill",
      "street_number": 10,
      "turnover": 10000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANCY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 737291,
      "email": "lescesars@wanadoo.fr",
      "id": 41405,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1140F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83320886",
      "postal_code": "54000",
      "siren": "378232789",
      "siret": "37823278900016",
      "status": "P",
      "store_name": "Pizzeria les Cesars (Michelangelo)",
      "street": "place Stanislas",
      "street_number": 8,
      "turnover": 50000,
      "user_id": 106,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAVAY",
      "client_creation_date": "1992-01-01",
      "closing_days_ids": [],
      "datlinq_code": 737676,
      "email": null,
      "id": 37288,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010006682252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 327668700",
      "postal_code": "59570",
      "siren": "793602830",
      "siret": "79360283000028",
      "status": "P",
      "store_name": "Restaurant le Bagacum",
      "street": "rue d Audignies",
      "street_number": 2,
      "turnover": 160000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST EMILION",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 738183,
      "email": null,
      "id": 32384,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "IF137001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-57744633",
      "postal_code": "33330",
      "siren": "432174001",
      "siret": "43217400100011",
      "status": "P",
      "store_name": "Restaurant le Tertre",
      "street": "tertre de la Tente",
      "street_number": 5,
      "turnover": 100,
      "user_id": 203,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JASSANS RIOTTIER",
      "client_creation_date": "2006-06-13",
      "closing_days_ids": [],
      "datlinq_code": 738405,
      "email": null,
      "id": 4766,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012947252110",
      "location_areas_ids": [],
      "owner_name": "GRIZARD",
      "phone_number": "+33 474609203",
      "postal_code": "01480",
      "siren": "490498029",
      "siret": "49049802900019",
      "status": "G",
      "store_name": "Pains et Gourmandises",
      "street": "rue du Beaujolais",
      "street_number": 220,
      "turnover": 590000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WORMHOUT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 738697,
      "email": null,
      "id": 37289,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011981252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328656638",
      "postal_code": "59470",
      "siren": "418579413",
      "siret": "41857941300018",
      "status": "P",
      "store_name": "Restaurant l'Hofland",
      "street": "route d Herzeele",
      "street_number": 730,
      "turnover": 50000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAZAN",
      "client_creation_date": "02/06/2016",
      "closing_days_ids": [],
      "datlinq_code": 739375,
      "email": null,
      "id": 47544,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Maillaud ",
      "phone_number": "04-90698764",
      "postal_code": "84380",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "Restaurant l'Oulo",
      "street": "la Venue de Mormoiron",
      "street_number": 500,
      "turnover": 500000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTERRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 739547,
      "email": null,
      "id": 41406,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-46950796",
      "postal_code": "92000",
      "siren": "435291471",
      "siret": "43529147100025",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwichs Alvaro Cafe",
      "street": "rue des 3 Fontanot",
      "street_number": 70,
      "turnover": null,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THONON LES BAINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 740021,
      "email": null,
      "id": 28,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0584D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50261799",
      "postal_code": "74200",
      "siren": "482983822",
      "siret": "48298382200016",
      "status": "P",
      "store_name": "Le Bosphore",
      "street": "rue des Granges",
      "street_number": 32,
      "turnover": 1000,
      "user_id": 263,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTIGNY LES CORMEILLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 740245,
      "email": null,
      "id": 32386,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0940W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-30260222",
      "postal_code": "95370",
      "siren": "488693920",
      "siret": "48869392000024",
      "status": "P",
      "store_name": "Presto Pizza",
      "street": "residence de la Gare",
      "street_number": 20,
      "turnover": 80000,
      "user_id": 80,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEFRANCHE SUR SAONE",
      "client_creation_date": "2009",
      "closing_days_ids": [],
      "datlinq_code": 740424,
      "email": null,
      "id": 38109,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "VEZIAN ",
      "phone_number": "09-80386664",
      "postal_code": "69400",
      "siren": "749904033",
      "siret": "74990403300018",
      "status": "G",
      "store_name": "Sandwicherie Pain et Compagnie",
      "street": "rue de la Paix",
      "street_number": 152,
      "turnover": 450000,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THIVARS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 740810,
      "email": null,
      "id": 32387,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010006773252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 237263031",
      "postal_code": "28630",
      "siren": "448928945",
      "siret": "44892894500014",
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant le P'Thivars",
      "street": "rue Nationale",
      "street_number": 23,
      "turnover": 90000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AJACCIO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 740872,
      "email": null,
      "id": 32388,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1082B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "20000",
      "siren": "482168010",
      "siret": "48216801000015",
      "status": "P",
      "store_name": "Le Passe Temps",
      "street": "rue du Cardinal Fesch",
      "street_number": 37,
      "turnover": 197000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 740927,
      "email": null,
      "id": 32389,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010002376252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235211478",
      "postal_code": "76600",
      "siren": "400260956",
      "siret": "40026095600018",
      "status": "P",
      "store_name": "Creperie la Cave",
      "street": "avenue Rene Coty",
      "street_number": 49,
      "turnover": 50000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "IVRY SUR SEINE",
      "client_creation_date": "1-1-2003",
      "closing_days_ids": [],
      "datlinq_code": 741179,
      "email": null,
      "id": 4772,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-46710103",
      "postal_code": "94200",
      "siren": "478588106",
      "siret": "0",
      "status": "P",
      "store_name": "Boulangerie au Vieux Moulin",
      "street": "rue Barbes",
      "street_number": 7,
      "turnover": 300000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 741245,
      "email": null,
      "id": 39894,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45848784",
      "postal_code": "75013",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie Mekong",
      "street": "rue de Tolbiac",
      "street_number": 135,
      "turnover": null,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ÉCOURT-SAINT-QUENTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 741429,
      "email": null,
      "id": 32390,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010019214252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321484569",
      "postal_code": "62860",
      "siren": "422353599",
      "siret": "42235359900018",
      "status": "P",
      "store_name": "Restaurant Maison Merlin",
      "street": "Rue Henri Barbusse",
      "street_number": 198,
      "turnover": 50000,
      "user_id": 416,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARTIGUES",
      "client_creation_date": "1-1-2008",
      "closing_days_ids": [],
      "datlinq_code": 741456,
      "email": null,
      "id": 4774,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "RICCI",
      "phone_number": "04-42421666",
      "postal_code": "13500",
      "siren": "524666039",
      "siret": "52466603900010",
      "status": "M",
      "store_name": "Boulangerie le Fournil de l'ile",
      "street": "rue de la Republique",
      "street_number": 15,
      "turnover": 220000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARTIGUES",
      "client_creation_date": "1-1-1999",
      "closing_days_ids": [],
      "datlinq_code": 741766,
      "email": "magreda@hotmail.fr",
      "id": 4776,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RLO24001",
      "location_areas_ids": [],
      "owner_name": "BANINO Marc",
      "phone_number": "04-42445809",
      "postal_code": "13500",
      "siren": "523805182",
      "siret": "52380518200012",
      "status": "G",
      "store_name": "Boulangerie la Dolce Vita",
      "street": "rue Olivier Griscelli",
      "street_number": 5,
      "turnover": 600000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BERCK",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 741861,
      "email": null,
      "id": 32391,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016879252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321098040",
      "postal_code": "62600",
      "siren": "617320148",
      "siret": "61732014800019",
      "status": "P",
      "store_name": "Hotel Reingam Park",
      "street": "chemin Genty",
      "street_number": null,
      "turnover": 50000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MORTCERF",
      "client_creation_date": "1-8-2012",
      "closing_days_ids": [],
      "datlinq_code": 742273,
      "email": null,
      "id": 4778,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ROBARD",
      "phone_number": "01-64656421",
      "postal_code": "77163",
      "siren": "753089911",
      "siret": "75308991100014",
      "status": "P",
      "store_name": "La P'tite Boulangerie",
      "street": "rue du 27 Aout",
      "street_number": 67,
      "turnover": 284000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BANYULS SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 742280,
      "email": null,
      "id": 50376,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010034009252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 618163594",
      "postal_code": "66650",
      "siren": "829462084",
      "siret": "82946208400015",
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant la Vieille Cave",
      "street": "rue Marius Douzans",
      "street_number": 12,
      "turnover": null,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 742728,
      "email": null,
      "id": 4779,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BODIAN",
      "phone_number": "01-46064181",
      "postal_code": "75018",
      "siren": "531316602",
      "siret": "53131660200014",
      "status": "G",
      "store_name": "Boulangerie le Grenier a Pain",
      "street": "rue des Abbesses",
      "street_number": 38,
      "turnover": 976000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTEVRAIN",
      "client_creation_date": "04/1998",
      "closing_days_ids": [],
      "datlinq_code": 742757,
      "email": null,
      "id": 46543,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0031G001",
      "location_areas_ids": [],
      "owner_name": "Chaudhry",
      "phone_number": "01-60360606",
      "postal_code": "77144",
      "siren": "418922647",
      "siret": "41892264700015",
      "status": "G",
      "store_name": "Restaurant Planete Indienne",
      "street": "avenue Thibaud de Champagne",
      "street_number": 45,
      "turnover": 900000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WASIGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 742924,
      "email": null,
      "id": 4781,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 324722593",
      "postal_code": "08270",
      "siren": "787312651",
      "siret": "78731265100013",
      "status": "P",
      "store_name": "Boulangerie Coutelot",
      "street": "rue Basse",
      "street_number": 3,
      "turnover": 100000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VICO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 743845,
      "email": null,
      "id": 4783,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ORSINI",
      "phone_number": "04-95266251",
      "postal_code": "20160",
      "siren": "783038292",
      "siret": "78303829200018",
      "status": "P",
      "store_name": "Boulangerie Orsini Edmond",
      "street": "place Laurent Marie Savoyardi",
      "street_number": null,
      "turnover": 10000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE VESINET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 744632,
      "email": null,
      "id": 41408,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0910F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-30097150",
      "postal_code": "78110",
      "siren": "431425032",
      "siret": "43142503200015",
      "status": "P",
      "store_name": "Restaurant Pavillon des Ibis",
      "street": "ile des Ibis",
      "street_number": null,
      "turnover": 200000,
      "user_id": 96,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAR SUR AUBE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 744873,
      "email": null,
      "id": 32392,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016406252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 325271417",
      "postal_code": "10200",
      "siren": "412513277",
      "siret": "41251327700019",
      "status": "P",
      "store_name": "Restaurant l'Albatros",
      "street": "rue Nationale",
      "street_number": 136,
      "turnover": 20000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONT ST MARTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 745070,
      "email": null,
      "id": 32393,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003897252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 382255501",
      "postal_code": "54350",
      "siren": "378162283",
      "siret": "37816228300014",
      "status": "P",
      "store_name": "La Castellina Pizzeria",
      "street": "route de Longwy",
      "street_number": 130,
      "turnover": 1000,
      "user_id": 393,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CALAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 745349,
      "email": null,
      "id": 32394,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011663252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321973509",
      "postal_code": "62100",
      "siren": "380003467",
      "siret": "38000346700012",
      "status": "P",
      "store_name": "Pic Pouce",
      "street": "boulevard Victor Hugo",
      "street_number": 235,
      "turnover": 100000,
      "user_id": 422,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAMBALLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 746151,
      "email": null,
      "id": 4790,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "LEVAILLANT JACQUES",
      "phone_number": "02-96310231",
      "postal_code": "22400",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Levaillant le Goualher",
      "street": "rue Bario",
      "street_number": 4,
      "turnover": 441850,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 746601,
      "email": null,
      "id": 4791,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45837791",
      "postal_code": "75013",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Myu Myu",
      "street": "rue Philibert Lucot",
      "street_number": 17,
      "turnover": 245545,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "OUDON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 746651,
      "email": null,
      "id": 4792,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40960849",
      "postal_code": "44521",
      "siren": "524208188",
      "siret": "52420818800010",
      "status": "P",
      "store_name": "Boulangerie les Délices De La Tour",
      "street": "rue Alphonse Fouschard",
      "street_number": 106,
      "turnover": 340000,
      "user_id": 144,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PLESSIS BOUCHARD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 747311,
      "email": null,
      "id": 32396,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1370B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-34145827",
      "postal_code": "95130",
      "siren": "383776416",
      "siret": "38377641600018",
      "status": "G",
      "store_name": "Repas 95",
      "street": "rue Louis Armand",
      "street_number": 9,
      "turnover": 1000000,
      "user_id": 80,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST FONS",
      "client_creation_date": "2009",
      "closing_days_ids": [],
      "datlinq_code": 747585,
      "email": null,
      "id": 31,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "U0136001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78709315",
      "postal_code": "69190",
      "siren": "950393793",
      "siret": "95039379300019",
      "status": "P",
      "store_name": "Restaurant Ferroux",
      "street": "rue Pasteur",
      "street_number": 9,
      "turnover": 230000,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TIFFAUGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 747723,
      "email": "contact@lepresbytere.fr",
      "id": 46544,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-51576339",
      "postal_code": "85130",
      "siren": "453688590",
      "siret": "45368859000018",
      "status": "P",
      "store_name": "Restaurant le Presbytère",
      "street": "place de l Eglise",
      "street_number": 3,
      "turnover": 80000,
      "user_id": 153,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOURGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 747822,
      "email": null,
      "id": 39895,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Santoro",
      "phone_number": "02-48242985",
      "postal_code": "18000",
      "siren": "342445178",
      "siret": "34244517800011",
      "status": "M",
      "store_name": "Restaurant Pizzeria Calabria",
      "street": "place du General Leclerc",
      "street_number": 14,
      "turnover": 460000,
      "user_id": 51,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARGENTEUIL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 747848,
      "email": null,
      "id": 32397,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "8,52E+03",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-34101997",
      "postal_code": "95100",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant Salon La Belle Alliance",
      "street": "rue Charles Michels",
      "street_number": 5,
      "turnover": null,
      "user_id": 79,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MEYTHET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 747975,
      "email": null,
      "id": 32,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "74966001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50227490",
      "postal_code": "74960",
      "siren": "481438513",
      "siret": "48143851300022",
      "status": "P",
      "store_name": "Pizza Pepone",
      "street": "rue du Vieux Moulin",
      "street_number": null,
      "turnover": 1000,
      "user_id": 263,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 748197,
      "email": null,
      "id": 32399,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "90331001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45551201",
      "postal_code": "75007",
      "siren": "612008219",
      "siret": "61200821900018",
      "status": "P",
      "store_name": "Restaurant Tribeca",
      "street": "rue Cler",
      "street_number": 36,
      "turnover": 0,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MALAUCENE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 748343,
      "email": null,
      "id": 47545,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DESPEISSE THIERRY",
      "phone_number": "04-90652357",
      "postal_code": "84340",
      "siren": "528834641",
      "siret": "52883464100011",
      "status": "P",
      "store_name": "Restaurant le Ventoux",
      "street": "avenue de Verdun",
      "street_number": null,
      "turnover": 168000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARCUEIL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 748907,
      "email": null,
      "id": 749,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42535748",
      "postal_code": "94110",
      "siren": "334297561",
      "siret": "33429756100022",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie la Grignote",
      "street": "avenue Jean Jaures",
      "street_number": 100,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GOURDON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 749695,
      "email": null,
      "id": 33,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "2094E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93096889",
      "postal_code": "06620",
      "siren": "803416510",
      "siret": "32227405100026",
      "status": "P",
      "store_name": "Epicerie Sainte Catherine",
      "street": "place Sainte Catherine",
      "street_number": 1,
      "turnover": 20000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAUTERNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 749787,
      "email": null,
      "id": 32401,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "27022001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56766087",
      "postal_code": "33210",
      "siren": "535359210",
      "siret": "53535921000015",
      "status": "P",
      "store_name": "Restaurant Saprien",
      "street": "rue Principale",
      "street_number": 14,
      "turnover": 100,
      "user_id": 205,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 749792,
      "email": null,
      "id": 38112,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561426250",
      "postal_code": "31300",
      "siren": "443293014",
      "siret": "44329301400017",
      "status": "P",
      "store_name": "Viennoiserie Coffe Bagels",
      "street": "place Interieure Saint Cyprien",
      "street_number": 7,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "2005",
      "closing_days_ids": [],
      "datlinq_code": 749870,
      "email": null,
      "id": 4798,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-72349578",
      "postal_code": "69003",
      "siren": "481939221",
      "siret": "48193922100018",
      "status": "P",
      "store_name": "Boulangerie les Douceurs de Melisse",
      "street": "rue du Dauphine",
      "street_number": 47,
      "turnover": 289000,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAILLEUL SUR THERAIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 749920,
      "email": null,
      "id": 4799,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "2268E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-44076707",
      "postal_code": "60930",
      "siren": "797967486",
      "siret": "79796748600011",
      "status": "P",
      "store_name": "Boulangerie Vermeulen",
      "street": "place Maurice Segonds",
      "street_number": null,
      "turnover": 210000,
      "user_id": 78,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DIENVILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 750096,
      "email": "harnet.laure@orange.fr",
      "id": 32402,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016057252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 325922223",
      "postal_code": "10500",
      "siren": "391601317",
      "siret": "39160131700012",
      "status": "P",
      "store_name": "Pizzeria Aux Trois Pianos",
      "street": "rue du Fosse",
      "street_number": 100,
      "turnover": 20000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": "2000-01-01",
      "closing_days_ids": [],
      "datlinq_code": 750587,
      "email": null,
      "id": 32403,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010004608252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235436207",
      "postal_code": "76600",
      "siren": "418537734",
      "siret": "41853773400034",
      "status": "P",
      "store_name": "Restaurant Le Grignot",
      "street": "rue Racine",
      "street_number": 53,
      "turnover": 90000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1 mars 2004",
      "closing_days_ids": [],
      "datlinq_code": 750734,
      "email": null,
      "id": 4802,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45633434",
      "postal_code": "75008",
      "siren": "452541089",
      "siret": "45254108900010",
      "status": "M",
      "store_name": "Boulangerie Le Pain Du Faubourg",
      "street": "rue du Faubourg Saint Honore",
      "street_number": 165,
      "turnover": 1670401,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MARTIN DES CHAMPS",
      "client_creation_date": "2012",
      "closing_days_ids": [],
      "datlinq_code": 750805,
      "email": null,
      "id": 4803,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Remeur/Le Gall",
      "phone_number": "02-98624316",
      "postal_code": "29600",
      "siren": "504766221",
      "siret": "50476622100023",
      "status": "M",
      "store_name": "Boulangerie la Farinette",
      "street": "rue du Puits",
      "street_number": 2,
      "turnover": 530000,
      "user_id": 147,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "REIMS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 750868,
      "email": null,
      "id": 41409,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326854711",
      "postal_code": "51100",
      "siren": "429932619",
      "siret": "42993261900019",
      "status": "P",
      "store_name": "Restaurant le Flechambault",
      "street": "esplanade Flechambault",
      "street_number": 2,
      "turnover": 1000,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "09/2009",
      "closing_days_ids": [],
      "datlinq_code": 751421,
      "email": null,
      "id": 4807,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0129G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "75020",
      "siren": "514887900",
      "siret": "51488790000017",
      "status": "M",
      "store_name": "Boulangerie au Fournil des Pyrenees",
      "street": "rue des Pyrenees",
      "street_number": 244,
      "turnover": 316000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LABEGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 751665,
      "email": null,
      "id": 752,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 562249743",
      "postal_code": "31670",
      "siren": "408218931",
      "siret": "40821893100025",
      "status": "P",
      "store_name": "Croissanterie le Lafayette",
      "street": "chemin de la Grande Borde",
      "street_number": null,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GAP",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 752339,
      "email": null,
      "id": 4812,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1837D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92523349",
      "postal_code": "05000",
      "siren": "803621036",
      "siret": "80362103600026",
      "status": "P",
      "store_name": "Boulangerie le Petit Nicolas",
      "street": "avenue de Provence",
      "street_number": 78,
      "turnover": 100000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 752576,
      "email": null,
      "id": 753,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-90931938",
      "postal_code": "13200",
      "siren": "483442695",
      "siret": "48344269500019",
      "status": "P",
      "store_name": "La Maison des Gourmands",
      "street": "rond Point des Arenes",
      "street_number": 28,
      "turnover": 10000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA BRESSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 752937,
      "email": null,
      "id": 32405,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "2120C001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-29254245",
      "postal_code": "88250",
      "siren": "380599613",
      "siret": "38059961300011",
      "status": "P",
      "store_name": "Lispach Evasion",
      "street": "route de Lispach",
      "street_number": null,
      "turnover": 90000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TULLINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 753047,
      "email": null,
      "id": 38114,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "2949E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76078979",
      "postal_code": "38210",
      "siren": "482906120",
      "siret": "48290612000019",
      "status": "M",
      "store_name": "Restaurant Le Colisee",
      "street": "boulevard Michel Perret",
      "street_number": 56,
      "turnover": 284158,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AUXERRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 753230,
      "email": null,
      "id": 755,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386526655",
      "postal_code": "89000",
      "siren": "413569864",
      "siret": "41356986400015",
      "status": "EMPTY_STATUS",
      "store_name": "Au Point Gourmand",
      "street": "Place Charles Surugue",
      "street_number": 2,
      "turnover": null,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TULLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 753237,
      "email": null,
      "id": 37291,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "2378E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-55265012",
      "postal_code": "19000",
      "siren": "478263619",
      "siret": "47826361900023",
      "status": "P",
      "store_name": "Restaurant La Caleche",
      "street": "avenue Victor Hugo",
      "street_number": 28,
      "turnover": 100,
      "user_id": 196,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VARILHES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 753270,
      "email": null,
      "id": 4815,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007130252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561607679",
      "postal_code": "09120",
      "siren": "752428284",
      "siret": "75242828400018",
      "status": "P",
      "store_name": "Boulangerie Jolibert Massat",
      "street": "place de l Hotel de Ville",
      "street_number": 4,
      "turnover": 190000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 753395,
      "email": null,
      "id": 32406,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "J0514001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42711716",
      "postal_code": "75004",
      "siren": "478785900",
      "siret": "47878590000018",
      "status": "EMPTY_STATUS",
      "store_name": "Sarl Pele",
      "street": "rue Pavee",
      "street_number": 8,
      "turnover": null,
      "user_id": 91,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUVOIS EN CAMBRESIS",
      "client_creation_date": "2010-01-01",
      "closing_days_ids": [],
      "datlinq_code": 753490,
      "email": null,
      "id": 4816,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "JACQUEMART",
      "phone_number": "+33 327725407",
      "postal_code": "59157",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "Boulangerie le Fournil Gourmand",
      "street": "rue Victor Watremez",
      "street_number": 3,
      "turnover": 850000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MIREPOIX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 754087,
      "email": null,
      "id": 47546,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561681365",
      "postal_code": "09500",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Saveurs des Couverts",
      "street": "place du Marechal Leclerc",
      "street_number": 20,
      "turnover": 120000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOYAT",
      "client_creation_date": "2010-05-01",
      "closing_days_ids": [],
      "datlinq_code": 754158,
      "email": null,
      "id": 4818,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31516001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-97930546",
      "postal_code": "56800",
      "siren": "524451739",
      "siret": "52445173900014",
      "status": "M",
      "store_name": "Cafe des Sports Boulangerie de l'Eglise",
      "street": "place de l Eglise",
      "street_number": 1,
      "turnover": 170000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "POUILLON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 754245,
      "email": null,
      "id": 32409,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1011W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-58983465",
      "postal_code": "40350",
      "siren": "423832948",
      "siret": "42383294800016",
      "status": "P",
      "store_name": "Restaurant l'Auberge du Pas de Vent",
      "street": "avenue du Pas de Vent",
      "street_number": 281,
      "turnover": 100,
      "user_id": 209,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1 mars 2012",
      "closing_days_ids": [],
      "datlinq_code": 754309,
      "email": null,
      "id": 32410,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0636B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45273291",
      "postal_code": "75016",
      "siren": "750288730",
      "siret": "75028873000013",
      "status": "P",
      "store_name": "Restaurant SEMNGVD",
      "street": "rue du Ranelagh",
      "street_number": 74,
      "turnover": 96560,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STRASBOURG",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 754357,
      "email": null,
      "id": 756,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-88324547",
      "postal_code": "67000",
      "siren": "345048722",
      "siret": "34504872200028",
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant les Deux Gourmandes",
      "street": "rue des Serruriers",
      "street_number": 1,
      "turnover": null,
      "user_id": 112,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "YVETOT",
      "client_creation_date": "2018-01-01",
      "closing_days_ids": [],
      "datlinq_code": 754631,
      "email": "toutain.boulangerie@gmail.com",
      "id": 4819,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010033345252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235951130",
      "postal_code": "76190",
      "siren": "531772010",
      "siret": "53177201000017",
      "status": "M",
      "store_name": "Boulangerie Toutain",
      "street": "rue de la Republique",
      "street_number": 20,
      "turnover": 265000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE MONASTIER SUR GAZEILLE",
      "client_creation_date": "01/03/2008",
      "closing_days_ids": [],
      "datlinq_code": 754736,
      "email": "boulangerie.allemand@orange.fr",
      "id": 4821,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "ME172001",
      "location_areas_ids": [],
      "owner_name": "Laurent ALLEMAND",
      "phone_number": "04-71038614",
      "postal_code": "43150",
      "siren": "413656075",
      "siret": "41365607500020",
      "status": "P",
      "store_name": "Boulangerie Allemand Laurent",
      "street": "rue Saint Pierre",
      "street_number": 85,
      "turnover": 92000,
      "user_id": 54,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COUDEKERQUE BRANCHE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 754743,
      "email": null,
      "id": 4822,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328582597",
      "postal_code": "59210",
      "siren": "525082574",
      "siret": "52508257400019",
      "status": "P",
      "store_name": "Boulangerie Verhille",
      "street": "rue Rembrandt",
      "street_number": 1,
      "turnover": 190000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 754791,
      "email": null,
      "id": 35,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "M2039001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93898901",
      "postal_code": "06300",
      "siren": "325783215",
      "siret": "32578321500016",
      "status": "M",
      "store_name": "Boulangerie Alphazur",
      "street": "rue de Orestis",
      "street_number": 19,
      "turnover": 168310,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PONT ST PIERRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 755317,
      "email": null,
      "id": 32412,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010001947252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232493924",
      "postal_code": "27360",
      "siren": "479698169",
      "siret": "47969816900014",
      "status": "P",
      "store_name": "Pizzeria le Latin",
      "street": "place du Square Philbert",
      "street_number": 10,
      "turnover": 90000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRAND FOUGERAY",
      "client_creation_date": "2010-08-06",
      "closing_days_ids": [],
      "datlinq_code": 755356,
      "email": null,
      "id": 4826,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0782B001",
      "location_areas_ids": [],
      "owner_name": "VILLETTE",
      "phone_number": "02-99084255",
      "postal_code": "35390",
      "siren": "524200326",
      "siret": "52420032600014",
      "status": "P",
      "store_name": "Boulangerie l'Ille aux Pains",
      "street": "place de l Eglise",
      "street_number": 23,
      "turnover": 190000,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RETIERS",
      "client_creation_date": "2007-03-09",
      "closing_days_ids": [],
      "datlinq_code": 755651,
      "email": null,
      "id": 4827,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "30566001",
      "location_areas_ids": [],
      "owner_name": "FLEURY",
      "phone_number": "02-99435471",
      "postal_code": "35240",
      "siren": "442077152",
      "siret": "44207715200027",
      "status": "M",
      "store_name": "Boulangerie Fleury",
      "street": "rue Pasteur",
      "street_number": 3,
      "turnover": 230000,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 755710,
      "email": null,
      "id": 50377,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 975122878",
      "postal_code": "31200",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "la Boite a Pizza",
      "street": "avenue des Minimes",
      "street_number": 15,
      "turnover": null,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LIMOGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756047,
      "email": null,
      "id": 37294,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "26076001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-55331321",
      "postal_code": "87000",
      "siren": "793085218",
      "siret": "79308521800014",
      "status": "P",
      "store_name": "Restaurant San Marco",
      "street": "rue Charles Michels",
      "street_number": 11,
      "turnover": 100,
      "user_id": 199,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MOULEYDIER",
      "client_creation_date": "1987",
      "closing_days_ids": [],
      "datlinq_code": 756096,
      "email": null,
      "id": 4831,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "24520",
      "siren": "800502031",
      "siret": "80050203100019",
      "status": "P",
      "store_name": "Boulangerie de Tuilieres",
      "street": "avenue du Barrage",
      "street_number": 725,
      "turnover": 155000,
      "user_id": 198,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756210,
      "email": null,
      "id": 47548,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1636G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92992717",
      "postal_code": "06400",
      "siren": "393537618",
      "siret": "39353761800026",
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant l'Auberge Provencale",
      "street": "petite Rue Saint Antoine",
      "street_number": 10,
      "turnover": 200,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA BREE LES BAINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756258,
      "email": "lesecluses@orange.fr",
      "id": 37295,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "LI180001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46765637",
      "postal_code": "17840",
      "siren": "301331757",
      "siret": "30133175700015",
      "status": "P",
      "store_name": "Crêperie les Ecluses",
      "street": "rue du Douhet",
      "street_number": null,
      "turnover": 2000,
      "user_id": 155,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAPBRETON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756290,
      "email": null,
      "id": 32414,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "02327001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-58722280",
      "postal_code": "40130",
      "siren": "310160023",
      "siret": "31016002300019",
      "status": "P",
      "store_name": "Regalty",
      "street": "Residence Mille Sabords",
      "street_number": null,
      "turnover": 100,
      "user_id": 209,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PEYRENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756484,
      "email": null,
      "id": 34355,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0010003070252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468604013",
      "postal_code": "11400",
      "siren": "419758982",
      "siret": "41975898200013",
      "status": "P",
      "store_name": "Restaurant la Caleche",
      "street": "rue de la Croix",
      "street_number": 1,
      "turnover": 100000,
      "user_id": 440,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATEL GUYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756815,
      "email": null,
      "id": 4833,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0661D001",
      "location_areas_ids": [],
      "owner_name": "EHLINGER",
      "phone_number": "04-73862198",
      "postal_code": "63140",
      "siren": "750416430",
      "siret": "75041643000015",
      "status": "P",
      "store_name": "Boulangerie Patisserie Ehlinger",
      "street": "rue du Commerce",
      "street_number": 6,
      "turnover": 180000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756890,
      "email": null,
      "id": 32415,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R3102001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42659600",
      "postal_code": "75008",
      "siren": "784333866",
      "siret": "78433386600019",
      "status": "P",
      "store_name": "Restaurant Cercle de l'Union Interalliée",
      "street": "rue du Faubourg Saint Honore",
      "street_number": 33,
      "turnover": 2000,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JOIGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 757678,
      "email": null,
      "id": 32416,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010670252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386621734",
      "postal_code": "89300",
      "siren": "447978578",
      "siret": "44797857800022",
      "status": "P",
      "store_name": "Restaurant Grilladerie",
      "street": "rue Robert Petit",
      "street_number": 8,
      "turnover": 5000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 757736,
      "email": null,
      "id": 32417,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007784252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321307782",
      "postal_code": "62200",
      "siren": "493994974",
      "siret": "49399497400019",
      "status": "P",
      "store_name": "La Boite A Gouter",
      "street": "centre Commercial de la Liane",
      "street_number": 29,
      "turnover": 70000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANNES",
      "client_creation_date": "2010-10-01",
      "closing_days_ids": [],
      "datlinq_code": 758145,
      "email": null,
      "id": 4835,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0998F001",
      "location_areas_ids": [],
      "owner_name": " Moudens",
      "phone_number": "04-93680939",
      "postal_code": "06400",
      "siren": "803544931",
      "siret": "52887979400014",
      "status": "M",
      "store_name": "La Boulangerie du Marche",
      "street": "rue du Marche Forville",
      "street_number": 14,
      "turnover": 729000,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FLEURANCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 758146,
      "email": null,
      "id": 4836,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010034423252110",
      "location_areas_ids": [],
      "owner_name": "BAQUER",
      "phone_number": "+33 562642260",
      "postal_code": "32500",
      "siren": "539370262",
      "siret": "53937026200013",
      "status": "G",
      "store_name": "Boulangerie Baquer",
      "street": "rue des Amours",
      "street_number": null,
      "turnover": 986081,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MANDELIEU LA NAPOULE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 758277,
      "email": null,
      "id": 38,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "M2908001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93498940",
      "postal_code": "6210",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Snack Club Cafe",
      "street": "avenue de Cannes",
      "street_number": 269,
      "turnover": null,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOUDEAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 759241,
      "email": null,
      "id": 32421,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "B0228001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-96283498",
      "postal_code": "22600",
      "siren": "437614886",
      "siret": "43761488600012",
      "status": "M",
      "store_name": "La Belle Epoque",
      "street": "rue de Pontivy",
      "street_number": 14,
      "turnover": 150000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FRESNES",
      "client_creation_date": "1-1-2014",
      "closing_days_ids": [],
      "datlinq_code": 759439,
      "email": null,
      "id": 4839,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0651D001",
      "location_areas_ids": [],
      "owner_name": "MONCEF ZEGUIR",
      "phone_number": "01-57191586",
      "postal_code": "94260",
      "siren": "524425907",
      "siret": "52442590700010",
      "status": "P",
      "store_name": "Boulangerie La Fresnoise",
      "street": "avenue de la Paix",
      "street_number": 43,
      "turnover": 250000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA TOUR DU PIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760192,
      "email": null,
      "id": 4840,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ISABELLE JACQUIGNON",
      "phone_number": "04-74882580",
      "postal_code": "38110",
      "siren": "540046257",
      "siret": "54004625700015",
      "status": "P",
      "store_name": "Boulangerie Jacquignon",
      "street": "place Carnot",
      "street_number": 4,
      "turnover": 281300,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SURGY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760444,
      "email": null,
      "id": 50378,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010033758252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386271680",
      "postal_code": "58500",
      "siren": "789436193",
      "siret": "78943619300013",
      "status": "P",
      "store_name": "Boulangerie aux Delices de Surgy",
      "street": "rue du Bourbasson",
      "street_number": 1,
      "turnover": 180000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PUTEAUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760494,
      "email": null,
      "id": 37297,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1821D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "92800",
      "siren": "511607889",
      "siret": "51160788900025",
      "status": "P",
      "store_name": "Sandwicherie Wallace",
      "street": "boulevard Richard Wallace",
      "street_number": 7,
      "turnover": 200000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PORTO VECCHIO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760513,
      "email": null,
      "id": 760,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-95700870",
      "postal_code": "20137",
      "siren": "448844670",
      "siret": "44884467000027",
      "status": "P",
      "store_name": "Sandwicherie la Fringale",
      "street": "cours Napoleon",
      "street_number": 20,
      "turnover": 10000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "2015",
      "closing_days_ids": [],
      "datlinq_code": 760525,
      "email": "nice@classcroute.com",
      "id": 41411,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92007700",
      "postal_code": "06200",
      "siren": "527941777",
      "siret": "52794177700023",
      "status": "P",
      "store_name": "Class'croute",
      "street": "avenue Simone Veil",
      "street_number": 63,
      "turnover": 200000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PUGET SUR ARGENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760550,
      "email": null,
      "id": 763,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-94455850",
      "postal_code": "83480",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Croissanterie",
      "street": "route Nationale 7",
      "street_number": null,
      "turnover": null,
      "user_id": 185,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RUEIL MALMAISON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760635,
      "email": null,
      "id": 41412,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-55470101",
      "postal_code": "92500",
      "siren": "439087008",
      "siret": "43908700800025",
      "status": "EMPTY_STATUS",
      "store_name": "Class'croute",
      "street": "avenue Paul Doumer",
      "street_number": 10,
      "turnover": null,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CUGNAUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760664,
      "email": null,
      "id": 50379,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 562872872",
      "postal_code": "31270",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Boite à Pizza",
      "street": "avenue Georges Pompidou",
      "street_number": null,
      "turnover": null,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTAUBAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760666,
      "email": null,
      "id": 50380,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 563204204",
      "postal_code": "82000",
      "siren": "443163936",
      "siret": "44316393600026",
      "status": "EMPTY_STATUS",
      "store_name": "La Boite A Pizza",
      "street": "rue Jean Monnet",
      "street_number": 12,
      "turnover": null,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LUCENAY",
      "client_creation_date": "2012-01-13",
      "closing_days_ids": [],
      "datlinq_code": 760775,
      "email": null,
      "id": 39,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0277E001",
      "location_areas_ids": [],
      "owner_name": "PAPIN LAURENT",
      "phone_number": "0474670610",
      "postal_code": "69480",
      "siren": "539157412",
      "siret": "53915741200013",
      "status": "M",
      "store_name": "Boulangerie aux Pains d'Antan",
      "street": "route d Anse",
      "street_number": 114,
      "turnover": 192000,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST OUEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760777,
      "email": null,
      "id": 41413,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-49212020",
      "postal_code": "93400",
      "siren": "525310967",
      "siret": "52531096700019",
      "status": "P",
      "store_name": "Class'croute",
      "street": "avenue Gabriel Peri",
      "street_number": 50,
      "turnover": 100000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RUEIL MALMAISON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760811,
      "email": null,
      "id": 32423,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0545B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-41421344",
      "postal_code": "92500",
      "siren": "432126787",
      "siret": "43212678700014",
      "status": "P",
      "store_name": "Snack Alibi",
      "street": "rue des 2 Gares",
      "street_number": 1,
      "turnover": 100000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CHAMOND",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760909,
      "email": null,
      "id": 772,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0349A001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-77228883",
      "postal_code": "42400",
      "siren": "419822374",
      "siret": "41982237400015",
      "status": "P",
      "store_name": "Cal'Pain",
      "street": "rue Victor Hugo",
      "street_number": 8,
      "turnover": 145318,
      "user_id": 62,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST ESTEVE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760922,
      "email": null,
      "id": 773,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468381657",
      "postal_code": "66240",
      "siren": "432520567",
      "siret": "43252056700012",
      "status": "P",
      "store_name": "Crêperie Sucrée Salée",
      "street": "avenue du General de Gaulle",
      "street_number": 2,
      "turnover": 10000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAMPAGNE AU MONT D OR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761067,
      "email": "lyon-dardilly@classcroute.com",
      "id": 41414,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-37460575",
      "postal_code": "69410",
      "siren": "340550524",
      "siret": "34055052400284",
      "status": "EMPTY_STATUS",
      "store_name": "Class'croute",
      "street": "rue des Rosieristes",
      "street_number": 10,
      "turnover": null,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GUYANCOURT",
      "client_creation_date": "18/08/2003",
      "closing_days_ids": [],
      "datlinq_code": 761071,
      "email": null,
      "id": 41415,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-30436060",
      "postal_code": "78280",
      "siren": "449901198",
      "siret": "44990119800019",
      "status": "P",
      "store_name": "Class'croute",
      "street": "rue Jean Moulin",
      "street_number": 18,
      "turnover": 668800,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANTONY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761074,
      "email": "antony@classcroute.com",
      "id": 41416,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42377766",
      "postal_code": "92160",
      "siren": "340550524",
      "siret": "34055052400102",
      "status": "P",
      "store_name": "Sandwicherie Class'croute",
      "street": "rue Alexis de Tocqueville",
      "street_number": 4,
      "turnover": 240000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAUGUES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761163,
      "email": null,
      "id": 32424,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "ME181001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-71778333",
      "postal_code": "43170",
      "siren": "329910186",
      "siret": "32991018600017",
      "status": "P",
      "store_name": "Pâtisserie Vernet",
      "street": "rue de l Hotel de Ville",
      "street_number": null,
      "turnover": 90000,
      "user_id": 54,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AUSSOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761179,
      "email": null,
      "id": 780,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79204948",
      "postal_code": "73500",
      "siren": "398904375",
      "siret": "39890437500019",
      "status": "P",
      "store_name": "La Grignott'",
      "street": "rue Plan Champ",
      "street_number": 1,
      "turnover": 250000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAUMONT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761181,
      "email": null,
      "id": 32425,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010870252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 325024270",
      "postal_code": "52000",
      "siren": "422849422",
      "siret": "42284942200015",
      "status": "P",
      "store_name": "L'entracte",
      "street": "rue du Docteur Michel",
      "street_number": 2,
      "turnover": 40000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA MURE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761183,
      "email": null,
      "id": 47550,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76304958",
      "postal_code": "38350",
      "siren": "323694869",
      "siret": "32369486900039",
      "status": "P",
      "store_name": "Boulangerie l'Encas",
      "street": "avenue Chion Ducollet",
      "street_number": 3,
      "turnover": 180000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTELIMAR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761280,
      "email": null,
      "id": 32426,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "26202001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-75017910",
      "postal_code": "26200",
      "siren": "389304049",
      "siret": "38930404900015",
      "status": "G",
      "store_name": "Sandwicherie Astor",
      "street": "avenue Saint Lazare",
      "street_number": 51,
      "turnover": 1217235,
      "user_id": 170,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE MESNIL AMELOT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761283,
      "email": null,
      "id": 41417,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Gosset",
      "phone_number": "01-60032344",
      "postal_code": "77990",
      "siren": "753779420",
      "siret": "75377942000011",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie du Mesnil",
      "street": "rue de Claye",
      "street_number": 42,
      "turnover": null,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BONNEUIL SUR MARNE",
      "client_creation_date": "1-1-1998",
      "closing_days_ids": [],
      "datlinq_code": 761324,
      "email": null,
      "id": 4846,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BOUGGUENA",
      "phone_number": "000-000",
      "postal_code": "94380",
      "siren": "413663071",
      "siret": "41366307100020",
      "status": "P",
      "store_name": "Boulangerie Au Bon Pain Chaud",
      "street": "rue Jean Moulin",
      "street_number": 7,
      "turnover": 100000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANTELEU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761327,
      "email": null,
      "id": 32427,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012400252110",
      "location_areas_ids": [],
      "owner_name": "CRETOT CHRISTINE",
      "phone_number": "+33 235360402",
      "postal_code": "76380",
      "siren": "441246220",
      "siret": "44124622000012",
      "status": "P",
      "store_name": "Restaurant au Cailly Saveurs",
      "street": "rue du Canal",
      "street_number": 40,
      "turnover": 200000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST LAURENT DU VAR",
      "client_creation_date": "2009-01-01",
      "closing_days_ids": [],
      "datlinq_code": 761333,
      "email": null,
      "id": 785,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SCAMUZZI",
      "phone_number": "04-92120909",
      "postal_code": "06700",
      "siren": "510163405",
      "siret": "51016340500010",
      "status": "P",
      "store_name": "Au Coin Gourmand",
      "street": "avenue des Pugets",
      "street_number": 21,
      "turnover": 300000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AYTRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761365,
      "email": null,
      "id": 788,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "27136001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46310052",
      "postal_code": "17440",
      "siren": "403856008",
      "siret": "40385600800012",
      "status": "G",
      "store_name": "Au Pain Dore",
      "street": "avenue Edmond Grasset",
      "street_number": 1,
      "turnover": 850000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761379,
      "email": null,
      "id": 789,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ZHANG YALI",
      "phone_number": "+33 534665510",
      "postal_code": "31400",
      "siren": "519463624",
      "siret": "51946362400022",
      "status": "P",
      "store_name": "Snack Bomi",
      "street": "avenue Antoine de Saint Exupery",
      "street_number": 25,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "OYONNAX",
      "client_creation_date": "2000-07-01",
      "closing_days_ids": [],
      "datlinq_code": 761390,
      "email": null,
      "id": 792,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "VITOR JOSE BACALHAU",
      "phone_number": "+33 474813948",
      "postal_code": "01100",
      "siren": "529936981",
      "siret": "52993698100024",
      "status": "P",
      "store_name": "Au P'Tit Creux",
      "street": "Rue Pierre Brunet",
      "street_number": 3,
      "turnover": 62600,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SARLAT LA CANEDA",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761391,
      "email": null,
      "id": 793,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "24200",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Au P'tit Creux",
      "street": "lieu dit La Croix Rouge",
      "street_number": null,
      "turnover": null,
      "user_id": 198,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LIMOGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761417,
      "email": null,
      "id": 799,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-55343170",
      "postal_code": "87000",
      "siren": "348111980",
      "siret": "34811198000036",
      "status": "P",
      "store_name": "Autef",
      "street": "rue Porte Tourny",
      "street_number": 6,
      "turnover": 85000,
      "user_id": 199,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761441,
      "email": null,
      "id": 39897,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "09363001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43385029",
      "postal_code": "75010",
      "siren": "437825011",
      "siret": "43782501100012",
      "status": "P",
      "store_name": "Boulangerie aux Delices de Belleville",
      "street": "rue du Faubourg du Temple",
      "street_number": 108,
      "turnover": 150000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LARDY",
      "client_creation_date": "22-2-2005",
      "closing_days_ids": [],
      "datlinq_code": 761444,
      "email": null,
      "id": 800,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MARC BAREZ",
      "phone_number": "01-60821228",
      "postal_code": "91510",
      "siren": "480966977",
      "siret": "48096697700013",
      "status": "P",
      "store_name": "Sandwicherie des Delices du Fournil",
      "street": "place des Droits de l Homme",
      "street_number": 7,
      "turnover": 102000,
      "user_id": 86,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-1-1993",
      "closing_days_ids": [],
      "datlinq_code": 761466,
      "email": null,
      "id": 801,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DIEUPART Jean Pierre",
      "phone_number": "01-44530453",
      "postal_code": "75009",
      "siren": "393173034",
      "siret": "39317303400033",
      "status": "M",
      "store_name": "Epicerie au Pipalotte Gourmande",
      "street": "rue de Rochechouart",
      "street_number": 49,
      "turnover": 550050,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRAND COURONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761469,
      "email": null,
      "id": 802,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235672811",
      "postal_code": "76530",
      "siren": "443448576",
      "siret": "44344857600019",
      "status": "P",
      "store_name": "Aux P'Tits Creux",
      "street": "rue Georges Clemenceau",
      "street_number": 66,
      "turnover": 120000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUTIRAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761477,
      "email": null,
      "id": 4848,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Piquet",
      "phone_number": "05-56675761",
      "postal_code": "33640",
      "siren": "799901731",
      "siret": "79990173100023",
      "status": "G",
      "store_name": "Les Saveurs du Fournil",
      "street": "route Nationale 113",
      "street_number": 68,
      "turnover": 900000,
      "user_id": 202,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MERIGNAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761478,
      "email": null,
      "id": 4849,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXE71001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56131912",
      "postal_code": "33700",
      "siren": "413735911",
      "siret": "41373591100013",
      "status": "M",
      "store_name": "Boulangerie Le Pain  De Beutre",
      "street": "avenue de l Argonne",
      "street_number": 221,
      "turnover": 421570,
      "user_id": 205,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE BILLANCOURT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761486,
      "email": null,
      "id": 803,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "92100",
      "siren": "399393347",
      "siret": "39939334700014",
      "status": "M",
      "store_name": "Le Pain a la Bouche",
      "street": "rue d Aguesseau",
      "street_number": 33,
      "turnover": 230000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FREYMING MERLEBACH",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761514,
      "email": null,
      "id": 47551,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387046401",
      "postal_code": "57800",
      "siren": null,
      "siret": "45087504200027",
      "status": "P",
      "store_name": "Sandwicherie Aygul Freres",
      "street": "avenue Erckmann Chatrian",
      "street_number": 57,
      "turnover": 220000,
      "user_id": 395,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "1987-04-01",
      "closing_days_ids": [],
      "datlinq_code": 761548,
      "email": null,
      "id": 40,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "CN026001",
      "location_areas_ids": [],
      "owner_name": "Macquet Patrick",
      "phone_number": "04-78307593",
      "postal_code": "69004",
      "siren": "322251042",
      "siret": "32225104200030",
      "status": "M",
      "store_name": "Sandwicherie les Trois Brioches",
      "street": "place de la Croix Rousse",
      "street_number": 8,
      "turnover": 225000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAVIGNY LE TEMPLE",
      "client_creation_date": "1-2-1999",
      "closing_days_ids": [],
      "datlinq_code": 761582,
      "email": null,
      "id": 807,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R3019001",
      "location_areas_ids": [],
      "owner_name": "BAHUT",
      "phone_number": "01-60630603",
      "postal_code": "77176",
      "siren": "421956947",
      "siret": "42195694700012",
      "status": "P",
      "store_name": "Sandwicherie le Pain Dore",
      "street": "avenue de l Europe",
      "street_number": 251,
      "turnover": 280000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEJUIF",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761589,
      "email": null,
      "id": 32430,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0998E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42118743",
      "postal_code": "94800",
      "siren": "453525388",
      "siret": "45352538800014",
      "status": "EMPTY_STATUS",
      "store_name": "Picola Roma......",
      "street": "avenue Paul Vaillant Couturier",
      "street_number": 49,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761597,
      "email": null,
      "id": 32431,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010001987252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 788103650",
      "postal_code": "62190",
      "siren": "784032658",
      "siret": "78403265800055",
      "status": "P",
      "store_name": "La Sandwicherie",
      "street": "rue de Verdun",
      "street_number": 31,
      "turnover": 50000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AVESNES SUR HELPE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761601,
      "email": null,
      "id": 809,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 674743000",
      "postal_code": "59440",
      "siren": "790267611",
      "siret": "79026761100016",
      "status": "P",
      "store_name": "Friterie la Fringale",
      "street": "rue d Albret",
      "street_number": 1,
      "turnover": 100000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761620,
      "email": null,
      "id": 50381,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328140381",
      "postal_code": "59800",
      "siren": "483140356",
      "siret": "48314035600039",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie Honey & Pie",
      "street": "Rue des Manneliers",
      "street_number": 5,
      "turnover": null,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PETIT CAUX",
      "client_creation_date": "2012-01-01",
      "closing_days_ids": [],
      "datlinq_code": 761662,
      "email": null,
      "id": 4851,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1041B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235838043",
      "postal_code": "76370",
      "siren": "750490005",
      "siret": "75049000500014",
      "status": "P",
      "store_name": "Boulangerie Cresson Furon",
      "street": "rue Pasteur",
      "street_number": 6,
      "turnover": 200000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HAM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761709,
      "email": null,
      "id": 37298,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1453W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "80400",
      "siren": "437544695",
      "siret": "43754469500012",
      "status": "P",
      "store_name": "Pizza Anna",
      "street": "rue du General Leclerc",
      "street_number": 45,
      "turnover": 50000,
      "user_id": 121,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761787,
      "email": null,
      "id": 38116,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 534455894",
      "postal_code": "31000",
      "siren": "318906591",
      "siret": "31890659100686",
      "status": "EMPTY_STATUS",
      "store_name": "La Brioche Dorée",
      "street": "rue d Alsace Lorraine",
      "street_number": 85,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COULOMMIERS",
      "client_creation_date": "1-4-1993",
      "closing_days_ids": [],
      "datlinq_code": 761881,
      "email": null,
      "id": 821,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BENAIM",
      "phone_number": "01-64207811",
      "postal_code": "77120",
      "siren": "330140534",
      "siret": "33014053400026",
      "status": "EMPTY_STATUS",
      "store_name": "Croissanterie La Mie",
      "street": "rue du Marche",
      "street_number": 6,
      "turnover": null,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761898,
      "email": null,
      "id": 4852,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ELKADDOURI M'HAMED",
      "phone_number": "+33 534601183",
      "postal_code": "31100",
      "siren": "402100473",
      "siret": "40210047300014",
      "status": "P",
      "store_name": "Boulangerie le Buffet Apain",
      "street": "rue de l Universite du Mirail",
      "street_number": 5,
      "turnover": 210136,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 761935,
      "email": null,
      "id": 38117,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-44530652",
      "postal_code": "75009",
      "siren": "494501794",
      "siret": "49450179400015",
      "status": "P",
      "store_name": "La Paille D'Or",
      "street": "rue du Faubourg Poissonniere",
      "street_number": 163,
      "turnover": 10000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOURGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761962,
      "email": null,
      "id": 826,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "18000",
      "siren": "451839211",
      "siret": "45183921100013",
      "status": "P",
      "store_name": "La Grignote Du Boomerang",
      "street": "avenue Marcel Sembat",
      "street_number": null,
      "turnover": 90000,
      "user_id": 51,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST AVE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762056,
      "email": null,
      "id": 38118,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0147W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-97618566",
      "postal_code": "56890",
      "siren": "477976674",
      "siret": "47797667400044",
      "status": "G",
      "store_name": "A La Cabane A Pizza",
      "street": "rue Marcel Dassault",
      "street_number": 4,
      "turnover": 400000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHALONS EN CHAMPAGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762204,
      "email": null,
      "id": 50382,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326701010",
      "postal_code": "51000",
      "siren": "499425759",
      "siret": "49942575900010",
      "status": "EMPTY_STATUS",
      "store_name": "La Boite A Pizza",
      "street": "rue Jean Jaures",
      "street_number": 65,
      "turnover": null,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762273,
      "email": null,
      "id": 47552,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "09-83986878",
      "postal_code": "64000",
      "siren": "514356963",
      "siret": "51435696300017",
      "status": "EMPTY_STATUS",
      "store_name": "SandwicherieCroq'Delyne",
      "street": "rue de Liege",
      "street_number": 10,
      "turnover": null,
      "user_id": 208,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MURET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762274,
      "email": null,
      "id": 835,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561510930",
      "postal_code": "31600",
      "siren": "349727842",
      "siret": "34972784200016",
      "status": "M",
      "store_name": "La Petite Muretaine",
      "street": "avenue Roger Tissandie",
      "street_number": 20,
      "turnover": 300000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRENOBLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762289,
      "email": null,
      "id": 837,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76841609",
      "postal_code": "38000",
      "siren": "445253750",
      "siret": "44525375000027",
      "status": "P",
      "store_name": "Snack le Petit Casse",
      "street": "cours Berriat",
      "street_number": 67,
      "turnover": 30000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BASTIA",
      "client_creation_date": "8-1-2004",
      "closing_days_ids": [],
      "datlinq_code": 762296,
      "email": "crysteleric@aol.com",
      "id": 4854,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RLI35001",
      "location_areas_ids": [],
      "owner_name": "LAZARINI",
      "phone_number": "04-95327275",
      "postal_code": "20200",
      "siren": "478307366",
      "siret": "47830736600011",
      "status": "M",
      "store_name": "Boulangerie Lazarini",
      "street": "rue Cesar Vezzani",
      "street_number": null,
      "turnover": 248400,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MENTON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762332,
      "email": null,
      "id": 838,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "06500",
      "siren": "480360817",
      "siret": "48036081700013",
      "status": "P",
      "store_name": "Pains Chauds Du Jardin",
      "street": "place du Petit Port",
      "street_number": 4,
      "turnover": 1000,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANGERS",
      "client_creation_date": "2013-01-01",
      "closing_days_ids": [],
      "datlinq_code": 762356,
      "email": null,
      "id": 37299,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007434252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241876622",
      "postal_code": "49100",
      "siren": "751524612",
      "siret": "75152461200015",
      "status": "G",
      "store_name": "Snack la Fabrique du Mil'Pates",
      "street": "rue Plantagenet",
      "street_number": 61,
      "turnover": 475000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOCMINE",
      "client_creation_date": "2014-06-01",
      "closing_days_ids": [],
      "datlinq_code": 762443,
      "email": null,
      "id": 4856,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DEUDON",
      "phone_number": "02-97600646",
      "postal_code": "56500",
      "siren": "490932100",
      "siret": "49093210000020",
      "status": "P",
      "store_name": "Boulangerie Deudon La Baguette D Or",
      "street": "place Saint Antoine",
      "street_number": 6,
      "turnover": 300000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANGOULINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762453,
      "email": null,
      "id": 4857,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "PEROLLE",
      "phone_number": "05-46510791",
      "postal_code": "17690",
      "siren": "752559732",
      "siret": "75255973200017",
      "status": "M",
      "store_name": "Boulangerie Patisserie Les Fourneaux",
      "street": "avenue Albert Denis",
      "street_number": null,
      "turnover": 340000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BORDEAUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762454,
      "email": null,
      "id": 841,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56922222",
      "postal_code": "33000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Brioche Doree",
      "street": "place de la Victoire",
      "street_number": 12,
      "turnover": null,
      "user_id": 204,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762455,
      "email": null,
      "id": 842,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45613158",
      "postal_code": "75008",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Brioche Doree",
      "street": "avenue des Champs Elysees",
      "street_number": 144,
      "turnover": null,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TALMONT SUR GIRONDE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762469,
      "email": null,
      "id": 844,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "17120",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Plaisirs Sucres",
      "street": "Grande Rue Du Port",
      "street_number": 15,
      "turnover": null,
      "user_id": 152,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA CHARTRE SUR LE LOIR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762470,
      "email": null,
      "id": 845,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243791648",
      "postal_code": "72340",
      "siren": "378065593",
      "siret": "37806559300030",
      "status": "P",
      "store_name": "La Grignote",
      "street": "rue Nationale",
      "street_number": 17,
      "turnover": 100000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROUBAIX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762501,
      "email": null,
      "id": 848,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320737878",
      "postal_code": "59100",
      "siren": "393222880",
      "siret": "39322288000022",
      "status": "M",
      "store_name": "Bs Viennoiserie",
      "street": "boulevard du General Leclerc",
      "street_number": 53,
      "turnover": 220900,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PERPIGNAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762505,
      "email": "starkebab66@gmail.com",
      "id": 47553,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468510046",
      "postal_code": "66000",
      "siren": "493100572",
      "siret": "49310057200020",
      "status": "M",
      "store_name": "Star d'Or Kebab",
      "street": "avenue du General de Gaulle",
      "street_number": 11,
      "turnover": 200000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RENNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762550,
      "email": null,
      "id": 39899,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0523F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-23210210",
      "postal_code": "35700",
      "siren": "493585962",
      "siret": "49358596200027",
      "status": "P",
      "store_name": "Pizza Tempo",
      "street": "rue de Fougeres",
      "street_number": 130,
      "turnover": 100000,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATILLON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762615,
      "email": null,
      "id": 32434,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0709E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-40929356",
      "postal_code": "92320",
      "siren": "393474978",
      "siret": "39347497800011",
      "status": "M",
      "store_name": "Cafe Babak",
      "street": "avenue de la Republique",
      "street_number": 181,
      "turnover": 200000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ORLEANS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762623,
      "email": null,
      "id": 852,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 238625092",
      "postal_code": "45000",
      "siren": "312733702",
      "siret": "31273370200111",
      "status": "EMPTY_STATUS",
      "store_name": "La Croissanterie",
      "street": "rue Nicolas Copernic",
      "street_number": 2,
      "turnover": null,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CARRIERES SUR SEINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762699,
      "email": null,
      "id": 857,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-39134797",
      "postal_code": "78420",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant la Cabane a Sucre",
      "street": "rue du Moulin",
      "street_number": 45,
      "turnover": null,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762782,
      "email": null,
      "id": 859,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47971818",
      "postal_code": "75020",
      "siren": "394797005",
      "siret": "39479700500011",
      "status": "EMPTY_STATUS",
      "store_name": "Carthage",
      "street": "rue des Pyrenees",
      "street_number": 239,
      "turnover": null,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BANYULS SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762824,
      "email": null,
      "id": 863,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468880125",
      "postal_code": "66650",
      "siren": "404856759",
      "siret": "40485675900018",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie la Ganotte",
      "street": "place de la Mediterranee",
      "street_number": null,
      "turnover": null,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SALEILLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762948,
      "email": null,
      "id": 864,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468229061",
      "postal_code": "66280",
      "siren": "450047485",
      "siret": "45004748500013",
      "status": "P",
      "store_name": "O Soleil Gourmand",
      "street": "avenue du Clair Soleil",
      "street_number": 1,
      "turnover": 10000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLERMONT FERRAND",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762955,
      "email": null,
      "id": 865,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-73364128",
      "postal_code": "63000",
      "siren": "339990004",
      "siret": "33999000400022",
      "status": "P",
      "store_name": "Le P'Tit Creux",
      "street": "rue du 11 Novembre",
      "street_number": 2,
      "turnover": 98000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SEVRIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763106,
      "email": null,
      "id": 4861,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50526576",
      "postal_code": "74320",
      "siren": "338046741",
      "siret": "33804674100017",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Les Boulangers Chevallier",
      "street": "chemin du Brouillet",
      "street_number": null,
      "turnover": null,
      "user_id": 61,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "POISY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763107,
      "email": null,
      "id": 4862,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50226364",
      "postal_code": "74330",
      "siren": "338046741",
      "siret": "33804674100058",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Les Boulangers Chevallier",
      "street": "route des Creusettes",
      "street_number": 30,
      "turnover": null,
      "user_id": 61,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MARTIN BELLEVUE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763108,
      "email": null,
      "id": 4863,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50602057",
      "postal_code": "74370",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Les Boulangers Chevallier",
      "street": "route des Diacquenots",
      "street_number": null,
      "turnover": null,
      "user_id": 58,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA BALME DE SILLINGY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763109,
      "email": null,
      "id": 4864,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50688075",
      "postal_code": "74330",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Chevallier",
      "street": "chez lieu",
      "street_number": null,
      "turnover": null,
      "user_id": 61,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALBENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763110,
      "email": null,
      "id": 4865,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79541642",
      "postal_code": "73410",
      "siren": "338046741",
      "siret": "33804674100116",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Les Boulangers Chevallier",
      "street": "route de Rumilly",
      "street_number": null,
      "turnover": null,
      "user_id": 61,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANNECY LE VIEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763111,
      "email": null,
      "id": 4866,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50098842",
      "postal_code": "74940",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie les Boulangers Chevallier",
      "street": "rue de Lachat",
      "street_number": 17,
      "turnover": null,
      "user_id": 61,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 763215,
      "email": null,
      "id": 38119,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "75009",
      "siren": "538819269",
      "siret": "53881926900019",
      "status": "P",
      "store_name": "Chocoline",
      "street": "rue de Mogador",
      "street_number": 29,
      "turnover": 180000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763216,
      "email": null,
      "id": 876,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42255104",
      "postal_code": "75008",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Croissanterie Chocoline",
      "street": "rue Jean Mermoz",
      "street_number": 24,
      "turnover": 100,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE GRAND BORNAND",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987608,
      "email": null,
      "id": 19638,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50022071",
      "postal_code": "74450",
      "siren": "382725281",
      "siret": "38272528100010",
      "status": "M",
      "store_name": "Boulangerie Vulliet Freres",
      "street": "place de l Eglise",
      "street_number": null,
      "turnover": 522000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CROZON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987655,
      "email": null,
      "id": 19663,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-98272942",
      "postal_code": "29160",
      "siren": "387965668",
      "siret": "38796566800016",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Gerard Le Corre",
      "street": "rue Graveran",
      "street_number": 35,
      "turnover": null,
      "user_id": 149,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RUAN",
      "client_creation_date": "2011-01-01",
      "closing_days_ids": [],
      "datlinq_code": 987688,
      "email": null,
      "id": 19678,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Pascal Bourdeau",
      "phone_number": "+33 238800280",
      "postal_code": "45410",
      "siren": "389926957",
      "siret": "38992695700017",
      "status": "P",
      "store_name": "Boulangerie Gerard Dufour",
      "street": "rue de la Pie Hardie",
      "street_number": 63,
      "turnover": 166127,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JEAN D ELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987753,
      "email": null,
      "id": 19706,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233561690",
      "postal_code": "50810",
      "siren": "395398563",
      "siret": "39539856300019",
      "status": "P",
      "store_name": "Boulangerie Michel Genty",
      "street": "le Fourchet",
      "street_number": 1,
      "turnover": 170000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAVAL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987829,
      "email": "les-lavallois@hotmail.fr",
      "id": 19749,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010009732252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243564181",
      "postal_code": "53000",
      "siren": "402942197",
      "siret": "40294219700011",
      "status": "G",
      "store_name": "Boulangerie Pacilly",
      "street": "rue du Lycee",
      "street_number": 8,
      "turnover": 161483,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-5-2000",
      "closing_days_ids": [],
      "datlinq_code": 987871,
      "email": null,
      "id": 19759,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "02625001",
      "location_areas_ids": [],
      "owner_name": "JULIEN GONTRAN",
      "phone_number": "01-43597876",
      "postal_code": "75008",
      "siren": "431280254",
      "siret": "43128025400019",
      "status": "P",
      "store_name": "Boulangerie l Angelique Julien",
      "street": "avenue Franklin Delano Roosevelt",
      "street_number": 73,
      "turnover": 800000,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HAUTERIVES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987884,
      "email": null,
      "id": 19764,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-75689006",
      "postal_code": "26390",
      "siren": "381931815",
      "siret": "38193181500017",
      "status": "P",
      "store_name": "Boulangerie Goudey",
      "street": "Grande Rue",
      "street_number": 12,
      "turnover": 180000,
      "user_id": 170,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JOUIN BRUNEVAL",
      "client_creation_date": "2006-01-12",
      "closing_days_ids": [],
      "datlinq_code": 987933,
      "email": "lefournildesfalaises@orange.fr",
      "id": 19787,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003123252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235207413",
      "postal_code": "76280",
      "siren": "488354002",
      "siret": "48835400200013",
      "status": "P",
      "store_name": "Le Fournil des Falaises",
      "street": "rue du General de Gaulle",
      "street_number": 21,
      "turnover": 120000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CAST LE GUILDO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988003,
      "email": null,
      "id": 19825,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MIRIEL JACQUES",
      "phone_number": "02-96411866",
      "postal_code": "22380",
      "siren": "394792220",
      "siret": "39479222000011",
      "status": "M",
      "store_name": "Boulangerie Miriel",
      "street": "boulevard de l Arguenon",
      "street_number": 13,
      "turnover": 350000,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SCEAUX SUR HUISNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988030,
      "email": null,
      "id": 19842,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010014610252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243933543",
      "postal_code": "72160",
      "siren": "505383141",
      "siret": "50538314100015",
      "status": "M",
      "store_name": "Boulangerie Garcia",
      "street": "avenue General de Gaulle",
      "street_number": 10,
      "turnover": 170000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MILLAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988045,
      "email": null,
      "id": 32936,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016079252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 565601557",
      "postal_code": "12100",
      "siren": "399978030",
      "siret": "39997803000019",
      "status": "P",
      "store_name": "Boulangerie Le Fournil De Saint Jacques",
      "street": "avenue Jean Jaures",
      "street_number": 3,
      "turnover": 191810,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST PRIVAT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988060,
      "email": null,
      "id": 19855,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-55282682",
      "postal_code": "19220",
      "siren": "401754411",
      "siret": "40175441100023",
      "status": "P",
      "store_name": "Boulangerie Maison Guillaume Tible",
      "street": "rue de la Xaintrie",
      "street_number": 39,
      "turnover": 140000,
      "user_id": 196,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURNON D AUVERGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988072,
      "email": null,
      "id": 19861,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1014F001",
      "location_areas_ids": [],
      "owner_name": "PASQUIER",
      "phone_number": "04-73849632",
      "postal_code": "63800",
      "siren": "751806621",
      "siret": "75180662100023",
      "status": "M",
      "store_name": "Boulangerie des Domes",
      "street": "avenue des Domes",
      "street_number": 5,
      "turnover": 482500,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GARGES LES GONESSE",
      "client_creation_date": "1-4-1997",
      "closing_days_ids": [],
      "datlinq_code": 988169,
      "email": null,
      "id": 19915,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BELHADJ",
      "phone_number": "01-34455414",
      "postal_code": "95140",
      "siren": "411694474",
      "siret": "41169447400015",
      "status": "P",
      "store_name": "Boulangerie Pain Chaud de la Gare",
      "street": "place de l Hotel de Ville",
      "street_number": null,
      "turnover": 347060,
      "user_id": 79,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIC SUR SEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988211,
      "email": null,
      "id": 19936,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010025777252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387011047",
      "postal_code": "57630",
      "siren": "414275107",
      "siret": "41427510700012",
      "status": "P",
      "store_name": "Boulangerie Banette Bleeker",
      "street": "place Jeanne d Arc",
      "street_number": 8,
      "turnover": 175000,
      "user_id": 395,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LEVALLOIS PERRET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988372,
      "email": null,
      "id": 32950,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R9189001",
      "location_areas_ids": [],
      "owner_name": "Chevret",
      "phone_number": "01-47561402",
      "postal_code": "92300",
      "siren": "511363145",
      "siret": "51136314500018",
      "status": "G",
      "store_name": "Chevret And Co",
      "street": "rue Baudin",
      "street_number": 80,
      "turnover": 579000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VERNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988450,
      "email": null,
      "id": 19945,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232511753",
      "postal_code": "27200",
      "siren": "511590572",
      "siret": "51159057200026",
      "status": "EMPTY_STATUS",
      "store_name": "La Grignoterie",
      "street": "boulevard Jean Jaures",
      "street_number": null,
      "turnover": null,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOEUILLY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988781,
      "email": null,
      "id": 19966,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-22381315",
      "postal_code": "80160",
      "siren": "419723846",
      "siret": "41972384600038",
      "status": "P",
      "store_name": "Boulangerie Fortin",
      "street": "rue d Amiens",
      "street_number": 35,
      "turnover": 130000,
      "user_id": 121,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SUCE SUR ERDRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988841,
      "email": null,
      "id": 19995,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40779637",
      "postal_code": "44240",
      "siren": "532926391",
      "siret": "53292639100014",
      "status": "EMPTY_STATUS",
      "store_name": "Au Pain Suceen",
      "street": "residence les Champs Ronds",
      "street_number": 5,
      "turnover": null,
      "user_id": 144,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALENCON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988863,
      "email": null,
      "id": 20013,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003906252110",
      "location_areas_ids": [],
      "owner_name": "FOUILLARD",
      "phone_number": "+33 233270082",
      "postal_code": "61000",
      "siren": "442114690",
      "siret": "44211469000013",
      "status": "P",
      "store_name": "Boulangerie Fouillard",
      "street": "rue Ernest Marchand Saillant",
      "street_number": 100,
      "turnover": 120000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FOURQUES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988867,
      "email": null,
      "id": 20017,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 490932924",
      "postal_code": "30300",
      "siren": "324674464",
      "siret": "32467446400049",
      "status": "P",
      "store_name": "Boulangerie Le Petrin Fourquesien",
      "street": "rue de la Republique",
      "street_number": 23,
      "turnover": 150000,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURNEMIRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988900,
      "email": null,
      "id": 20036,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005839252110",
      "location_areas_ids": [],
      "owner_name": "CRISTOL OLIVIER",
      "phone_number": "+33 565599084",
      "postal_code": "12250",
      "siren": "419951637",
      "siret": "41995163700018",
      "status": "P",
      "store_name": "Boulangerie Bellevue",
      "street": "avenue Hippolyte Puech",
      "street_number": null,
      "turnover": 93884,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ABONDANT",
      "client_creation_date": "2009-08-18",
      "closing_days_ids": [],
      "datlinq_code": 988915,
      "email": null,
      "id": 20050,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "GEFFROY",
      "phone_number": "+33 237487369",
      "postal_code": "28410",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Geffroy Sebastien",
      "street": "Grande Rue",
      "street_number": 31,
      "turnover": 250000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AIGUES VIVES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988924,
      "email": null,
      "id": 20056,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 615336714",
      "postal_code": "30670",
      "siren": "435196019",
      "siret": "43519601900028",
      "status": "P",
      "store_name": "Boulangerie Pains et Gourmandises",
      "street": "Grand Rue",
      "street_number": 52,
      "turnover": 110000,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTAGNY LES BEAUNE",
      "client_creation_date": "2004-04-01",
      "closing_days_ids": [],
      "datlinq_code": 988955,
      "email": null,
      "id": 20080,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Néault",
      "phone_number": "+33 380242614",
      "postal_code": "21200",
      "siren": "452649619",
      "siret": "45264961900015",
      "status": "P",
      "store_name": "Boulangerie Emmanuel",
      "street": "rue de la Solle",
      "street_number": 16,
      "turnover": 210000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-2-2010",
      "closing_days_ids": [],
      "datlinq_code": 988983,
      "email": null,
      "id": 20096,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "L0808001",
      "location_areas_ids": [],
      "owner_name": "RUSSEL EMIL",
      "phone_number": "01-43543969",
      "postal_code": "75005",
      "siren": "519673800",
      "siret": "51967380000016",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie aux Delices de Jussieu",
      "street": "rue Jussieu",
      "street_number": 23,
      "turnover": 403319,
      "user_id": 91,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MOREUIL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989024,
      "email": "0620442119@sfr.fr",
      "id": 20124,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "A1249001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-22097113",
      "postal_code": "80110",
      "siren": "443317409",
      "siret": "44331740900029",
      "status": "M",
      "store_name": "Boulangerie Marchesi David",
      "street": "rue Veuve Thibauville",
      "street_number": 35,
      "turnover": 210000,
      "user_id": 121,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MOIRANS EN MONTAGNE",
      "client_creation_date": "1963-01-01",
      "closing_days_ids": [],
      "datlinq_code": 989065,
      "email": null,
      "id": 20152,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005256252110",
      "location_areas_ids": [],
      "owner_name": "Hufschmid",
      "phone_number": "+33 384420143",
      "postal_code": "39260",
      "siren": "314155649",
      "siret": "31415564900036",
      "status": "M",
      "store_name": "Boulangerie Hufschmid Philippe",
      "street": "place de Verdun",
      "street_number": 4,
      "turnover": 270882,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE TOUVET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989164,
      "email": null,
      "id": 20218,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76085000",
      "postal_code": "38660",
      "siren": "418355327",
      "siret": "41835532700010",
      "status": "P",
      "store_name": "Boulangerie Metay Maurice Marcel",
      "street": "place de l Eglise",
      "street_number": 1,
      "turnover": 100000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOUCY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989276,
      "email": null,
      "id": 32959,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016384252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386441489",
      "postal_code": "89130",
      "siren": "430000067",
      "siret": "43000006700016",
      "status": "G",
      "store_name": "Pâtisserie Durand",
      "street": "rue Paul Bert",
      "street_number": 2,
      "turnover": 300000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FAVIERES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989286,
      "email": null,
      "id": 20270,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83251326",
      "postal_code": "54115",
      "siren": "431328327",
      "siret": "43132832700017",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Aubertin Olivier Maurice Andre",
      "street": "rue du Docteur Liebault",
      "street_number": 22,
      "turnover": null,
      "user_id": 102,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-6-2000",
      "closing_days_ids": [],
      "datlinq_code": 989291,
      "email": null,
      "id": 2568,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SEBBAN MAURICE",
      "phone_number": "01-42089990",
      "postal_code": "75019",
      "siren": "431719343",
      "siret": "43171934300011",
      "status": "P",
      "store_name": "Sandwicherie chez Akol",
      "street": "rue d Hautpoul",
      "street_number": 67,
      "turnover": 2000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989305,
      "email": "boulangerie-patisserie-fardin@orange.fr",
      "id": 20279,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007833252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231822389",
      "postal_code": "14000",
      "siren": "432405462",
      "siret": "43240546200016",
      "status": "G",
      "store_name": "Boulangerie aux Délices de la Guérinièr",
      "street": "rue de la Gueriniere",
      "street_number": 35,
      "turnover": 619163,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA FOUILLADE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989318,
      "email": null,
      "id": 20283,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DELMUR BRUNO",
      "phone_number": "+33 565657004",
      "postal_code": "12270",
      "siren": "433035680",
      "siret": "43303568000019",
      "status": "G",
      "store_name": "Boulangerie Delmur Hubert",
      "street": "route du Segala",
      "street_number": 10,
      "turnover": 600000,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GOURNAY EN BRAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989337,
      "email": null,
      "id": 20294,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235900461",
      "postal_code": "76220",
      "siren": "489030882",
      "siret": "48903088200018",
      "status": "M",
      "store_name": "Boulangerie Hequet",
      "street": "rue de l Abreuvoir",
      "street_number": 30,
      "turnover": 249592,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST QUENTIN LA POTERIE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989455,
      "email": null,
      "id": 20348,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466222584",
      "postal_code": "30700",
      "siren": "443839790",
      "siret": "44383979000013",
      "status": "P",
      "store_name": "Boulangerie Pesin",
      "street": "Grand Rue",
      "street_number": null,
      "turnover": 150000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DURMENACH",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989480,
      "email": null,
      "id": 20364,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-89258110",
      "postal_code": "68480",
      "siren": "447835703",
      "siret": "44783570300011",
      "status": "P",
      "store_name": "Boulangerie Isler Cyrille",
      "street": "rue de l Ill",
      "street_number": 25,
      "turnover": 250000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ATHIS VAL DE ROUVRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989508,
      "email": null,
      "id": 20374,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233662066",
      "postal_code": "61100",
      "siren": "449401876",
      "siret": "44940187600015",
      "status": "P",
      "store_name": "Boulangerie Hergault",
      "street": "lieu dit Le Bourg",
      "street_number": null,
      "turnover": 145000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BELLEY",
      "client_creation_date": "2003-03-21",
      "closing_days_ids": [],
      "datlinq_code": 989604,
      "email": null,
      "id": 20428,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ABRY",
      "phone_number": "+33 479810450",
      "postal_code": "01300",
      "siren": "447712613",
      "siret": "44771261300010",
      "status": "M",
      "store_name": "Boulangerie Patisserie Abry",
      "street": "rue Saint Martin",
      "street_number": 18,
      "turnover": 323500,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST ROMAIN DE POPEY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989608,
      "email": null,
      "id": 20432,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-74058043",
      "postal_code": "69490",
      "siren": "449303338",
      "siret": "44930333800015",
      "status": "P",
      "store_name": "Boulangerie Gilardon",
      "street": "place du Popey",
      "street_number": null,
      "turnover": 125000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PIENNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989637,
      "email": null,
      "id": 32971,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010627252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 382217343",
      "postal_code": "54490",
      "siren": "451753933",
      "siret": "45175393300014",
      "status": "M",
      "store_name": "Patisserie Pecci Ludovic",
      "street": "rue de Verdun",
      "street_number": 23,
      "turnover": 250000,
      "user_id": 393,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSAC EN LIVRADOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989672,
      "email": null,
      "id": 20471,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "2567E001",
      "location_areas_ids": [],
      "owner_name": "FRUGERE",
      "phone_number": "04-73956032",
      "postal_code": "63940",
      "siren": "453789885",
      "siret": "45378988500010",
      "status": "P",
      "store_name": "Snc Boulangerie Patisserie Frugere",
      "street": "rue des Ecoles",
      "street_number": 21,
      "turnover": 120000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUCHAMP",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989677,
      "email": null,
      "id": 20475,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "11363001",
      "location_areas_ids": [],
      "owner_name": "Bourg Jean Christophe",
      "phone_number": "01-34181938",
      "postal_code": "95250",
      "siren": "453939027",
      "siret": "45393902700018",
      "status": "M",
      "store_name": "Boulangerie Bourg Jean Christophe",
      "street": "avenue de la Gare",
      "street_number": 14,
      "turnover": 300000,
      "user_id": 80,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STRASBOURG",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989746,
      "email": null,
      "id": 46595,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1427F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-88353737",
      "postal_code": "67000",
      "siren": "821546215",
      "siret": "82154621500012",
      "status": "M",
      "store_name": "Salon de Thé Goehry",
      "street": "rue des Recollets",
      "street_number": 3,
      "turnover": 350000,
      "user_id": 112,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LES MARCHES",
      "client_creation_date": "2005",
      "closing_days_ids": [],
      "datlinq_code": 989767,
      "email": null,
      "id": 20529,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79706508",
      "postal_code": "73800",
      "siren": "482908613",
      "siret": "48290861300011",
      "status": "G",
      "store_name": "Boulangerie aux Delices des Marches",
      "street": "route du Gresivaudan",
      "street_number": 24,
      "turnover": 303156,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHALONS EN CHAMPAGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989822,
      "email": null,
      "id": 20554,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326681575",
      "postal_code": "51000",
      "siren": "488219692",
      "siret": "48821969200016",
      "status": "P",
      "store_name": "Boulangerie au Pain d'Antan",
      "street": "rue Carnot",
      "street_number": 27,
      "turnover": 300000,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BENET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989859,
      "email": null,
      "id": 20584,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0937D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-51873364",
      "postal_code": "85490",
      "siren": "388231250",
      "siret": "38823125000027",
      "status": "G",
      "store_name": "Boulangerie la Barque a Pain",
      "street": "rue de la Combe",
      "street_number": 1,
      "turnover": 358000,
      "user_id": 153,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURNON SUR RHONE",
      "client_creation_date": "2008-01-01",
      "closing_days_ids": [],
      "datlinq_code": 989874,
      "email": null,
      "id": 20597,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 475080251",
      "postal_code": "07300",
      "siren": "492803945",
      "siret": "49280394500012",
      "status": "P",
      "store_name": "Boulangerie Patisserie Juge",
      "street": "place Jean Jaures",
      "street_number": 19,
      "turnover": 180000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DOMPIERRE SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989903,
      "email": null,
      "id": 20620,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Fageon",
      "phone_number": "05-46353142",
      "postal_code": "17139",
      "siren": "503439226",
      "siret": "50343922600013",
      "status": "M",
      "store_name": "Boulangerie Kara",
      "street": "rue du General de Gaulle",
      "street_number": 36,
      "turnover": 228300,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST DIDIER SUR CHALARONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989905,
      "email": null,
      "id": 20622,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 474040353",
      "postal_code": "01140",
      "siren": "498903673",
      "siret": "49890367300016",
      "status": "P",
      "store_name": "Boulangerie Guillin Nicolas",
      "street": "rue de l Eglise",
      "street_number": 29,
      "turnover": 140000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DISSAY SOUS COURCILLON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989940,
      "email": null,
      "id": 20652,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243440917",
      "postal_code": "72500",
      "siren": "413473802",
      "siret": "41347380200028",
      "status": "P",
      "store_name": "Boulangerie Rottier",
      "street": "place Marcel Morand",
      "street_number": 7,
      "turnover": 135000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIEILLE EGLISE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989945,
      "email": null,
      "id": 20657,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0010035349252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321193231",
      "postal_code": "62162",
      "siren": "504655317",
      "siret": "50465531700015",
      "status": "G",
      "store_name": "Fournil deux Eglises",
      "street": "rue du Fort Batard",
      "street_number": 185,
      "turnover": 600000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BESANCON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990014,
      "email": null,
      "id": 20716,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 381884877",
      "postal_code": "25000",
      "siren": "321646580",
      "siret": "32164658000027",
      "status": "P",
      "store_name": "Boulangerie Maison Christe",
      "street": "rue Paul Bert",
      "street_number": 11,
      "turnover": 20000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NAVENNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990015,
      "email": "les4sapins@orange.fr",
      "id": 20717,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005958252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 384969419",
      "postal_code": "70000",
      "siren": "433885894",
      "siret": "43388589400025",
      "status": "M",
      "store_name": "Boulangerie Richer Manuel",
      "street": "rue Victor Hugo",
      "street_number": 15,
      "turnover": 200000,
      "user_id": 411,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PUY EN VELAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990022,
      "email": null,
      "id": 20721,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Mathieu RANCON",
      "phone_number": "04-71055703",
      "postal_code": "43000",
      "siren": "479621997",
      "siret": "47962199700010",
      "status": "P",
      "store_name": "Boulangerie Le Bon Pain De France",
      "street": "boulevard George Sand",
      "street_number": 7,
      "turnover": 160000,
      "user_id": 54,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST AGREVE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990036,
      "email": "bardej@wanadoo.fr",
      "id": 20732,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010014957252110",
      "location_areas_ids": [],
      "owner_name": "Barde",
      "phone_number": "+33 475301050",
      "postal_code": "07320",
      "siren": "492428958",
      "siret": "49242895800010",
      "status": "M",
      "store_name": "Boulangerie Barde",
      "street": "Grande Rue",
      "street_number": 74,
      "turnover": 180000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANGERS",
      "client_creation_date": "2007-09-12",
      "closing_days_ids": [],
      "datlinq_code": 990078,
      "email": null,
      "id": 20770,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "GUILLOT",
      "phone_number": "+33 241663586",
      "postal_code": "49000",
      "siren": "429934946",
      "siret": "42993494600022",
      "status": "P",
      "store_name": "Boulangerie Au Doux Peche",
      "street": "rue Saumuroise",
      "street_number": 200,
      "turnover": 240000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOUHANS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990124,
      "email": null,
      "id": 20795,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 385750364",
      "postal_code": "71500",
      "siren": "393973540",
      "siret": "39397354000031",
      "status": "P",
      "store_name": "Boulangerie Ridet",
      "street": "rue du Jura",
      "street_number": 9,
      "turnover": 150000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VAILHAUQUES",
      "client_creation_date": "2016-01-01",
      "closing_days_ids": [],
      "datlinq_code": 990184,
      "email": null,
      "id": 20836,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467844502",
      "postal_code": "34570",
      "siren": "441936150",
      "siret": "44193615000024",
      "status": "M",
      "store_name": "Boulangerie Art Gourmand/le fournil",
      "street": "CCommercial le Salet",
      "street_number": null,
      "turnover": 280000,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA GUERCHE DE BRETAGNE",
      "client_creation_date": "2007-03-28",
      "closing_days_ids": [],
      "datlinq_code": 990191,
      "email": null,
      "id": 20843,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BRIAND",
      "phone_number": "02-99963043",
      "postal_code": "35130",
      "siren": "495086670",
      "siret": "49508667000017",
      "status": "P",
      "store_name": "Boulangerie la Huche AaPains",
      "street": "rue de Rennes",
      "street_number": 21,
      "turnover": 260000,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MORLAIX",
      "client_creation_date": "2008",
      "closing_days_ids": [],
      "datlinq_code": 990220,
      "email": null,
      "id": 20863,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Vignard Olivier",
      "phone_number": "02-98624058",
      "postal_code": "29600",
      "siren": "504291733",
      "siret": "50429173300013",
      "status": "P",
      "store_name": "Boulangerie Vignard",
      "street": "place du General de Gaulle",
      "street_number": 27,
      "turnover": 250000,
      "user_id": 147,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990271,
      "email": null,
      "id": 20871,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42655690",
      "postal_code": "75008",
      "siren": "421246281",
      "siret": "42124628100024",
      "status": "P",
      "store_name": "Boulangerie Louvard",
      "street": "rue de Miromesnil",
      "street_number": 43,
      "turnover": 856203,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTBELIARD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990444,
      "email": null,
      "id": 20879,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 381985537",
      "postal_code": "25200",
      "siren": "484145347",
      "siret": "48414534700015",
      "status": "P",
      "store_name": "La Panetière",
      "street": "rue Maurice Ravel",
      "street_number": 5,
      "turnover": 190000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAGNANVILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990525,
      "email": null,
      "id": 2591,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-30332384",
      "postal_code": "78200",
      "siren": "530775030",
      "siret": "53077503000014",
      "status": "P",
      "store_name": "Sanwicherie Bread & Break",
      "street": "place des Droits de l Homme",
      "street_number": 2,
      "turnover": 80000,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATEAU THIERRY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990865,
      "email": null,
      "id": 20901,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MOREAU",
      "phone_number": "+33 323830229",
      "postal_code": "02400",
      "siren": "522418961",
      "siret": "52241896100010",
      "status": "M",
      "store_name": "Boulangerie Moreau",
      "street": "rue Carnot",
      "street_number": 47,
      "turnover": 250000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ILLE SUR TET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991135,
      "email": null,
      "id": 20909,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468806310",
      "postal_code": "66130",
      "siren": "509367264",
      "siret": "50936726400017",
      "status": "P",
      "store_name": "Boulangerie Le Pain Du Jour",
      "street": "avenue Pasteur",
      "street_number": 109,
      "turnover": 389400,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VAULX EN VELIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991192,
      "email": null,
      "id": 2614,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-72836801",
      "postal_code": "69120",
      "siren": "428138598",
      "siret": "42813859800027",
      "status": "EMPTY_STATUS",
      "store_name": "Croissanterie",
      "street": "rue Jacquard",
      "street_number": 2,
      "turnover": null,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LABENNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991262,
      "email": null,
      "id": 20915,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-59457930",
      "postal_code": "40530",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Bancel Boulangerie Patisserie",
      "street": "avenue General de Gaulle",
      "street_number": 49,
      "turnover": null,
      "user_id": 209,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THOUROTTE",
      "client_creation_date": "1-6-2012",
      "closing_days_ids": [],
      "datlinq_code": 991338,
      "email": null,
      "id": 20919,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "HDIDI MOHAMED",
      "phone_number": "03-44760147",
      "postal_code": "60150",
      "siren": "752355586",
      "siret": "75235558600013",
      "status": "P",
      "store_name": "Boulangerie la Huche",
      "street": "rue de la Republique",
      "street_number": 67,
      "turnover": 140000,
      "user_id": 311,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AGEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991402,
      "email": null,
      "id": 20925,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Chapelier",
      "phone_number": "05-53666882",
      "postal_code": "47000",
      "siren": "507711349",
      "siret": "50771134900013",
      "status": "M",
      "store_name": "De Bles En Bles",
      "street": "boulevard Edouard Lacour",
      "street_number": 47,
      "turnover": 950000,
      "user_id": 200,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BLAGNAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991605,
      "email": null,
      "id": 2626,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561167051",
      "postal_code": "31700",
      "siren": "750348179",
      "siret": "75034817900052",
      "status": "P",
      "store_name": "Pomme de Pain",
      "street": "Aeroport De Toulouse Blagnac",
      "street_number": 1,
      "turnover": 100,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WAMBRECHIES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991670,
      "email": null,
      "id": 32986,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005946252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320556405",
      "postal_code": "59118",
      "siren": "472501055",
      "siret": "47250105500058",
      "status": "EMPTY_STATUS",
      "store_name": "Lille Automatique Distribution",
      "street": "rue Marie Curie",
      "street_number": 60,
      "turnover": null,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MEDARD DE GUIZIERES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991838,
      "email": null,
      "id": 20955,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-57696157",
      "postal_code": "33230",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Patisserie Nouvelle",
      "street": "rue de la Republique",
      "street_number": 73,
      "turnover": null,
      "user_id": 203,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DIVION",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 992277,
      "email": null,
      "id": 20986,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010034537252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321627061",
      "postal_code": "62460",
      "siren": "522729094",
      "siret": "52272909400014",
      "status": "M",
      "store_name": "Boulangerie Le Fournil De La Biette",
      "street": "rue Louis Pasteur",
      "street_number": 4,
      "turnover": 260000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ORLY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 992519,
      "email": null,
      "id": 2648,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-49757828",
      "postal_code": "94310",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "Aeroport Orly Sud",
      "street_number": null,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLENEUVE ST GEORGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 993112,
      "email": null,
      "id": 21031,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43869619",
      "postal_code": "94190",
      "siren": "791112915",
      "siret": "0",
      "status": "P",
      "store_name": "Boulangerie Espace Gourmand",
      "street": "rue Thimonnier",
      "street_number": 2,
      "turnover": 240000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BELLEGARDE SUR VALSERINE",
      "client_creation_date": "1991-03-11",
      "closing_days_ids": [],
      "datlinq_code": 993976,
      "email": "s.cop@neuf.fr",
      "id": 32992,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013661252110",
      "location_areas_ids": [],
      "owner_name": "COP",
      "phone_number": "+33 450566227",
      "postal_code": "01200",
      "siren": "381269448",
      "siret": "38126944800027",
      "status": "P",
      "store_name": "Boulangerie le Jardin des Delices",
      "street": "rue Joseph Marion",
      "street_number": 2,
      "turnover": 160000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAVENT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 994033,
      "email": null,
      "id": 21044,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231780008",
      "postal_code": "14860",
      "siren": "523464642",
      "siret": "52346464200017",
      "status": "P",
      "store_name": "Boulangerie Plaisirs Normands",
      "street": "rue du Lavoir",
      "street_number": 16,
      "turnover": 200000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ISTRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 994082,
      "email": null,
      "id": 21049,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-42550585",
      "postal_code": "13800",
      "siren": "524022241",
      "siret": "52402224100011",
      "status": "P",
      "store_name": "Boulangerie Blé et Seigle",
      "street": "avenue Helene Boucher",
      "street_number": 10,
      "turnover": 10000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DECINES CHARPIEU",
      "client_creation_date": "2010-07-08",
      "closing_days_ids": [],
      "datlinq_code": 994132,
      "email": null,
      "id": 324,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "JL120001",
      "location_areas_ids": [],
      "owner_name": "NORMAND",
      "phone_number": "04-78491226",
      "postal_code": "69150",
      "siren": "523391365",
      "siret": "52339136500013",
      "status": "G",
      "store_name": "Boulangerie la Mie de la Flute",
      "street": "rue de la Republique",
      "street_number": 131,
      "turnover": 367810,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PERREUX SUR MARNE",
      "client_creation_date": "2010",
      "closing_days_ids": [],
      "datlinq_code": 994188,
      "email": null,
      "id": 21057,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0786G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43242022",
      "postal_code": "94170",
      "siren": "523415305",
      "siret": null,
      "status": "M",
      "store_name": "Boulangerie Sonia et Fabrice",
      "street": "avenue du 8 Mai 1945",
      "street_number": 157,
      "turnover": 200000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NOVES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 994457,
      "email": null,
      "id": 21068,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-90950552",
      "postal_code": "13550",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie des Palus de Names",
      "street": "avenue Francois Marcel Roudier",
      "street_number": 50,
      "turnover": 20000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURCOING",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 994871,
      "email": null,
      "id": 21081,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 960509773",
      "postal_code": "59200",
      "siren": "523515641",
      "siret": "52351564100018",
      "status": "P",
      "store_name": "Lenoir",
      "street": "rue de Lille",
      "street_number": 16,
      "turnover": 250000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "USTARITZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 994955,
      "email": null,
      "id": 47680,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1823G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-59703112",
      "postal_code": "64480",
      "siren": "833180938",
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Pizza Gourmande",
      "street": "Chemin Rural",
      "street_number": 11,
      "turnover": null,
      "user_id": 209,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "EYZIN PINET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 995437,
      "email": null,
      "id": 21090,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BERTHIER et EXCOFFIER",
      "phone_number": "04-74580863",
      "postal_code": "38780",
      "siren": "504798562",
      "siret": "50479856200014",
      "status": "M",
      "store_name": "Boulangerie la Corbeille à Pain",
      "street": "place du Village",
      "street_number": 10,
      "turnover": 164890,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST DIDIER DE LA TOUR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 995626,
      "email": null,
      "id": 21126,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "JEAN MARC PERRIN",
      "phone_number": "04-74974837",
      "postal_code": "38110",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie les Gourmands Disent",
      "street": "route de Chambery",
      "street_number": 2,
      "turnover": 100000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALLAURIS",
      "client_creation_date": "2007-09-01",
      "closing_days_ids": [],
      "datlinq_code": 995631,
      "email": "lefournildesanges@orange.fr",
      "id": 326,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "M2733001",
      "location_areas_ids": [],
      "owner_name": "TRIPODI Louis",
      "phone_number": "04-93634498",
      "postal_code": "06220",
      "siren": "500016332",
      "siret": "50001633200016",
      "status": "M",
      "store_name": "Boulangerie le Fournil des Anges",
      "street": "avenue de la Liberte",
      "street_number": 92,
      "turnover": 362000,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATTE",
      "client_creation_date": "2010",
      "closing_days_ids": [],
      "datlinq_code": 996007,
      "email": null,
      "id": 21163,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1621F001",
      "location_areas_ids": [],
      "owner_name": "PORNIN",
      "phone_number": "04-76381895",
      "postal_code": "38160",
      "siren": "520068669",
      "siret": "52006866900016",
      "status": "M",
      "store_name": "Boulangerie le Pain d'Ange",
      "street": "place de la Republique",
      "street_number": 18,
      "turnover": 163120,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DUNKERQUE",
      "client_creation_date": "2010-01-01",
      "closing_days_ids": [],
      "datlinq_code": 997333,
      "email": "loicsue@hotmail.fr",
      "id": 21221,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007067252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 361388804",
      "postal_code": "59140",
      "siren": "753339001",
      "siret": "75333900100012",
      "status": "M",
      "store_name": "Boulangerie le Campagnard",
      "street": "rue Alfred Dumont",
      "street_number": 30,
      "turnover": 150000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 998435,
      "email": null,
      "id": 41573,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-22095855",
      "postal_code": "06000",
      "siren": "513684431",
      "siret": "51368443100010",
      "status": "P",
      "store_name": "Sandwicherie la Casa della Piadina",
      "street": "rue Gioffredo",
      "street_number": 52,
      "turnover": 2000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LESSAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 998926,
      "email": null,
      "id": 21266,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233464095",
      "postal_code": "50430",
      "siren": "524173549",
      "siret": "52417354900014",
      "status": "P",
      "store_name": "Boulangerie Jacquette",
      "street": "rue de la Sainte Croix",
      "street_number": 19,
      "turnover": 230000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUZELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 999422,
      "email": null,
      "id": 21285,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "00-000",
      "postal_code": "31700",
      "siren": "440166726",
      "siret": "44016672600024",
      "status": "P",
      "store_name": "Le Fournil de l'Aeroport",
      "street": "rue des Pins",
      "street_number": 79,
      "turnover": 240000,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STE SAVINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1000437,
      "email": null,
      "id": 21287,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Marie Jeanne Bellanger",
      "phone_number": "+33 325792473",
      "postal_code": "10300",
      "siren": "501574982",
      "siret": "50157498200010",
      "status": "P",
      "store_name": "Boulangerie Marie Jeanne",
      "street": "avenue du General Leclerc",
      "street_number": 70,
      "turnover": 90000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1000809,
      "email": null,
      "id": 21290,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243379085",
      "postal_code": "53160",
      "siren": "524477635",
      "siret": "52447763500014",
      "status": "P",
      "store_name": "Boulangerie Rouland",
      "street": "rue de la Poste",
      "street_number": 3,
      "turnover": 300000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "2014-04-01",
      "closing_days_ids": [],
      "datlinq_code": 1002099,
      "email": null,
      "id": 332,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0631D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93357094",
      "postal_code": "06200",
      "siren": "481305944",
      "siret": "48130594400037",
      "status": "G",
      "store_name": "Les Delices de la Pignata",
      "street": "avenue de Fabron",
      "street_number": 242,
      "turnover": 830000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOBIGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1002305,
      "email": null,
      "id": 41578,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "93000",
      "siren": "512817917",
      "siret": "51281791700010",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie B' Nina",
      "street": "avenue Edouard Vaillant",
      "street_number": 30,
      "turnover": null,
      "user_id": 74,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DURY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1003532,
      "email": null,
      "id": 33014,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011470252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321552753",
      "postal_code": "62156",
      "siren": "514497882",
      "siret": "51449788200019",
      "status": "P",
      "store_name": "L Hippocampe",
      "street": "rue du Calvaire",
      "street_number": 3,
      "turnover": 100000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE VALTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1003612,
      "email": null,
      "id": 21338,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "88230",
      "siren": "524427788",
      "siret": "52442778800012",
      "status": "P",
      "store_name": "Boulangerie Maison Gollette",
      "street": "le Village",
      "street_number": 23,
      "turnover": 120000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRENADE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1003681,
      "email": null,
      "id": 21346,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "THOA JEAN FRANCOIS",
      "phone_number": "000-000",
      "postal_code": "31330",
      "siren": "524478112",
      "siret": "52447811200021",
      "status": "P",
      "store_name": "Chocolatine et compagnie",
      "street": "rue de la Republique",
      "street_number": 17,
      "turnover": 127300,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1004222,
      "email": null,
      "id": 2741,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45423763",
      "postal_code": "75014",
      "siren": "388767105",
      "siret": "38876710500017",
      "status": "EMPTY_STATUS",
      "store_name": "Capricia",
      "street": "rue Didot",
      "street_number": 75,
      "turnover": null,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "YERRES",
      "client_creation_date": "2-9-2010",
      "closing_days_ids": [],
      "datlinq_code": 1004484,
      "email": null,
      "id": 21394,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "Z0535001",
      "location_areas_ids": [],
      "owner_name": "BERTAL",
      "phone_number": "01-69488752",
      "postal_code": "91330",
      "siren": "524643947",
      "siret": "52464394700012",
      "status": "M",
      "store_name": "Boulangerie Aux Gourmandises D Enola",
      "street": "rue Pierre Brossolette",
      "street_number": 67,
      "turnover": 283400,
      "user_id": 84,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HALLUIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1004547,
      "email": null,
      "id": 2743,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 682234149",
      "postal_code": "59250",
      "siren": "513529735",
      "siret": "51352973500013",
      "status": "P",
      "store_name": "Viennoiserie de l Europe",
      "street": "rue de Lille",
      "street_number": 19,
      "turnover": 124800,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HALLUIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1004548,
      "email": null,
      "id": 2744,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 699352104",
      "postal_code": "59250",
      "siren": "519347215",
      "siret": "51934721500013",
      "status": "P",
      "store_name": "Viennoiserie du Centre",
      "street": "rue Marthe Nollet",
      "street_number": 18,
      "turnover": 45700,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VOISINS LE BRETONNEUX",
      "client_creation_date": "13-12-2006",
      "closing_days_ids": [],
      "datlinq_code": 1004617,
      "email": null,
      "id": 21404,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ROIDOR",
      "phone_number": "01-39442815",
      "postal_code": "78960",
      "siren": "493138523",
      "siret": "49313852300011",
      "status": "M",
      "store_name": "Boulangerie Atelier Roidor",
      "street": "rue Alfred de Vigny",
      "street_number": 5,
      "turnover": 450000,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURNEHEM SUR LA HEM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1004639,
      "email": null,
      "id": 21407,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011542252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321356077",
      "postal_code": "62890",
      "siren": "491024915",
      "siret": "49102491500028",
      "status": "P",
      "store_name": "Boulangerie le Fournil des Sarrazins",
      "street": "rue du General de Gaulle",
      "street_number": 57,
      "turnover": 145000,
      "user_id": 422,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ENVERMEU",
      "client_creation_date": "2010-03-29",
      "closing_days_ids": [],
      "datlinq_code": 1004660,
      "email": null,
      "id": 21409,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235857292",
      "postal_code": "76630",
      "siren": "384771135",
      "siret": "38477113500058",
      "status": "P",
      "store_name": "Boulangerie Vallery",
      "street": "rue des Canadiens",
      "street_number": 1,
      "turnover": 250000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURBEVOIE",
      "client_creation_date": "1 juillet 2010",
      "closing_days_ids": [],
      "datlinq_code": 1004781,
      "email": null,
      "id": 2751,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47683065",
      "postal_code": "92400",
      "siren": "523495349",
      "siret": "52349534900012",
      "status": "P",
      "store_name": "Sandwicherie la Gourmandise",
      "street": "avenue Gambetta",
      "street_number": 65,
      "turnover": 100000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DOUARNENEZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1004873,
      "email": null,
      "id": 2752,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-98929496",
      "postal_code": "29100",
      "siren": "438068777",
      "siret": "43806877700012",
      "status": "EMPTY_STATUS",
      "store_name": "La Pidz",
      "street": "rue Duguay Trouin",
      "street_number": 5,
      "turnover": null,
      "user_id": 149,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": "2005",
      "closing_days_ids": [],
      "datlinq_code": 1005068,
      "email": null,
      "id": 21438,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91523102",
      "postal_code": "13007",
      "siren": "520136870",
      "siret": "52013687000018",
      "status": "P",
      "store_name": "Boulangerie la Mascotte",
      "street": "rue d Endoume",
      "street_number": 250,
      "turnover": 200000,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PRAZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1005155,
      "email": null,
      "id": 21439,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79085821",
      "postal_code": "73120",
      "siren": "349332429",
      "siret": "34933242900050",
      "status": "EMPTY_STATUS",
      "store_name": "Au Pain d Antan",
      "street": "Immeuble Or Blanc",
      "street_number": null,
      "turnover": null,
      "user_id": 61,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DONZERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1005494,
      "email": null,
      "id": 21454,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0543B001",
      "location_areas_ids": [],
      "owner_name": "SARRAZIN",
      "phone_number": "04-75539452",
      "postal_code": "26290",
      "siren": "540045481",
      "siret": "54004548100012",
      "status": "G",
      "store_name": "Boulangerie Madelice",
      "street": "centre commercial Plein Sud",
      "street_number": null,
      "turnover": 400000,
      "user_id": 170,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST PIERRE MONTLIMART",
      "client_creation_date": "2010-09-01",
      "closing_days_ids": [],
      "datlinq_code": 1005624,
      "email": null,
      "id": 21460,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "TOUBLANC",
      "phone_number": "+33 241635744",
      "postal_code": "49110",
      "siren": "524994258",
      "siret": "52499425800019",
      "status": "G",
      "store_name": "Boulangerie Coquelicot",
      "street": "avenue du Bordage",
      "street_number": 1,
      "turnover": 458000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TRELAZE",
      "client_creation_date": "2010-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1005628,
      "email": null,
      "id": 21461,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010009971252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241340095",
      "postal_code": "49800",
      "siren": "525066734",
      "siret": "52506673400019",
      "status": "G",
      "store_name": "Boulangerie le Fournil des Allumettes",
      "street": "rue Jean Jaures",
      "street_number": 206,
      "turnover": 290000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1005982,
      "email": null,
      "id": 21475,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "LEGAY CHOC",
      "phone_number": "01-48876812",
      "postal_code": "75004",
      "siren": "439064445",
      "siret": "43906444500034",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Victor 1920",
      "street": "rue Rambuteau",
      "street_number": 33,
      "turnover": 1525793,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HORBOURG WIHR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1006435,
      "email": null,
      "id": 21493,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "70072001",
      "location_areas_ids": [],
      "owner_name": "SESSA",
      "phone_number": "03-89247042",
      "postal_code": "68180",
      "siren": "514078906",
      "siret": "51407890600021",
      "status": "M",
      "store_name": "Boulangerie d'Holtzbachoffa",
      "street": "Grand Rue",
      "street_number": 73,
      "turnover": 350000,
      "user_id": 111,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TRELAZE",
      "client_creation_date": "2010-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1006652,
      "email": null,
      "id": 21502,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005218252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241605415",
      "postal_code": "49800",
      "siren": "525231544",
      "siret": "52523154400012",
      "status": "G",
      "store_name": "Boulangerie Le Fournil Du Buisson",
      "street": "boulevard Dautel",
      "street_number": 26,
      "turnover": 533000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTROUGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1006676,
      "email": null,
      "id": 21504,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42531724",
      "postal_code": "92120",
      "siren": "527590632",
      "siret": "52759063200016",
      "status": "P",
      "store_name": "Boulangerie au Peche Mignon",
      "street": "avenue de la Republique",
      "street_number": 112,
      "turnover": 230000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1007467,
      "email": null,
      "id": 2780,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "CN024001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78420033",
      "postal_code": "69002",
      "siren": "325049377",
      "siret": "32504937700022",
      "status": "G",
      "store_name": "Les 3 Brioches",
      "street": "rue de la Republique",
      "street_number": 69,
      "turnover": 1361000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LES CLAYES SOUS BOIS",
      "client_creation_date": "8-10-2010",
      "closing_days_ids": [],
      "datlinq_code": 1008124,
      "email": null,
      "id": 21561,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0904A001",
      "location_areas_ids": [],
      "owner_name": "DUREL",
      "phone_number": "000-000",
      "postal_code": "78340",
      "siren": "414258772",
      "siret": "41425877200022",
      "status": "M",
      "store_name": "Boulangerie Durel",
      "street": "avenue Maurice Jouet",
      "street_number": 50,
      "turnover": 400000,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COMBS LA VILLE",
      "client_creation_date": "01/10/2010",
      "closing_days_ids": [],
      "datlinq_code": 1008259,
      "email": null,
      "id": 21572,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "COSSON",
      "phone_number": "01-60607110",
      "postal_code": "77380",
      "siren": "527863831",
      "siret": "52786383100014",
      "status": "P",
      "store_name": "Boulangerie la Fournee d'Antan",
      "street": "avenue de la Republique",
      "street_number": 40,
      "turnover": 210000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRATENTOUR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008286,
      "email": null,
      "id": 21576,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ROUJAS JEAN JACQUES",
      "phone_number": "+33 534277820",
      "postal_code": "31150",
      "siren": "527877229",
      "siret": "52787722900015",
      "status": "P",
      "store_name": "Boulangerie Ludojac",
      "street": "rue Leo Ferre",
      "street_number": 6,
      "turnover": 233991,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTERRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008505,
      "email": null,
      "id": 21589,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47212381",
      "postal_code": "92000",
      "siren": "410389795",
      "siret": "41038979500031",
      "status": "G",
      "store_name": "Maître Pain",
      "street": "rue Maurice Thorez",
      "street_number": 85,
      "turnover": 1000006,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE VESINET",
      "client_creation_date": "1-1-2010",
      "closing_days_ids": [],
      "datlinq_code": 1008512,
      "email": null,
      "id": 21596,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SALAGNAC",
      "phone_number": "01-39763128",
      "postal_code": "78110",
      "siren": "483583282",
      "siret": "48358328200023",
      "status": "M",
      "store_name": "Boulangerie Au Gourmet du Vézinet",
      "street": "place de l Eglise",
      "street_number": 14,
      "turnover": 1100000,
      "user_id": 96,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SCHILTIGHEIM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008541,
      "email": null,
      "id": 21621,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-88331995",
      "postal_code": "67300",
      "siren": "520156464",
      "siret": "52015646400015",
      "status": "P",
      "store_name": "Boulangerie Pâtisserie Michael",
      "street": "rue de Vendenheim",
      "street_number": 20,
      "turnover": 180000,
      "user_id": 112,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CAST LE GUILDO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008661,
      "email": null,
      "id": 21717,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BOULIN JULIEN",
      "phone_number": "02-96416189",
      "postal_code": "22380",
      "siren": "522589290",
      "siret": "52258929000025",
      "status": "P",
      "store_name": "Boulangerie De La Rotonde",
      "street": "rue du Guesclin",
      "street_number": 2,
      "turnover": 160000,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MERVILLE",
      "client_creation_date": "2005-04-19",
      "closing_days_ids": [],
      "datlinq_code": 1008716,
      "email": null,
      "id": 21765,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016745252110",
      "location_areas_ids": [],
      "owner_name": "CEROUTER",
      "phone_number": "+33 328483053",
      "postal_code": "59660",
      "siren": "481840304",
      "siret": "48184030400010",
      "status": "G",
      "store_name": "Au Fournil des 2 Ponts",
      "street": "rue du General de Gaulle",
      "street_number": 58,
      "turnover": 474000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST RAPHAEL",
      "client_creation_date": "2008-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1008722,
      "email": null,
      "id": 21771,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010030489252110",
      "location_areas_ids": [],
      "owner_name": "DENIS MOTTET",
      "phone_number": "+33 494192466",
      "postal_code": "83700",
      "siren": "340153964",
      "siret": "34015396400069",
      "status": "M",
      "store_name": "Fournil Monsieur Denis Mottet",
      "street": "rue Charles Goujon",
      "street_number": 126,
      "turnover": 520000,
      "user_id": 451,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURVILLE LA RIVIERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008739,
      "email": null,
      "id": 21784,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235775865",
      "postal_code": "76410",
      "siren": "502832066",
      "siret": "50283206600018",
      "status": "M",
      "store_name": "Boulangerie Froissard",
      "street": "rue Jean Jaures",
      "street_number": 15,
      "turnover": 280843,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRANDCAMP MAISY",
      "client_creation_date": "2010-10-01",
      "closing_days_ids": [],
      "datlinq_code": 1008742,
      "email": "yannickcika@hotmail.com",
      "id": 21787,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012295252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231226322",
      "postal_code": "14450",
      "siren": "443084025",
      "siret": "44308402500024",
      "status": "G",
      "store_name": "Boulangerie Aux Petits Délices",
      "street": "rue Aristide Briand",
      "street_number": 64,
      "turnover": 400000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEDOUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008829,
      "email": null,
      "id": 21827,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXE40001",
      "location_areas_ids": [],
      "owner_name": "Herve",
      "phone_number": "05-46685090",
      "postal_code": "17230",
      "siren": "528074180",
      "siret": "52807418000019",
      "status": "M",
      "store_name": "Boulangerie Fournil De Villedoux",
      "street": "rue de la Liberte",
      "street_number": 22,
      "turnover": 240000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTREUX CHATEAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008849,
      "email": null,
      "id": 21830,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 384462014",
      "postal_code": "90130",
      "siren": "528145980",
      "siret": "52814598000017",
      "status": "P",
      "store_name": "La Fontaine Aux Delices",
      "street": "rue du General Charles de Gaulle",
      "street_number": 14,
      "turnover": 180000,
      "user_id": 411,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SANTA MARIA DI LOTA",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008950,
      "email": null,
      "id": 21843,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "VENTURA",
      "phone_number": "04-95323481",
      "postal_code": "20200",
      "siren": "520884354",
      "siret": "52088435400017",
      "status": "M",
      "store_name": "Boulangerie Patisserie Ventura",
      "street": "route du Cap",
      "street_number": 55,
      "turnover": 1048000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRANGES SUR VOLOGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009164,
      "email": null,
      "id": 33035,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "3118E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-29511313",
      "postal_code": "88640",
      "siren": "528227606",
      "siret": "52822760600019",
      "status": "P",
      "store_name": "La Petite Myrtille",
      "street": "quai de Vologne",
      "street_number": 5,
      "turnover": 180000,
      "user_id": 109,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "2010-10-01",
      "closing_days_ids": [],
      "datlinq_code": 1009183,
      "email": null,
      "id": 21911,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "06300",
      "siren": "528061617",
      "siret": "52806161700015",
      "status": "P",
      "store_name": "Le Fournil de Saint Roch",
      "street": "boulevard Pierre Semard",
      "street_number": 5,
      "turnover": 150423,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GEREON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009240,
      "email": null,
      "id": 21915,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "44150",
      "siren": "527984876",
      "siret": "52798487600013",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie MB Ancenis",
      "street": "boulevard de la Prairie",
      "street_number": 831,
      "turnover": null,
      "user_id": 138,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MALO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009292,
      "email": null,
      "id": 21943,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "30176001",
      "location_areas_ids": [],
      "owner_name": "Deborde",
      "phone_number": "02-99819678",
      "postal_code": "35400",
      "siren": "491165551",
      "siret": "49116555100012",
      "status": "M",
      "store_name": "Boulangerie Deborde Philippe",
      "street": "rue Ville Pepin",
      "street_number": 82,
      "turnover": 170000,
      "user_id": 148,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAREUIL LE PORT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009294,
      "email": null,
      "id": 21945,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010006849252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326583196",
      "postal_code": "51700",
      "siren": "511364630",
      "siret": "51136463000026",
      "status": "P",
      "store_name": "Boulangerie aux Delices",
      "street": "avenue Paul Doumer",
      "street_number": 50,
      "turnover": 195000,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CORBEIL ESSONNES",
      "client_creation_date": "1-1-2000",
      "closing_days_ids": [],
      "datlinq_code": 1009320,
      "email": null,
      "id": 21968,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "U0953001",
      "location_areas_ids": [],
      "owner_name": "Samir Bensalem",
      "phone_number": "01-60892840",
      "postal_code": "91100",
      "siren": "429439847",
      "siret": "42943984700014",
      "status": "M",
      "store_name": "Boulangerie Val de l'Essonne",
      "street": "rue de Paris",
      "street_number": 31,
      "turnover": 292000,
      "user_id": 86,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE CREUSOT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009338,
      "email": null,
      "id": 21982,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "HAUF",
      "phone_number": "+33 385787911",
      "postal_code": "71200",
      "siren": "492304456",
      "siret": "49230445600014",
      "status": "P",
      "store_name": "Boulangerie Hauf",
      "street": "rue Marceau",
      "street_number": 58,
      "turnover": 150000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARQUETTE-LEZ-LILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009388,
      "email": null,
      "id": 22029,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010028815252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320407075",
      "postal_code": "59520",
      "siren": "494112592",
      "siret": "49411259200014",
      "status": "M",
      "store_name": "Boulangerie Patisserie Monsieur Cyril Lenne",
      "street": "Rue d'Ypres",
      "street_number": 139,
      "turnover": 320000,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTIGNY LES METZ",
      "client_creation_date": "2009-10-01",
      "closing_days_ids": [],
      "datlinq_code": 1009468,
      "email": null,
      "id": 37380,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005788252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387637518",
      "postal_code": "57950",
      "siren": "823588116",
      "siret": "82358811600017",
      "status": "P",
      "store_name": "Boulangerie Marie-Blanche",
      "street": "rue du General Franiatte",
      "street_number": 54,
      "turnover": 90000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOUHY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009491,
      "email": null,
      "id": 22107,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386264927",
      "postal_code": "58310",
      "siren": "501562128",
      "siret": "50156212800014",
      "status": "P",
      "store_name": "Boulangerie Syniec",
      "street": "le Bourg",
      "street_number": null,
      "turnover": 170000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALENCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009509,
      "email": null,
      "id": 22122,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 563292402",
      "postal_code": "82400",
      "siren": "508441060",
      "siret": "50844106000011",
      "status": "M",
      "store_name": "Boulangerie Este",
      "street": "boulevard Victor Guilhem",
      "street_number": 28,
      "turnover": 270000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GERMAIN DU CORBEIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1010259,
      "email": "auxdouceurscorbenoises@hotmail.fr",
      "id": 22223,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "CHASTELLIER",
      "phone_number": "+33 233265235",
      "postal_code": "61000",
      "siren": "531374940",
      "siret": "53137494000017",
      "status": "P",
      "store_name": "Boulangerie Chastellier",
      "street": "place de l Eglise",
      "street_number": 5,
      "turnover": 140000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIVIER AU COURT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1011483,
      "email": null,
      "id": 22258,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010030791252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 324361968",
      "postal_code": "08440",
      "siren": "522291822",
      "siret": "52229182200016",
      "status": "P",
      "store_name": "Boulangerie Zanelli Vincent",
      "street": "rue Jean Rogissart",
      "street_number": 1,
      "turnover": 220000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE MEE SUR SEINE",
      "client_creation_date": "1-2-2010",
      "closing_days_ids": [],
      "datlinq_code": 1011870,
      "email": null,
      "id": 22264,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SAMAD",
      "phone_number": "09-54736395",
      "postal_code": "77350",
      "siren": "520372780",
      "siret": "52037278000012",
      "status": "G",
      "store_name": "Boulangerie Sarah",
      "street": "avenue de Corbeil",
      "street_number": null,
      "turnover": 542000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA ROCHELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1012039,
      "email": null,
      "id": 22271,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "LI314001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46412695",
      "postal_code": "17000",
      "siren": "501614770",
      "siret": "50161477000029",
      "status": "P",
      "store_name": "Patisserie d' Jolly",
      "street": "rue Chaudrier",
      "street_number": 16,
      "turnover": 420000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANGOULEME",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1012072,
      "email": null,
      "id": 22273,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-45950509",
      "postal_code": "16000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La biscuiterie Lolmede",
      "street": "rue des Arceaux",
      "street_number": 3,
      "turnover": null,
      "user_id": 155,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANCY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1012795,
      "email": null,
      "id": 22303,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83339687",
      "postal_code": "54000",
      "siren": "528822562",
      "siret": "52882256200013",
      "status": "EMPTY_STATUS",
      "store_name": "Les Delices d Astride",
      "street": "avenue du 20eme Corps",
      "street_number": 3,
      "turnover": null,
      "user_id": 106,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHALON SUR SAONE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1015782,
      "email": null,
      "id": 22321,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010031426252110",
      "location_areas_ids": [],
      "owner_name": "Ines",
      "phone_number": "+33 385931663",
      "postal_code": "71100",
      "siren": "531294627",
      "siret": "53129462700017",
      "status": "G",
      "store_name": "Boulangerie Si Felipe",
      "street": "avenue Pierre Nugues",
      "street_number": 15,
      "turnover": 400000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST AVERTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1015844,
      "email": null,
      "id": 2823,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-47750357",
      "postal_code": "37550",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Le Fournil de pierre",
      "street": "avenue du Lac",
      "street_number": 16,
      "turnover": 600000,
      "user_id": 142,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SARZEAU",
      "client_creation_date": "2010-12-09",
      "closing_days_ids": [],
      "datlinq_code": 1017677,
      "email": "sirocodu56@hotmail.fr",
      "id": 22358,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31589001",
      "location_areas_ids": [],
      "owner_name": "BROHAN",
      "phone_number": "02-97417190",
      "postal_code": "56370",
      "siren": "528900046",
      "siret": "52890004600012",
      "status": "G",
      "store_name": "Boulangerie Au Plaisir Gourmand",
      "street": "rue du General de Gaulle",
      "street_number": 20,
      "turnover": 948938,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ETRICOURT MANANCOURT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1017846,
      "email": null,
      "id": 37383,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "Y1168001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-22830045",
      "postal_code": "80360",
      "siren": "499736155",
      "siret": "49973615500015",
      "status": "P",
      "store_name": "Chez Domi",
      "street": "Grande Rue",
      "street_number": 15,
      "turnover": 100000,
      "user_id": 119,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CASTELNAUDARY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1018043,
      "email": null,
      "id": 47690,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468605663",
      "postal_code": "11400",
      "siren": "529040560",
      "siret": "52904056000011",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Pains et Passions (Bassin)",
      "street": "avenue Francois Mitterrand",
      "street_number": 29,
      "turnover": null,
      "user_id": 440,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VANNES",
      "client_creation_date": "2010-12-28",
      "closing_days_ids": [],
      "datlinq_code": 1018126,
      "email": null,
      "id": 22386,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31559001",
      "location_areas_ids": [],
      "owner_name": "MORIO",
      "phone_number": "02-97407296",
      "postal_code": "56000",
      "siren": "529111163",
      "siret": "52911116300018",
      "status": "G",
      "store_name": "Boulangerie Morio",
      "street": "rue Henri Dunant",
      "street_number": 13,
      "turnover": 550000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STAINS",
      "client_creation_date": "1-3-2012",
      "closing_days_ids": [],
      "datlinq_code": 1018233,
      "email": null,
      "id": 2831,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0261G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48225442",
      "postal_code": "93240",
      "siren": "750497232",
      "siret": "75049723200017",
      "status": "P",
      "store_name": "Sandwicherie le Bon Pain de Stains",
      "street": "rue Roger Salengro",
      "street_number": 64,
      "turnover": 74000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRASSE",
      "client_creation_date": "2009-06-09",
      "closing_days_ids": [],
      "datlinq_code": 1019108,
      "email": null,
      "id": 22426,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SILVA PAULO",
      "phone_number": "04-93601991",
      "postal_code": "06130",
      "siren": "512956319",
      "siret": "51295631900010",
      "status": "G",
      "store_name": "Boulangerie Au Pain De Baptiste",
      "street": "route de Mouans Sartoux",
      "street_number": 3,
      "turnover": 1000000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEZIERS",
      "client_creation_date": "2011-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1019282,
      "email": null,
      "id": 22437,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010029772252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467764040",
      "postal_code": "34500",
      "siren": "490695855",
      "siret": "49069585500026",
      "status": "M",
      "store_name": "Boulangerie La Marquise",
      "street": "boulevard de la Liberte",
      "street_number": 46,
      "turnover": 245000,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1020246,
      "email": null,
      "id": 33045,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1250B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45557975",
      "postal_code": "75007",
      "siren": "519167878",
      "siret": "51916787800015",
      "status": "P",
      "store_name": "Couleurs de Ferme",
      "street": "avenue de la Motte Picquet",
      "street_number": 33,
      "turnover": 0,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTERRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1020279,
      "email": null,
      "id": 2849,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1785D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42044498",
      "postal_code": "92000",
      "siren": "524525920",
      "siret": "52452592000020",
      "status": "P",
      "store_name": "Le Fournil Clemenceau",
      "street": "avenue Georges Clemenceau",
      "street_number": 346,
      "turnover": 100000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LUNEL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1020416,
      "email": null,
      "id": 2854,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 499645686",
      "postal_code": "34400",
      "siren": "513372953",
      "siret": "51337295300010",
      "status": "P",
      "store_name": "Sandwicherie le Fournil de Lunel",
      "street": "avenue du Marechal de Lattre de Tassigny",
      "street_number": 399,
      "turnover": 10000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": "25 Décembre 2010",
      "closing_days_ids": [],
      "datlinq_code": 1020512,
      "email": "philippe.ferrer@dbmail.com",
      "id": 22521,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "RLN69001",
      "location_areas_ids": [],
      "owner_name": "FERRER",
      "phone_number": "04-91893181",
      "postal_code": "13012",
      "siren": "518564992",
      "siret": "51856499200015",
      "status": "G",
      "store_name": "Boulangerie L'Atelier D'Audrey",
      "street": "avenue du 24 Avril 1915",
      "street_number": 3,
      "turnover": 622500,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CALVI",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1020549,
      "email": "sarlcalviboul@gmail.com",
      "id": 33047,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1618D001",
      "location_areas_ids": [],
      "owner_name": "Garsi",
      "phone_number": "0631802376",
      "postal_code": "20260",
      "siren": "530293521",
      "siret": "53029352100015",
      "status": "G",
      "store_name": "Boulangerie Garsi",
      "street": "avenue Santa Maria",
      "street_number": 5,
      "turnover": 703900,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHARTRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1020711,
      "email": null,
      "id": 37018,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 237229820",
      "postal_code": "28000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Subway",
      "street": "place des Epars",
      "street_number": 6,
      "turnover": null,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA ROCHELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1020928,
      "email": null,
      "id": 37384,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "20198001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46412671",
      "postal_code": "17000",
      "siren": "498676766",
      "siret": "49867676600013",
      "status": "P",
      "store_name": "Restaurant Basilic'O",
      "street": "rue du Palais",
      "street_number": 41,
      "turnover": 20000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1021642,
      "email": null,
      "id": 41587,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78027171",
      "postal_code": "69007",
      "siren": "525062139",
      "siret": "52506213900015",
      "status": "EMPTY_STATUS",
      "store_name": "Class'croute",
      "street": "avenue Debourg",
      "street_number": 35,
      "turnover": null,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROISSY EN FRANCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1021654,
      "email": null,
      "id": 34234,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47234837",
      "postal_code": "95700",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie Bert's",
      "street": "aeroport Charles de Gaulle - Terminal 2F",
      "street_number": null,
      "turnover": null,
      "user_id": 79,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLAMART",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1021947,
      "email": null,
      "id": 22578,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "Z0795001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-46327085",
      "postal_code": "92140",
      "siren": "530494657",
      "siret": "53049465700014",
      "status": "P",
      "store_name": "Boulangerie la Clamartoise Mr Aligue ",
      "street": "route du Pave Blanc",
      "street_number": 71,
      "turnover": 320000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1022284,
      "email": null,
      "id": 2881,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 562478267",
      "postal_code": "31500",
      "siren": "702045519",
      "siret": "70204551900056",
      "status": "EMPTY_STATUS",
      "store_name": "Le Fournil de Pierre",
      "street": "chemin de la Terrasse",
      "street_number": 2,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FRONTON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1022424,
      "email": null,
      "id": 22621,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005185252110",
      "location_areas_ids": [],
      "owner_name": "PESCAY PHILIPPE",
      "phone_number": "+33 561355289",
      "postal_code": "31620",
      "siren": "519120174",
      "siret": "51912017400015",
      "status": "G",
      "store_name": "Boulangerie Pescay Philippe",
      "street": "avenue de Toulouse",
      "street_number": 115,
      "turnover": 821400,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAMPTOCE SUR LOIRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1022563,
      "email": null,
      "id": 22631,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241399233",
      "postal_code": "49123",
      "siren": "530353481",
      "siret": "53035348100019",
      "status": "P",
      "store_name": "Boulangerie Leroi Et Associés",
      "street": "rue Gilles de Rais",
      "street_number": 9,
      "turnover": 279000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NEUVILLE DE POITOU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1023006,
      "email": null,
      "id": 22646,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "23192001",
      "location_areas_ids": [],
      "owner_name": "JACQUET",
      "phone_number": "05-49512009",
      "postal_code": "86170",
      "siren": "528672520",
      "siret": "52867252000012",
      "status": "M",
      "store_name": "La Briole",
      "street": "rue du Sergent Bangoura Moride",
      "street_number": 10,
      "turnover": 220000,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "L ILE ROUSSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1025993,
      "email": "info@hotel-cotesud.com",
      "id": 33055,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "RLQ41001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-95630170",
      "postal_code": "20220",
      "siren": "452025265",
      "siret": "45202526500011",
      "status": "M",
      "store_name": "Hotel l'Escale Cote Sud",
      "street": "rue Notre Dame",
      "street_number": 22,
      "turnover": 450600,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CLAUD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1027710,
      "email": null,
      "id": 22709,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-45713247",
      "postal_code": "16450",
      "siren": "511029969",
      "siret": "51102996900017",
      "status": "P",
      "store_name": "Boulangerie au Fin Palais St Claudais",
      "street": "place Sadi Carnot",
      "street_number": null,
      "turnover": 187000,
      "user_id": 155,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RANDAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1027956,
      "email": null,
      "id": 22719,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "TUPONE",
      "phone_number": "04-70415565",
      "postal_code": "63310",
      "siren": "403671860",
      "siret": "40367186000019",
      "status": "G",
      "store_name": "Boulangerie Tupone",
      "street": "place des Sports",
      "street_number": 10,
      "turnover": 1030000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PONT DE VAUX",
      "client_creation_date": "2006-11-23",
      "closing_days_ids": [],
      "datlinq_code": 1028282,
      "email": "pas passer mercredi",
      "id": 22753,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MILLOUX",
      "phone_number": "+33 385303433",
      "postal_code": "01190",
      "siren": "492785464",
      "siret": "49278546400016",
      "status": "P",
      "store_name": "Boulangerie Banette Passions Gourmandes",
      "street": "place Legrand",
      "street_number": 17,
      "turnover": 300000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PALLUAU SUR INDRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1028745,
      "email": null,
      "id": 33066,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0109A001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-54384614",
      "postal_code": "36500",
      "siren": "533564746",
      "siret": "53356474600014",
      "status": "M",
      "store_name": "Au Marche d'Agnes",
      "street": "rue Basse",
      "street_number": 20,
      "turnover": 250000,
      "user_id": 52,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROUEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1028781,
      "email": null,
      "id": 22791,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232100079",
      "postal_code": "76000",
      "siren": "418678645",
      "siret": "41867864500023",
      "status": "P",
      "store_name": "Boulangerie Bastien",
      "street": "place de la Pucelle",
      "street_number": 29,
      "turnover": 210000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DOLE",
      "client_creation_date": "2010-05-01",
      "closing_days_ids": [],
      "datlinq_code": 1028992,
      "email": null,
      "id": 22802,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Alexandre",
      "phone_number": "+33 384709726",
      "postal_code": "39100",
      "siren": "523113629",
      "siret": "52311362900019",
      "status": "P",
      "store_name": "Alexandre Boulangerie",
      "street": "rue des Arenes",
      "street_number": 68,
      "turnover": 250000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SEMECOURT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1029338,
      "email": null,
      "id": 2925,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387804036",
      "postal_code": "57280",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "centre Commercial Auchan",
      "street_number": null,
      "turnover": null,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BESANCON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1029585,
      "email": null,
      "id": 2931,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 381885597",
      "postal_code": "25048",
      "siren": "501803076",
      "siret": "50180307600014",
      "status": "P",
      "store_name": "Boulangerie Paul",
      "street": "ZAC de Valentin",
      "street_number": null,
      "turnover": 250000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1029605,
      "email": null,
      "id": 2949,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78928916",
      "postal_code": "69002",
      "siren": "452085632",
      "siret": "45208563200035",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "rue des Remparts d Ainay",
      "street_number": 14,
      "turnover": null,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA VILLE DU BOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1029610,
      "email": null,
      "id": 2954,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-69806889",
      "postal_code": "91620",
      "siren": "450939616",
      "siret": "45093961600014",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "centre Commercial Carrefour",
      "street_number": null,
      "turnover": null,
      "user_id": 86,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIROFLAY",
      "client_creation_date": "1-1-2010",
      "closing_days_ids": [],
      "datlinq_code": 1030078,
      "email": null,
      "id": 22871,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0378B001",
      "location_areas_ids": [],
      "owner_name": "LAISNE",
      "phone_number": "01-30244796",
      "postal_code": "78220",
      "siren": "530338334",
      "siret": "53033833400010",
      "status": "M",
      "store_name": "la Boulangerie D'antoine",
      "street": "avenue du General Leclerc",
      "street_number": 35,
      "turnover": 310000,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TRIGUERES",
      "client_creation_date": "2009-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1030650,
      "email": null,
      "id": 22923,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003293252110",
      "location_areas_ids": [],
      "owner_name": "PINSON",
      "phone_number": "+33 238940497",
      "postal_code": "45220",
      "siren": "453331647",
      "siret": "45333164700025",
      "status": "M",
      "store_name": "Boulangerie Pinson Rodrigue",
      "street": "Grande Rue",
      "street_number": 5,
      "turnover": 213000,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURBEVOIE",
      "client_creation_date": "20-5-2011",
      "closing_days_ids": [],
      "datlinq_code": 1031195,
      "email": null,
      "id": 22963,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MOUSSET MONIQUE",
      "phone_number": "01-43331670",
      "postal_code": "92400",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "Boulangerie Tentation Mousset",
      "street": "rue de Colombes",
      "street_number": 109,
      "turnover": 764200,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHARTRES",
      "client_creation_date": "2007-11-06",
      "closing_days_ids": [],
      "datlinq_code": 1031810,
      "email": null,
      "id": 23018,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "AVERT",
      "phone_number": "+33 237282000",
      "postal_code": "28000",
      "siren": "512980913",
      "siret": "51298091300010",
      "status": "M",
      "store_name": "Cote Drive l'Instant Pain",
      "street": "Avenue d'Orléans",
      "street_number": 46,
      "turnover": 700000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LIGNOL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1031827,
      "email": null,
      "id": 23022,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "56160",
      "siren": "507727303",
      "siret": "50772730300012",
      "status": "P",
      "store_name": "Boulangerie Bara Mod Kozh",
      "street": "place Corentin le Floch",
      "street_number": 9,
      "turnover": 180000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOIS COLOMBES",
      "client_creation_date": "22-5-2007",
      "closing_days_ids": [],
      "datlinq_code": 1032155,
      "email": null,
      "id": 23053,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BEN JEDIANE BECHIR",
      "phone_number": "01-42421227",
      "postal_code": "92270",
      "siren": "497898809",
      "siret": "49789880900015",
      "status": "M",
      "store_name": "Boulangerie aux Delices de la Gare",
      "street": "rue du General Leclerc",
      "street_number": 39,
      "turnover": 570200,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA GARENNE COLOMBES",
      "client_creation_date": "1-1-2010",
      "closing_days_ids": [],
      "datlinq_code": 1033372,
      "email": null,
      "id": 23086,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "David GOUDENHOOFT",
      "phone_number": "01-47822188",
      "postal_code": "92250",
      "siren": "520295999",
      "siret": "52029599900012",
      "status": "P",
      "store_name": "Boulangerie Maison Goudenhooft",
      "street": "place de la Liberte",
      "street_number": 7,
      "turnover": 703000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA VARENNE ST HILAIRE",
      "client_creation_date": "2007",
      "closing_days_ids": [],
      "datlinq_code": 1033442,
      "email": null,
      "id": 3008,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48832501",
      "postal_code": "94210",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Pizza del Piano",
      "street": "boulevard de Champigny",
      "street_number": 81,
      "turnover": 250000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEJUIF",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1033586,
      "email": null,
      "id": 23096,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "94800",
      "siren": "431230853",
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Check et Raouf",
      "street": "boulevard Maxime Gorki",
      "street_number": 175,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RIVEDOUX PLAGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1033816,
      "email": null,
      "id": 23138,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "LEYSSENOT",
      "phone_number": "05-46098250",
      "postal_code": "17940",
      "siren": "521326769",
      "siret": "52132676900028",
      "status": "G",
      "store_name": "Boulangerie Pâtisserie Maison des Pains",
      "street": "rue Edouard Herriot",
      "street_number": 49,
      "turnover": 1209500,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RIBERAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1033857,
      "email": null,
      "id": 23160,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-53900036",
      "postal_code": "24600",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Patisserie Bordelaise",
      "street": "place Nationale",
      "street_number": 6,
      "turnover": null,
      "user_id": 197,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PORTETS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1033869,
      "email": null,
      "id": 23164,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56863120",
      "postal_code": "33640",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie le Comptoir des Pains",
      "street": "route des Graves",
      "street_number": 29,
      "turnover": 715000,
      "user_id": 202,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1034762,
      "email": null,
      "id": 23193,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91894230",
      "postal_code": "13011",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Moulin de Galette",
      "street": "centre Commercial la Valentine",
      "street_number": null,
      "turnover": 10000,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PLAN DE CUQUES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1034797,
      "email": null,
      "id": 3025,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91050722",
      "postal_code": "13380",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Pizza Bea",
      "street": "avenue Paul Sirvent",
      "street_number": null,
      "turnover": null,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE GRAU DU ROI",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1037018,
      "email": null,
      "id": 23263,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466515401",
      "postal_code": "30240",
      "siren": "417710837",
      "siret": "41771083700010",
      "status": "G",
      "store_name": "Boulangerie Banette Le Friand II",
      "street": "place de la Liberation",
      "street_number": null,
      "turnover": 450000,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MULHOUSE",
      "client_creation_date": "1975-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1037020,
      "email": null,
      "id": 23265,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "2143E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-89422045",
      "postal_code": "68200",
      "siren": "305839177",
      "siret": "30583917700014",
      "status": "G",
      "store_name": "Boulangerie Pâtisserie Dirringer",
      "street": "rue Franklin",
      "street_number": 20,
      "turnover": 781000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALLOIRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1038621,
      "email": null,
      "id": 23303,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79590294",
      "postal_code": "73450",
      "siren": "452233539",
      "siret": "45223353900017",
      "status": "P",
      "store_name": "Boulangerie Gros",
      "street": "rue de la Setaz",
      "street_number": null,
      "turnover": 533000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-4-1995",
      "closing_days_ids": [],
      "datlinq_code": 1041339,
      "email": null,
      "id": 23378,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MAXIME",
      "phone_number": "01-42002766",
      "postal_code": "75019",
      "siren": "400573648",
      "siret": "40057364800039",
      "status": "P",
      "store_name": "Boulangerie aux Delices De Maxime",
      "street": "rue Petit",
      "street_number": 70,
      "turnover": 2000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAGNOLS SUR CEZE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1042130,
      "email": "laurence.vivier0837@orange.fr",
      "id": 23399,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007614252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466895661",
      "postal_code": "30200",
      "siren": "380012666",
      "siret": "38001266600018",
      "status": "G",
      "store_name": "Au Fournil de Bagnols (Vivier)",
      "street": "boulevard Theodore Lacombe",
      "street_number": 43,
      "turnover": 350000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TARASCON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1042134,
      "email": null,
      "id": 23403,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-90910117",
      "postal_code": "13150",
      "siren": "501010516",
      "siret": "50101051600018",
      "status": "P",
      "store_name": "Patisserie la Tarasque",
      "street": "rue des Halles",
      "street_number": 56,
      "turnover": 250000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PERONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1042426,
      "email": null,
      "id": 3079,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "80200",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Au Petit Creux",
      "street": "Place du Commandant Louis Daud",
      "street_number": 5,
      "turnover": 223300,
      "user_id": 126,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": "2009-10-31",
      "closing_days_ids": [],
      "datlinq_code": 1042863,
      "email": null,
      "id": 23431,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235462155",
      "postal_code": "76620",
      "siren": "421502352",
      "siret": "42150235200022",
      "status": "P",
      "store_name": "Boulangerie Bardin",
      "street": "rue Romain Rolland",
      "street_number": 7,
      "turnover": 342200,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CALAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1042963,
      "email": null,
      "id": 23502,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011527252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321363700",
      "postal_code": "62100",
      "siren": "523881357",
      "siret": "52388135700017",
      "status": "P",
      "store_name": "Boulangerie Petitprès",
      "street": "boulevard Pasteur",
      "street_number": 11,
      "turnover": 140000,
      "user_id": 422,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROZERIEULLES",
      "client_creation_date": "2008-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1042971,
      "email": null,
      "id": 23510,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011159252110",
      "location_areas_ids": [],
      "owner_name": "Raphaël Morisset",
      "phone_number": "+33 387805227",
      "postal_code": "57160",
      "siren": "501580716",
      "siret": "50158071600014",
      "status": "P",
      "store_name": "Boulangerie Banette Morisset",
      "street": "rue Jean Burger",
      "street_number": 54,
      "turnover": 280000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROTHAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1043618,
      "email": null,
      "id": 23527,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-67074450",
      "postal_code": "67570",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie au Bon Pain",
      "street": "place du General de Gaulle",
      "street_number": 12,
      "turnover": 100000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST LOUIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1043662,
      "email": null,
      "id": 33091,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "80029001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-89678842",
      "postal_code": "68300",
      "siren": "424365534",
      "siret": "42436553400017",
      "status": "P",
      "store_name": "Restaurant Elbistan 68",
      "street": "avenue du General de Gaulle",
      "street_number": 14,
      "turnover": 150000,
      "user_id": 111,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MITTELBRONN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1043699,
      "email": null,
      "id": 23532,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387080396",
      "postal_code": "57370",
      "siren": "451259766",
      "siret": "45125976600025",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Martini",
      "street": "rue Saint Augustin Schoeffler",
      "street_number": 20,
      "turnover": null,
      "user_id": 395,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRANDVILLIERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1043732,
      "email": null,
      "id": 23560,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-44467810",
      "postal_code": "60210",
      "siren": "443167739",
      "siret": "44316773900020",
      "status": "P",
      "store_name": "Boulangerie Banette Guerin Thierry",
      "street": "rue du General Leclerc",
      "street_number": 5,
      "turnover": 240000,
      "user_id": 78,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALRAS PLAGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1044390,
      "email": null,
      "id": 3105,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467983788",
      "postal_code": "34350",
      "siren": "510860240",
      "siret": "51086024000017",
      "status": "P",
      "store_name": "Le Pain Dore",
      "street": "Avenue Des Elysees",
      "street_number": 16,
      "turnover": 115000,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DAX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1045372,
      "email": null,
      "id": 33097,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "03016001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-58740075",
      "postal_code": "40100",
      "siren": "402205819",
      "siret": "40220581900046",
      "status": "P",
      "store_name": "Traiteur La Tourtière",
      "street": "rue Saint Vincent",
      "street_number": 12,
      "turnover": 840000,
      "user_id": 210,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PEYREHORADE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1045680,
      "email": null,
      "id": 37393,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RP467001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-58730078",
      "postal_code": "40300",
      "siren": "325741221",
      "siret": "32574122100015",
      "status": "P",
      "store_name": "Commerce Barthouil",
      "street": "route de Hastingues",
      "street_number": 378,
      "turnover": 100,
      "user_id": 209,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ASCAIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1045702,
      "email": "boulangerie.susperregui@orange.fr",
      "id": 23601,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RP564001",
      "location_areas_ids": [],
      "owner_name": "larronde alain",
      "phone_number": "05-59540045",
      "postal_code": "64310",
      "siren": "499546620",
      "siret": "49954662000018",
      "status": "G",
      "store_name": "Boulangerie Susperregui",
      "street": "rue Ernest Fourneau",
      "street_number": 0,
      "turnover": 747500,
      "user_id": 214,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SANTES",
      "client_creation_date": "2010-09-28",
      "closing_days_ids": [],
      "datlinq_code": 1045923,
      "email": null,
      "id": 23620,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011546252110",
      "location_areas_ids": [],
      "owner_name": "DROQUE",
      "phone_number": "+33 320071089",
      "postal_code": "59211",
      "siren": "525061867",
      "siret": "52506186700012",
      "status": "M",
      "store_name": "Boulangerie Droque",
      "street": "rue Albert Bernard",
      "street_number": 49,
      "turnover": 160000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST OMER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1045937,
      "email": null,
      "id": 23634,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321391141",
      "postal_code": "62500",
      "siren": "491384467",
      "siret": "49138446700016",
      "status": "P",
      "store_name": "Boulangerie de Lyzel",
      "street": "rue Saint Martin",
      "street_number": 50,
      "turnover": 214000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAPPELLE LA GRANDE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1045947,
      "email": null,
      "id": 23644,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328219310",
      "postal_code": "59180",
      "siren": "518677984",
      "siret": "51867798400016",
      "status": "P",
      "store_name": "Boulangerie Geoffrey",
      "street": "rue Anatole France",
      "street_number": 55,
      "turnover": 230000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATELAUDREN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1048927,
      "email": null,
      "id": 33102,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31504001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-96741054",
      "postal_code": "22170",
      "siren": "510266539",
      "siret": "51026653900012",
      "status": "P",
      "store_name": "Boucherie Chez Christophe",
      "street": "place de la Republique",
      "street_number": 37,
      "turnover": 100000,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARCIAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1049413,
      "email": "Verge-borderolle.thierry@orange.fr",
      "id": 23728,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007521252110",
      "location_areas_ids": [],
      "owner_name": "VERGE BORDEROLLE",
      "phone_number": "+33 562093869",
      "postal_code": "32230",
      "siren": "503352098",
      "siret": "50335209800019",
      "status": "G",
      "store_name": "Verge Borderolle Marciac",
      "street": "Rue Henri Laignoux",
      "street_number": 1,
      "turnover": 345809,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST EVARZEC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1051711,
      "email": null,
      "id": 3179,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-98562700",
      "postal_code": "29170",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Le Botticelli",
      "street": "Place De L'eglise",
      "street_number": 1,
      "turnover": null,
      "user_id": 149,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COMPIEGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1052104,
      "email": null,
      "id": 37396,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0621E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "60200",
      "siren": "186008603",
      "siret": null,
      "status": "P",
      "store_name": "Ctre De Formation App",
      "street": "Rue Joseph Cugnot",
      "street_number": 3,
      "turnover": 1000,
      "user_id": 311,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LESCAR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1054055,
      "email": null,
      "id": 3204,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "larquier",
      "phone_number": "05-59622003",
      "postal_code": "64230",
      "siren": "499144392",
      "siret": "49914439200010",
      "status": "M",
      "store_name": "Les Delices de Melody",
      "street": "avenue Marguerite de Navarre",
      "street_number": null,
      "turnover": 350000,
      "user_id": 211,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAMPAGNE EN VALROMEY",
      "client_creation_date": "2011-06-14",
      "closing_days_ids": [],
      "datlinq_code": 1054175,
      "email": null,
      "id": 23806,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MATHIEU CRETIN",
      "phone_number": "+33 479876029",
      "postal_code": "01260",
      "siren": "494981467",
      "siret": "49498146700017",
      "status": "G",
      "store_name": "Boulangerie la Valromeysanne",
      "street": "Grande Rue",
      "street_number": 298,
      "turnover": 493300,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "2011-11-04",
      "closing_days_ids": [],
      "datlinq_code": 1055079,
      "email": "lemoulindelea@gmail.com",
      "id": 386,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0740A001",
      "location_areas_ids": [],
      "owner_name": "Hervé connay-stofft",
      "phone_number": "04-78272433",
      "postal_code": "69004",
      "siren": "533208385",
      "siret": "53320838500021",
      "status": "G",
      "store_name": "Boulangerie le Moulin de Lea (LEHA)",
      "street": "Grande Rue de la Croix Rousse",
      "street_number": 56,
      "turnover": 718135,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [
        1
      ],
      "average_ticket": 3.45,
      "city": "MONTLHERY",
      "client_creation_date": "26-7-2011",
      "closing_days_ids": [
        13,
        14
      ],
      "datlinq_code": 1055693,
      "email": null,
      "id": 23946,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": true,
      "local_id": "K0711001",
      "location_areas_ids": [
        2,
        1
      ],
      "owner_name": "HUSSON ET TESSIER",
      "phone_number": "01-64490337",
      "postal_code": "91310",
      "siren": "533762290",
      "siret": "53376229000013",
      "status": "G",
      "store_name": "Au Fournil de la Tour",
      "street": "place du Marche",
      "street_number": 20,
      "turnover": 800000,
      "user_id": 86,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CALAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1055700,
      "email": null,
      "id": 33125,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011633252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321170546",
      "postal_code": "62100",
      "siren": "533571204",
      "siret": "53357120400015",
      "status": "G",
      "store_name": "Pain et Levain",
      "street": "rue Gutenberg",
      "street_number": 0,
      "turnover": 500000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1055715,
      "email": null,
      "id": 23949,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "HAVART",
      "phone_number": "+33 321316992",
      "postal_code": "62200",
      "siren": "533848750",
      "siret": "53384875000014",
      "status": "P",
      "store_name": "Boulangerie Havart",
      "street": "rue Louis Faidherbe",
      "street_number": 9,
      "turnover": 200000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AMILLY",
      "client_creation_date": "2011-08-05",
      "closing_days_ids": [],
      "datlinq_code": 1056888,
      "email": null,
      "id": 24009,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "LAUGERAY",
      "phone_number": "+33 237329429",
      "postal_code": "28300",
      "siren": "533950051",
      "siret": "53395005100011",
      "status": "P",
      "store_name": "Boulangerie l'Authentique",
      "street": "rue de la Republique",
      "street_number": 4,
      "turnover": 240000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTPELLIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1056916,
      "email": null,
      "id": 24014,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "34070",
      "siren": "533750568",
      "siret": "53375056800016",
      "status": "P",
      "store_name": "Boulangerie Croissant de Lune",
      "street": "rue Eurydice",
      "street_number": 42,
      "turnover": 10000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SERMAISES",
      "client_creation_date": "2011-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1056987,
      "email": null,
      "id": 24018,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "NAU",
      "phone_number": "+33 238397607",
      "postal_code": "45300",
      "siren": "534099619",
      "siret": "53409961900015",
      "status": "M",
      "store_name": "Boulangerie Banette Le Petit Gourmand",
      "street": "rue Guy Renier",
      "street_number": 18,
      "turnover": 175000,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MESNILS SUR ITON",
      "client_creation_date": "1905-07-03",
      "closing_days_ids": [],
      "datlinq_code": 1057016,
      "email": null,
      "id": 24020,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005579252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232345089",
      "postal_code": "27240",
      "siren": "534141767",
      "siret": "53414176700028",
      "status": "M",
      "store_name": "Boulangerie le Fournil des Saveurs",
      "street": "rue de Verdun",
      "street_number": 11,
      "turnover": 289825,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VAUREAL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1057312,
      "email": null,
      "id": 3265,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-34250332",
      "postal_code": "95490",
      "siren": "534137211",
      "siret": "53413721100015",
      "status": "EMPTY_STATUS",
      "store_name": "Alan Pizza",
      "street": "av de la Revolution Francaise",
      "street_number": 2,
      "turnover": null,
      "user_id": 80,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAUBEUGE",
      "client_creation_date": "2000-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1057519,
      "email": null,
      "id": 3271,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011519252110",
      "location_areas_ids": [],
      "owner_name": "AIT SAID AMNI MOHAMED",
      "phone_number": "+33 327399031",
      "postal_code": "59600",
      "siren": "534751102",
      "siret": "53475110200011",
      "status": "G",
      "store_name": "Croissant De Lune",
      "street": "rue de Douzies",
      "street_number": 57,
      "turnover": 900000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CORTE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1058129,
      "email": null,
      "id": 33461,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0407D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-95610470",
      "postal_code": "20250",
      "siren": "313063927",
      "siret": "31306392700013",
      "status": "M",
      "store_name": "Maison de Retraite Ehpad U Serenu",
      "street": "rue Colonel Ferracci",
      "street_number": 5,
      "turnover": 300000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURCELLES SUR SEINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1058139,
      "email": null,
      "id": 3287,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "27940",
      "siren": "534525043",
      "siret": "53452504300012",
      "status": "EMPTY_STATUS",
      "store_name": "Tabac Le Stop",
      "street": "route des Andelys",
      "street_number": 3,
      "turnover": null,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LANDERNEAU",
      "client_creation_date": "2011",
      "closing_days_ids": [],
      "datlinq_code": 1058266,
      "email": "boedechenry@hotmail.fr",
      "id": 24117,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31696001",
      "location_areas_ids": [],
      "owner_name": "Boedec Henry",
      "phone_number": "02-98215918",
      "postal_code": "29800",
      "siren": "534517446",
      "siret": "53451744600017",
      "status": "M",
      "store_name": "Boulangerie Banette Plaisirs Sucrés",
      "street": "rue Chanoine Kerbrat",
      "street_number": 10,
      "turnover": 256000,
      "user_id": 147,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ENGLEFONTAINE",
      "client_creation_date": "2005-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1058498,
      "email": null,
      "id": 24138,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "A6403001",
      "location_areas_ids": [],
      "owner_name": "FIEVET",
      "phone_number": "+33 327416656",
      "postal_code": "59530",
      "siren": "534569496",
      "siret": "53456949600019",
      "status": "G",
      "store_name": "Boulangerie Fievet",
      "street": "Chaussee Brunehaut",
      "street_number": 48,
      "turnover": 600000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": "2013-04-26",
      "closing_days_ids": [],
      "datlinq_code": 1058673,
      "email": null,
      "id": 24154,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016454252110",
      "location_areas_ids": [],
      "owner_name": "DEMORY/DESCAMPS",
      "phone_number": "+33 320921962",
      "postal_code": "59000",
      "siren": "792529596",
      "siret": "79252959600019",
      "status": "G",
      "store_name": "Boulangerie Au P'tit Louis",
      "street": "place de la Solidarite",
      "street_number": 5,
      "turnover": 380000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHERBOURG EN COTENTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1058936,
      "email": "elvire.giot@yahoo.com",
      "id": 24182,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003410252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233531383",
      "postal_code": "50130",
      "siren": "535149397",
      "siret": "53514939700015",
      "status": "P",
      "store_name": "Boulangerie Giot",
      "street": "rue Sadi Carnot",
      "street_number": 134,
      "turnover": 100000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "EVREUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1059607,
      "email": null,
      "id": 24246,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232330191",
      "postal_code": "27000",
      "siren": "449261304",
      "siret": "44926130400025",
      "status": "M",
      "store_name": "Boulangerie Thezo",
      "street": "rue Victor Hugo",
      "street_number": 57,
      "turnover": 634600,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DIVES SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1059618,
      "email": null,
      "id": 24256,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231910511",
      "postal_code": "14160",
      "siren": "509914750",
      "siret": "50991475000021",
      "status": "P",
      "store_name": "Boulangerie la Maison du Pain",
      "street": "rue du General de Gaulle",
      "street_number": 69,
      "turnover": 100000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NOTRE DAME DE GRAVENCHON",
      "client_creation_date": "2001-04-01",
      "closing_days_ids": [],
      "datlinq_code": 1059630,
      "email": null,
      "id": 24267,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010028620252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235382125",
      "postal_code": "76330",
      "siren": "435334701",
      "siret": null,
      "status": "G",
      "store_name": "Boulangerie aux Delices de Gravenchon ( Lerosey)",
      "street": "centre Commercial la Hetraie",
      "street_number": 1,
      "turnover": 945000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 1059788,
      "email": null,
      "id": 24327,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DALHOUMI",
      "phone_number": "000-000",
      "postal_code": "75018",
      "siren": "537712606",
      "siret": "53771260600012",
      "status": "M",
      "store_name": "Boulangerie les Délices de Ramey",
      "street": "rue Ramey",
      "street_number": 28,
      "turnover": 300000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MANTRY",
      "client_creation_date": "2011-10-01",
      "closing_days_ids": [],
      "datlinq_code": 1059822,
      "email": null,
      "id": 24328,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 384257355",
      "postal_code": "39230",
      "siren": "535304836",
      "siret": "53530483600013",
      "status": "P",
      "store_name": "Boulangerie au Plaisir Gourmand",
      "street": "route de Mauffans",
      "street_number": null,
      "turnover": 140000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MATHAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1059938,
      "email": null,
      "id": 24334,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 381353948",
      "postal_code": "25700",
      "siren": "535365860",
      "siret": "53536586000019",
      "status": "P",
      "store_name": "Boulangerie Patisserie Julien",
      "street": "avenue Charles de Gaulle",
      "street_number": 223,
      "turnover": 300000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAINTES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1060028,
      "email": null,
      "id": 3329,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "17100",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Tendance Choc",
      "street": "rue de la Champagne St Georges",
      "street_number": 15,
      "turnover": null,
      "user_id": 152,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NOGENT LE ROTROU",
      "client_creation_date": "2010-10-13",
      "closing_days_ids": [],
      "datlinq_code": 1060086,
      "email": null,
      "id": 24348,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "CARON",
      "phone_number": "+33 237523707",
      "postal_code": "28400",
      "siren": "408509917",
      "siret": "40850991700022",
      "status": "P",
      "store_name": "Boulangerie Caron",
      "street": "rue Saint Hilaire",
      "street_number": 129,
      "turnover": 270000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANNES",
      "client_creation_date": "1979-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1060444,
      "email": null,
      "id": 3334,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Giorgio michelle",
      "phone_number": "04-93480304",
      "postal_code": "06150",
      "siren": "315416230",
      "siret": "31541623000011",
      "status": "P",
      "store_name": "Sandwicherie Kiosque du Marche",
      "street": "avenue Francis Tonner",
      "street_number": 76,
      "turnover": 80000,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRENOBLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1060829,
      "email": null,
      "id": 3344,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76560467",
      "postal_code": "38000",
      "siren": "482925955",
      "siret": "48292595500015",
      "status": "P",
      "store_name": "Sandwicherie Am'Stram Miam",
      "street": "avenue Alsace Lorraine",
      "street_number": 33,
      "turnover": 102000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FOUCARMONT",
      "client_creation_date": "2009-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1061369,
      "email": null,
      "id": 24467,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235937156",
      "postal_code": "76340",
      "siren": "397477555",
      "siret": "39747755500023",
      "status": "P",
      "store_name": "Boulangerie Graindorge",
      "street": "rue des Halles",
      "street_number": 4,
      "turnover": 180000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TALLARD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1061484,
      "email": null,
      "id": 24559,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RLL86001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92240563",
      "postal_code": "05130",
      "siren": "511961237",
      "siret": "51196123700019",
      "status": "G",
      "store_name": "Boulangerie Ludy",
      "street": "lieu dit Le Moulin de Rousine",
      "street_number": null,
      "turnover": 677000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "QUIMPERLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1061591,
      "email": null,
      "id": 24594,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-98960417",
      "postal_code": "29300",
      "siren": "326188257",
      "siret": "32618825700025",
      "status": "P",
      "store_name": "Boulangerie Colleaux Dominique",
      "street": "place Hervo",
      "street_number": 6,
      "turnover": 200000,
      "user_id": 262,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA ROCHE BERNARD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1062050,
      "email": null,
      "id": 3374,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "56130",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Baraque A Biloute Pizzas Aldo",
      "street": "rue de Nantes",
      "street_number": 48,
      "turnover": null,
      "user_id": 262,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTPELLIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1062184,
      "email": null,
      "id": 3379,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467042424",
      "postal_code": "34090",
      "siren": "402799829",
      "siret": "40279982900039",
      "status": "M",
      "store_name": "Fournil de la Fac",
      "street": "rue du Professeur Joseph Anglada",
      "street_number": 1036,
      "turnover": 421900,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST SATURNIN LES AVIGNON",
      "client_creation_date": "17-11-2011",
      "closing_days_ids": [],
      "datlinq_code": 1062518,
      "email": null,
      "id": 24656,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0020B001",
      "location_areas_ids": [],
      "owner_name": "Sébastien Rouet",
      "phone_number": "000-000",
      "postal_code": "84450",
      "siren": "537924870",
      "siret": "53792487000018",
      "status": "P",
      "store_name": "Boulangerie Rouet",
      "street": "avenue de la Liberation",
      "street_number": 8,
      "turnover": 160000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": "2003-07-29",
      "closing_days_ids": [],
      "datlinq_code": 1062738,
      "email": null,
      "id": 24667,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "VAUCAMPS FREDERIC",
      "phone_number": "+33 320548110",
      "postal_code": "59000",
      "siren": "478409352",
      "siret": "47840935200026",
      "status": "G",
      "store_name": "Boulangerie Patrick Hermand",
      "street": "rue Leon Gambetta",
      "street_number": 324,
      "turnover": 1834200,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LEVALLOIS PERRET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1062816,
      "email": null,
      "id": 39975,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "09-64243369",
      "postal_code": "92300",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Daily Monop",
      "street": "place Georges Pompidou",
      "street_number": 18,
      "turnover": null,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ORBEY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063236,
      "email": null,
      "id": 24683,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "2865E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-89271428",
      "postal_code": "68370",
      "siren": "538309162",
      "siret": "53830916200013",
      "status": "P",
      "store_name": "Boulangerie du Petit Beck",
      "street": "rue de l Eglise",
      "street_number": 9,
      "turnover": 206000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PRALOGNAN LA VANOISE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063303,
      "email": null,
      "id": 3402,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "73710",
      "siren": "538592569",
      "siret": "53859256900015",
      "status": "P",
      "store_name": "Snack La Ripaille",
      "street": "avenue de Chasseforet",
      "street_number": null,
      "turnover": 170000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURRIERES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063359,
      "email": null,
      "id": 24690,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007772252110",
      "location_areas_ids": [],
      "owner_name": "Concalves",
      "phone_number": "+33 361485147",
      "postal_code": "62710",
      "siren": "538269689",
      "siret": "53826968900013",
      "status": "G",
      "store_name": "Boulangerie O' Fournil de Tom",
      "street": "rue Arthur Lamendin",
      "street_number": 68,
      "turnover": 250000,
      "user_id": 416,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BROYE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063490,
      "email": null,
      "id": 24697,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BARDET",
      "phone_number": "+33 385861771",
      "postal_code": "71190",
      "siren": "538796418",
      "siret": "53879641800019",
      "status": "P",
      "store_name": "Boulangerie Bardet",
      "street": "rue du Bourg",
      "street_number": null,
      "turnover": 82000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BIGANOS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063565,
      "email": null,
      "id": 24701,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXE32001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56267383",
      "postal_code": "33380",
      "siren": "519737290",
      "siret": "51973729000022",
      "status": "G",
      "store_name": "Boulangerie le Pain Gourmand",
      "street": "avenue de la Liberation",
      "street_number": 51,
      "turnover": 639672,
      "user_id": 206,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RUEIL MALMAISON",
      "client_creation_date": "1-12-2011",
      "closing_days_ids": [],
      "datlinq_code": 1063675,
      "email": null,
      "id": 24707,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0546B001",
      "location_areas_ids": [],
      "owner_name": "Ramzy Khalfet",
      "phone_number": "01-80469641",
      "postal_code": "92500",
      "siren": "538515826",
      "siret": "53851582600013",
      "status": "G",
      "store_name": "Boulangerie Baguette Eclair",
      "street": "route de l Empereur",
      "street_number": 147,
      "turnover": 840000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SOREZE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063741,
      "email": null,
      "id": 24710,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 563741039",
      "postal_code": "81540",
      "siren": "538492745",
      "siret": "53849274500012",
      "status": "G",
      "store_name": "Boulangerie le Croustet",
      "street": "Allees de la Liberation",
      "street_number": 6,
      "turnover": 400000,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WORMHOUT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063913,
      "email": null,
      "id": 24718,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328656034",
      "postal_code": "59470",
      "siren": "534918669",
      "siret": "53491866900019",
      "status": "P",
      "store_name": "Boulangerie Acket",
      "street": "place du General de Gaulle",
      "street_number": 8,
      "turnover": 230000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROGNONAS",
      "client_creation_date": "19-10-2011",
      "closing_days_ids": [],
      "datlinq_code": 1064059,
      "email": null,
      "id": 24721,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "fligeat",
      "phone_number": "04-90948635",
      "postal_code": "13870",
      "siren": "535369235",
      "siret": "53536923500028",
      "status": "P",
      "store_name": "Boulangerie l'Arlésienne",
      "street": "avenue de la Liberation",
      "street_number": 38,
      "turnover": 183000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST SATURNIN LES APT",
      "client_creation_date": "22/11/2010",
      "closing_days_ids": [],
      "datlinq_code": 1064078,
      "email": null,
      "id": 24722,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Chafik",
      "phone_number": "04-90754136",
      "postal_code": "84490",
      "siren": "528516404",
      "siret": "52851640400019",
      "status": "M",
      "store_name": "Boulangerie Chafik",
      "street": "place de la Fraternite",
      "street_number": null,
      "turnover": 268000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AUZAT LA COMBELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1064310,
      "email": null,
      "id": 24725,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0088B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-73961139",
      "postal_code": "63570",
      "siren": "492023981",
      "siret": "49202398100029",
      "status": "M",
      "store_name": "Boulangerie les Sapins",
      "street": "avenue Laurent Delhaye",
      "street_number": 6,
      "turnover": 180000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LERY",
      "client_creation_date": "2012-02-14",
      "closing_days_ids": [],
      "datlinq_code": 1064423,
      "email": null,
      "id": 24730,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Lefrançois",
      "phone_number": "+33 232594497",
      "postal_code": "27690",
      "siren": "538500109",
      "siret": "53850010900011",
      "status": "P",
      "store_name": "Boulangerie Lefrancois",
      "street": "rue du 8 Mai",
      "street_number": 1,
      "turnover": 209000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PEPIEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1064631,
      "email": null,
      "id": 24735,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010032563252110",
      "location_areas_ids": [],
      "owner_name": "Busschots",
      "phone_number": "+33 468493420",
      "postal_code": "11700",
      "siren": "791246473",
      "siret": "79124647300015",
      "status": "P",
      "store_name": "Boulangerie les Pains de Corlet",
      "street": "rue du 11 Novembre 1918",
      "street_number": 2,
      "turnover": 120000,
      "user_id": 440,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOLQUERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1064685,
      "email": null,
      "id": 24736,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013316252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468300133",
      "postal_code": "66210",
      "siren": "531405967",
      "siret": "53140596700013",
      "status": "G",
      "store_name": "Boulangerie de P2",
      "street": "route de la Foret",
      "street_number": null,
      "turnover": 450000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BINAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1064700,
      "email": null,
      "id": 24737,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 254804187",
      "postal_code": "41240",
      "siren": "402307292",
      "siret": "40230729200035",
      "status": "P",
      "store_name": "Boulangerie aux Delices de Binas",
      "street": "rue du 8 Mai 1945",
      "street_number": 12,
      "turnover": 200000,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1064943,
      "email": null,
      "id": 3445,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-44700410",
      "postal_code": "75008",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant Midore",
      "street": "rue de la Pepiniere",
      "street_number": 28,
      "turnover": null,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAGNES SUR MER",
      "client_creation_date": "2010-03-01",
      "closing_days_ids": [],
      "datlinq_code": 1065193,
      "email": null,
      "id": 34434,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "02932001",
      "location_areas_ids": [],
      "owner_name": "NOTO",
      "phone_number": "04-93228833",
      "postal_code": "06800",
      "siren": "512524430",
      "siret": "51252443000018",
      "status": "M",
      "store_name": "Boulangerie le Moulin de Flor",
      "street": "avenue de Nice",
      "street_number": 161,
      "turnover": 300000,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTIGNY LE BRETONNEUX",
      "client_creation_date": "20-12-2011",
      "closing_days_ids": [],
      "datlinq_code": 1065195,
      "email": null,
      "id": 3449,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0007B001",
      "location_areas_ids": [],
      "owner_name": "BOUCHOU",
      "phone_number": "01-30489687",
      "postal_code": "78180",
      "siren": "538622226",
      "siret": "53862222600016",
      "status": "M",
      "store_name": "Boulangerie O Pain du Lac",
      "street": "place de Wicklow",
      "street_number": 13,
      "turnover": 300000,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065232,
      "email": null,
      "id": 24749,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1624F001",
      "location_areas_ids": [],
      "owner_name": "MEYZAUD",
      "phone_number": "01-42648133",
      "postal_code": "75018",
      "siren": "538913872",
      "siret": "53891387200015",
      "status": "G",
      "store_name": "Boulangerie La Bould'ange de Montmartre",
      "street": "rue Damremont",
      "street_number": 42,
      "turnover": 487000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TRAINEL",
      "client_creation_date": "2012-02-11",
      "closing_days_ids": [],
      "datlinq_code": 1065243,
      "email": null,
      "id": 24750,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016365252110",
      "location_areas_ids": [],
      "owner_name": "Gandoin",
      "phone_number": "+33 325391034",
      "postal_code": "10400",
      "siren": "504085796",
      "siret": "53888191300015",
      "status": "M",
      "store_name": "Boulangerie la Viennoise",
      "street": "rue du Jeu de Paume",
      "street_number": null,
      "turnover": 230000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VINGRAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065252,
      "email": null,
      "id": 33157,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005835252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468346330",
      "postal_code": "66600",
      "siren": "538831983",
      "siret": "53883198300019",
      "status": "P",
      "store_name": "Le Fournil de Vingrau",
      "street": "rue Marechal Joffre",
      "street_number": 14,
      "turnover": 140000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065267,
      "email": "idoudi2008@live.fr",
      "id": 24752,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "L0116001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-29513821",
      "postal_code": "75013",
      "siren": "538857533",
      "siret": "53885753300011",
      "status": "P",
      "store_name": "Boulangerie Les Delices de la Place des Alpes",
      "street": "boulevard Vincent Auriol",
      "street_number": 162,
      "turnover": 336055,
      "user_id": 91,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANGERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065270,
      "email": null,
      "id": 3451,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241779296",
      "postal_code": "49100",
      "siren": "538624073",
      "siret": "53862407300010",
      "status": "P",
      "store_name": "Sandwicherie Lili Gourmande",
      "street": "rue Saint Denis",
      "street_number": 2,
      "turnover": 150000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA LONDE LES MAURES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065271,
      "email": null,
      "id": 3452,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "De bono",
      "phone_number": "000-000",
      "postal_code": "83250",
      "siren": "538592791",
      "siret": "53859279100015",
      "status": "P",
      "store_name": "Boulangerie O Four et O Moulin",
      "street": "avenue de la Baie des Iles",
      "street_number": null,
      "turnover": 94000,
      "user_id": 188,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CACHAN",
      "client_creation_date": "1-1-2008",
      "closing_days_ids": [],
      "datlinq_code": 1065288,
      "email": null,
      "id": 24754,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "K1201001",
      "location_areas_ids": [],
      "owner_name": "AIT MOULOUD",
      "phone_number": "0663273947",
      "postal_code": "94230",
      "siren": "538713587",
      "siret": "53871358700011",
      "status": "P",
      "store_name": "Boulangerie Ô Pain Chic",
      "street": "rue Francois Villon",
      "street_number": 10,
      "turnover": 150000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JUNAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065343,
      "email": null,
      "id": 24757,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466809189",
      "postal_code": "30250",
      "siren": "494658024",
      "siret": "49465802400026",
      "status": "P",
      "store_name": "Boulangerie au Moulin à Pains",
      "street": "place de l Avenir",
      "street_number": 1,
      "turnover": 160000,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROUEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065537,
      "email": null,
      "id": 3462,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235718733",
      "postal_code": "76000",
      "siren": "524938768",
      "siret": "52493876800057",
      "status": "P",
      "store_name": "Boulangerie Paul",
      "street": "rue Ganterie",
      "street_number": 2,
      "turnover": 200000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LESQUIN",
      "client_creation_date": "2007-09-04",
      "closing_days_ids": [],
      "datlinq_code": 1065671,
      "email": null,
      "id": 24763,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011850252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320503336",
      "postal_code": "59810",
      "siren": "412794463",
      "siret": "41279446300023",
      "status": "G",
      "store_name": "Boulangerie Au Fournil",
      "street": "rue Jean Jaures",
      "street_number": 35,
      "turnover": 430000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PEZENAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065681,
      "email": null,
      "id": 24764,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010004574252110",
      "location_areas_ids": [],
      "owner_name": "MAILLLET",
      "phone_number": "+33 467983770",
      "postal_code": "34120",
      "siren": "513039727",
      "siret": "51303972700013",
      "status": "P",
      "store_name": "Boulangerie Maillet",
      "street": "cours Jean Jaures",
      "street_number": 6,
      "turnover": 227100,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHARTRES",
      "client_creation_date": "2011-02-10",
      "closing_days_ids": [],
      "datlinq_code": 1065764,
      "email": null,
      "id": 24768,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "VIRON",
      "phone_number": "+33 237211630",
      "postal_code": "28000",
      "siren": "530240217",
      "siret": "53024021700014",
      "status": "P",
      "store_name": "Boulangerie Faubourg",
      "street": "rue du Grand Faubourg",
      "street_number": 17,
      "turnover": 737200,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": "2011-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1065964,
      "email": "celine.piek@orange.fr",
      "id": 24774,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007801252110",
      "location_areas_ids": [],
      "owner_name": "BREBANT",
      "phone_number": "+33 235212958",
      "postal_code": "76600",
      "siren": "491832465",
      "siret": "49183246500026",
      "status": "P",
      "store_name": "Boulangerie le Fournil St Roch",
      "street": "rue Georges Braque",
      "street_number": 21,
      "turnover": 210000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAUSSET LES PINS",
      "client_creation_date": "1-1-2013",
      "closing_days_ids": [],
      "datlinq_code": 1065985,
      "email": "lafourneesaussetoise@free.fr",
      "id": 24775,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0500A001",
      "location_areas_ids": [],
      "owner_name": "PARPEIX Philippe",
      "phone_number": "04-42066952",
      "postal_code": "13960",
      "siren": "533652491",
      "siret": "53365249100010",
      "status": "G",
      "store_name": "Boulangerie La Fournée Saussetoise",
      "street": "avenue de la Cote Bleue",
      "street_number": 34,
      "turnover": 800000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NIMES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065986,
      "email": null,
      "id": 3470,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466382367",
      "postal_code": "30000",
      "siren": "799291612",
      "siret": "79929161200015",
      "status": "EMPTY_STATUS",
      "store_name": "Fournil Saint Nicolas",
      "street": "rue de Beaucaire",
      "street_number": 68,
      "turnover": null,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURNAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066068,
      "email": null,
      "id": 37405,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0869E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "65190",
      "siren": "519240345",
      "siret": "51924034500016",
      "status": "EMPTY_STATUS",
      "store_name": "Pâtisserie Le Café Croissant",
      "street": "place d Astarac",
      "street_number": 11,
      "turnover": null,
      "user_id": 208,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AURIOL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066192,
      "email": null,
      "id": 3474,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-42701028",
      "postal_code": "13390",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Label Pizza",
      "street": "cours de Verdun",
      "street_number": 5,
      "turnover": null,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAROQUE D OLMES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066255,
      "email": null,
      "id": 24783,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "09600",
      "siren": "538890104",
      "siret": "53889010400028",
      "status": "P",
      "store_name": "Boulangerie Riviere d'Olmes",
      "street": "centre Commercial le Castillane",
      "street_number": null,
      "turnover": 245000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "L ISLE D ABEAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066284,
      "email": null,
      "id": 24786,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "JEROME DOVILLEZ",
      "phone_number": "000-000",
      "postal_code": "38080",
      "siren": "538891508",
      "siret": "53889150800011",
      "status": "M",
      "store_name": "Boulangerie Mjd Tradition",
      "street": "place Gabriel Peri",
      "street_number": null,
      "turnover": 236000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANCY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066301,
      "email": null,
      "id": 24787,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0049F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "54000",
      "siren": "538927500",
      "siret": "53892750000016",
      "status": "P",
      "store_name": "Boulangerie Sauvage",
      "street": "rue du Marechal Oudinot",
      "street_number": 50,
      "turnover": 170000,
      "user_id": 106,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066311,
      "email": null,
      "id": 24788,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231502983",
      "postal_code": "14000",
      "siren": "538794025",
      "siret": "53879402500014",
      "status": "P",
      "store_name": "Boulangerie le Trady",
      "street": "rue Caponiere",
      "street_number": 28,
      "turnover": 151800,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE MANS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066339,
      "email": null,
      "id": 24789,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243841664",
      "postal_code": "72000",
      "siren": "538938044",
      "siret": "53893804400012",
      "status": "P",
      "store_name": "Boulangerie Aux Douceurs de Washington",
      "street": "rue Nationale",
      "street_number": 196,
      "turnover": 160000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GEORGES D OLERON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066350,
      "email": null,
      "id": 24791,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-17254520",
      "postal_code": "17190",
      "siren": "538751520",
      "siret": "53875152000015",
      "status": "P",
      "store_name": "Boulangerie des Lys",
      "street": "rue de la Couture",
      "street_number": 15,
      "turnover": 150000,
      "user_id": 155,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "REIMS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066351,
      "email": null,
      "id": 3484,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326058102",
      "postal_code": "51100",
      "siren": "538685827",
      "siret": "53868582700015",
      "status": "P",
      "store_name": "Sanwicherie les Gourmandises de Gauthier",
      "street": "rue de l Etape",
      "street_number": 24,
      "turnover": 80000,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BLENDECQUES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066367,
      "email": null,
      "id": 24792,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010032696252110",
      "location_areas_ids": [],
      "owner_name": "DEWAELE",
      "phone_number": "000-000",
      "postal_code": "62575",
      "siren": "538819053",
      "siret": "53881905300017",
      "status": "P",
      "store_name": "Boulangerie Dewaele",
      "street": "rue Jean Baptiste Lebas",
      "street_number": 21,
      "turnover": 130000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANET EN ROUSSILLON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066418,
      "email": null,
      "id": 3487,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010000063252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 963647565",
      "postal_code": "66140",
      "siren": "538866112",
      "siret": "53886611200013",
      "status": "P",
      "store_name": "Migan",
      "street": "avenue de Saint Nazaire",
      "street_number": 5,
      "turnover": 168707,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STE SIGOLENE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066444,
      "email": null,
      "id": 24794,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "43600",
      "siren": "539096875",
      "siret": "53909687500015",
      "status": "P",
      "store_name": "Boulangerie Les Douceurs du Fournil",
      "street": "rue de la Victoire",
      "street_number": 9,
      "turnover": 175000,
      "user_id": 54,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLENAVE D ORNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066598,
      "email": null,
      "id": 3491,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "33140",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Louka Pizza",
      "street": "route de Toulouse",
      "street_number": 571,
      "turnover": null,
      "user_id": 202,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARGENTON SUR CREUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066612,
      "email": null,
      "id": 24797,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-54475791",
      "postal_code": "36200",
      "siren": "495395196",
      "siret": "49539519600027",
      "status": "P",
      "store_name": "Boulangerie Merlin",
      "street": "rue Grande",
      "street_number": 26,
      "turnover": 286700,
      "user_id": 52,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "2007",
      "closing_days_ids": [],
      "datlinq_code": 1066618,
      "email": null,
      "id": 3492,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "09-86327509",
      "postal_code": "69009",
      "siren": "803185578",
      "siret": "80318557800017",
      "status": "P",
      "store_name": "Snack le Pause Midi",
      "street": "rue Louis Loucheur",
      "street_number": 8,
      "turnover": 390000,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NEUVILLE DE POITOU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066782,
      "email": null,
      "id": 24802,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "RENAUD",
      "phone_number": "05-49513403",
      "postal_code": "86170",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Renaud",
      "street": "route de Clan",
      "street_number": 77,
      "turnover": 200000,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GERZAT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066863,
      "email": null,
      "id": 24805,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ANTONIO",
      "phone_number": "04-73256759",
      "postal_code": "63360",
      "siren": "508161130",
      "siret": "50816113000010",
      "status": "M",
      "store_name": "Boulangerie Antonio",
      "street": "rue des Martyrs",
      "street_number": 3,
      "turnover": 480000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GALAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067091,
      "email": null,
      "id": 24809,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RP889001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-81509106",
      "postal_code": "65330",
      "siren": "411745052",
      "siret": "41174505200034",
      "status": "P",
      "store_name": "Boulangerie La Chocolatine",
      "street": "place de la Bastide",
      "street_number": 10,
      "turnover": 130000,
      "user_id": 208,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067117,
      "email": null,
      "id": 3506,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561002001",
      "postal_code": "31000",
      "siren": "532007135",
      "siret": "53200713500025",
      "status": "P",
      "store_name": "Pizza Cap",
      "street": "rue du Languedoc",
      "street_number": 26,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067126,
      "email": null,
      "id": 50511,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561124821",
      "postal_code": "31000",
      "siren": "527567200",
      "siret": "52756720000011",
      "status": "EMPTY_STATUS",
      "store_name": "Columbus Café & Co",
      "street": "rue du Taur",
      "street_number": 10,
      "turnover": null,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MEUDON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067220,
      "email": null,
      "id": 24820,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0823G001",
      "location_areas_ids": [],
      "owner_name": "Mr aubid ",
      "phone_number": "01-41285869",
      "postal_code": "92360",
      "siren": "538949983",
      "siret": "53894998300018",
      "status": "P",
      "store_name": "Boulangerie Casa Four",
      "street": "allee Marcel Simon",
      "street_number": 26,
      "turnover": 300000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067330,
      "email": null,
      "id": 3512,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013305252110",
      "location_areas_ids": [],
      "owner_name": "IZARN NADINE",
      "phone_number": "+33 562895610",
      "postal_code": "31000",
      "siren": "448836163",
      "siret": "44883616300023",
      "status": "P",
      "store_name": "Sandwicherie l'Epicurien",
      "street": "rue de Metz",
      "street_number": 47,
      "turnover": 175849,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CLAR DE RIVIERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067331,
      "email": null,
      "id": 24824,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "L5705001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 562238714",
      "postal_code": "31600",
      "siren": "533680559",
      "siret": "53368055900010",
      "status": "P",
      "store_name": "Boulangerie Le Pain Gourmand",
      "street": "Grand Place",
      "street_number": 38,
      "turnover": 180000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALBI",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067332,
      "email": null,
      "id": 24825,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "RIMBAUX NICOLAS",
      "phone_number": "+33 563542729",
      "postal_code": "81000",
      "siren": "532875812",
      "siret": "53287581200010",
      "status": "P",
      "store_name": "Boulangerie Banette Rimbaux Boisloret",
      "street": "avenue Colonel Teyssier",
      "street_number": 123,
      "turnover": 114481,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067333,
      "email": null,
      "id": 24826,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "NEDJARI ABDELKADER",
      "phone_number": "+33 567687799",
      "postal_code": "31400",
      "siren": "439526153",
      "siret": "43952615300028",
      "status": "P",
      "store_name": "Boulangerie le Palais Gourmand",
      "street": "avenue Antoine de Saint Exupery",
      "street_number": 32,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALBIAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067433,
      "email": null,
      "id": 24833,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 965321119",
      "postal_code": "82350",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Castel Jean",
      "street": "place de la Liberation",
      "street_number": null,
      "turnover": 350000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LHERM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067437,
      "email": null,
      "id": 24836,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561561574",
      "postal_code": "31600",
      "siren": "522996388",
      "siret": "52299638800024",
      "status": "P",
      "store_name": "Boulangerie O Croustet du Lherm",
      "street": "place de l Eglise",
      "street_number": 33,
      "turnover": 150000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VITRY SUR SEINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067494,
      "email": null,
      "id": 24839,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47180429",
      "postal_code": "94400",
      "siren": "501431647",
      "siret": "50143164700012",
      "status": "EMPTY_STATUS",
      "store_name": "Elhadi Boulangerie",
      "street": "avenue Rouget de Lisle",
      "street_number": 139,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VENISSIEUX",
      "client_creation_date": "2012",
      "closing_days_ids": [],
      "datlinq_code": 1067529,
      "email": null,
      "id": 404,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0675B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78701024",
      "postal_code": "69200",
      "siren": "538950825",
      "siret": "53895082500017",
      "status": "P",
      "store_name": "Boulangerie la Huche aux Pains",
      "street": "rue Paul Bert",
      "street_number": 14,
      "turnover": 184700,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CHAPTES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067538,
      "email": null,
      "id": 24843,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010027720252110",
      "location_areas_ids": [],
      "owner_name": "ALMARIC",
      "phone_number": "+33 466812438",
      "postal_code": "30190",
      "siren": "530092980",
      "siret": "53009298000016",
      "status": "P",
      "store_name": "Boulangerie les Gourmandises de Saint Chaptes",
      "street": "avenue Raoul Vezol",
      "street_number": 17,
      "turnover": 320000,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RODEZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067539,
      "email": null,
      "id": 24844,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010032487252110",
      "location_areas_ids": [],
      "owner_name": "ANGLADE GHISLAIN",
      "phone_number": "+33 982582328",
      "postal_code": "12000",
      "siren": "539030106",
      "siret": "53903010600014",
      "status": "G",
      "store_name": "Boulangerie au Four Gourmand",
      "street": "avenue de Toulouse",
      "street_number": 66,
      "turnover": 450000,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DESVRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067542,
      "email": null,
      "id": 24847,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016794252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321915363",
      "postal_code": "62240",
      "siren": "478211196",
      "siret": "47821119600025",
      "status": "G",
      "store_name": "Boulangerie Carpentier",
      "street": "place Leon Blum",
      "street_number": 32,
      "turnover": 306000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PERPIGNAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067546,
      "email": null,
      "id": 24850,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468544921",
      "postal_code": "66000",
      "siren": "535284889",
      "siret": "53528488900016",
      "status": "P",
      "store_name": "Boulangerie Les Gourmands Disent...",
      "street": "rue Pascal Marie Agasse",
      "street_number": 79,
      "turnover": 150000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE SUR GESSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067549,
      "email": null,
      "id": 24853,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561886141",
      "postal_code": "31350",
      "siren": "522055284",
      "siret": "52205528400023",
      "status": "G",
      "store_name": "Boulangerie le Coin des Gourmets",
      "street": "rue Porte de Dessus",
      "street_number": null,
      "turnover": 460000,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WITRY LES REIMS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067555,
      "email": null,
      "id": 24857,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326970337",
      "postal_code": "51420",
      "siren": "429494529",
      "siret": "42949452900036",
      "status": "M",
      "store_name": "Boulangerie Marest",
      "street": "rue de la Paix",
      "street_number": 8,
      "turnover": 339308,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RASTEAU",
      "client_creation_date": "13-11-2009",
      "closing_days_ids": [],
      "datlinq_code": 1067566,
      "email": null,
      "id": 24864,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "begani",
      "phone_number": "04-90622884",
      "postal_code": "84110",
      "siren": "517943239",
      "siret": "51794323900023",
      "status": "P",
      "store_name": "Boulangerie au Fournil dee Sabine",
      "street": "rue du Vieux Moulin",
      "street_number": 1,
      "turnover": 218000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONT PRES CHAMBORD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067567,
      "email": null,
      "id": 24865,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 254707232",
      "postal_code": "41250",
      "siren": "488625401",
      "siret": "48862540100028",
      "status": "P",
      "store_name": "Boulangerie la Chabardiere",
      "street": "rue de la Chabardiere",
      "street_number": 33,
      "turnover": 230000,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST AUNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067574,
      "email": null,
      "id": 24867,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010006967252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467708256",
      "postal_code": "34130",
      "siren": "524480365",
      "siret": "52448036500013",
      "status": "M",
      "store_name": "Boulangerie Js Delices et Traditions",
      "street": "avenue des Costieres",
      "street_number": 475,
      "turnover": 180000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BLOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067575,
      "email": "f.durasnel@gmail.com",
      "id": 24868,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003797252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 254780922",
      "postal_code": "41000",
      "siren": "538122029",
      "siret": "53812202900019",
      "status": "G",
      "store_name": "Boulangerie Durasnel",
      "street": "rue Porte Chartraine",
      "street_number": 53,
      "turnover": 300000,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PUYLOUBIER",
      "client_creation_date": "21-8-2008",
      "closing_days_ids": [],
      "datlinq_code": 1067577,
      "email": null,
      "id": 24870,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-42663786",
      "postal_code": "13114",
      "siren": "507612356",
      "siret": "50761235600018",
      "status": "P",
      "store_name": "Boulangerie Feb la Gourmandine",
      "street": "avenue Francis Meano",
      "street_number": 6,
      "turnover": 90500,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE BOUPERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067580,
      "email": null,
      "id": 24872,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1339D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-51914173",
      "postal_code": "85510",
      "siren": "533741286",
      "siret": "53374128600017",
      "status": "M",
      "store_name": "Boulangerie l'Atelier des Délices",
      "street": "rue General de Gaulle",
      "street_number": 13,
      "turnover": 210000,
      "user_id": 153,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GOURNAY EN BRAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067584,
      "email": null,
      "id": 24874,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "76620",
      "siren": "534419098",
      "siret": "53441909800015",
      "status": "P",
      "store_name": "Boulangerie Lemitre Mickael",
      "street": "avenue de la 1ere Armee",
      "street_number": 28,
      "turnover": 180000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GARGAS",
      "client_creation_date": "1-7-2007",
      "closing_days_ids": [],
      "datlinq_code": 1067592,
      "email": null,
      "id": 24879,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0631F001",
      "location_areas_ids": [],
      "owner_name": "Ballere Mathieu",
      "phone_number": "04-90745491",
      "postal_code": "84400",
      "siren": "498777663",
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Les Gourmandises de Fontaine",
      "street": "quartier la Grande Fontaine",
      "street_number": null,
      "turnover": 174000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALENSOLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067593,
      "email": null,
      "id": 24880,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Gauthier",
      "phone_number": "04-92748101",
      "postal_code": "04210",
      "siren": "491201174",
      "siret": "49120117400019",
      "status": "P",
      "store_name": "Boulangerie Le Palais D'Or",
      "street": "place de la Fontaine",
      "street_number": null,
      "turnover": 283000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTCEAU LES MINES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067600,
      "email": null,
      "id": 24885,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010025790252110",
      "location_areas_ids": [],
      "owner_name": "PEGUESSE",
      "phone_number": "+33 385581877",
      "postal_code": "71300",
      "siren": "539027433",
      "siret": "53902743300017",
      "status": "M",
      "store_name": "Boulangerie Peguesse",
      "street": "rue de la Coudraie",
      "street_number": 58,
      "turnover": 200000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TREDANIEL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067604,
      "email": null,
      "id": 24889,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-96735350",
      "postal_code": "22510",
      "siren": "510945900",
      "siret": "51094590000015",
      "status": "P",
      "store_name": "Boulangerie Versabeau",
      "street": "Centre Commercial l Enseigne",
      "street_number": null,
      "turnover": 200000,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLE DI PIETRABUGNO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067633,
      "email": null,
      "id": 3520,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-95331603",
      "postal_code": "20200",
      "siren": "525255592",
      "siret": "52525559200012",
      "status": "P",
      "store_name": "Pizza Pietrabugno",
      "street": "hameau Guaitella",
      "street_number": 67,
      "turnover": 10000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIRANDEVILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067688,
      "email": null,
      "id": 3521,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 670935354",
      "postal_code": "50690",
      "siren": "530743467",
      "siret": "53074346700017",
      "status": "EMPTY_STATUS",
      "store_name": "Seb Pizza",
      "street": "le Moulin",
      "street_number": 3,
      "turnover": null,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GAVRAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067694,
      "email": null,
      "id": 24902,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233614079",
      "postal_code": "50450",
      "siren": "348982638",
      "siret": "34898263800036",
      "status": "G",
      "store_name": "Boulangerie Huze",
      "street": "rue de la Liberation",
      "street_number": 27,
      "turnover": 310000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTSECRET CLAIREFOUGERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067715,
      "email": null,
      "id": 24903,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233667095",
      "postal_code": "61800",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "Boulangerie aux Epis de Bles",
      "street": "Grande Rue",
      "street_number": 23,
      "turnover": 275000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SARTROUVILLE",
      "client_creation_date": "1-1-2012",
      "closing_days_ids": [],
      "datlinq_code": 1067832,
      "email": null,
      "id": 24905,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R8685001",
      "location_areas_ids": [],
      "owner_name": "BOUALI",
      "phone_number": "000-000",
      "postal_code": "78500",
      "siren": "505124560",
      "siret": "50512456000010",
      "status": "P",
      "store_name": "Boulangerie Patisserie du Plateau",
      "street": "boulevard Henri Barbusse",
      "street_number": 153,
      "turnover": 240000,
      "user_id": 96,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTERRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067846,
      "email": null,
      "id": 3522,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47252525",
      "postal_code": "92000",
      "siren": "519113005",
      "siret": "51911300500010",
      "status": "P",
      "store_name": "Cesar Pizza",
      "street": "avenue Georges Clemenceau",
      "street_number": 14,
      "turnover": 210000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DAMPIERRE SUR SALON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067854,
      "email": null,
      "id": 24908,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010549252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 384671041",
      "postal_code": "70180",
      "siren": "527634687",
      "siret": "52763468700026",
      "status": "M",
      "store_name": "Boulangerie Goiset",
      "street": "rue Sainte Catherine",
      "street_number": 15,
      "turnover": 220000,
      "user_id": 411,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAINT-QUENTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067864,
      "email": "atout-pains@orange.fr",
      "id": 24909,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 323641056",
      "postal_code": "02100",
      "siren": "529488520",
      "siret": "52948852000022",
      "status": "G",
      "store_name": "Boulangerie Atouts Pains",
      "street": "Rue de la Chaussée Romaine",
      "street_number": 4,
      "turnover": 808000,
      "user_id": 397,
      "working_days_amount": null
    }
  ],
  "meta": {
    "limit_value": 1000,
    "total_pages": 25,
    "update_date": "2019-06-11T13:26:28.106Z"
  }
}

Validation #635

Failure

The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:

  • The property '#/customers/880/average_ticket' of type number did not match one or more of the required schemas. The schema specific errors were: - anyOf #0: - The property '#/customers/880/average_ticket' of type number did not match the following type: string - anyOf #1: - The property '#/customers/880/average_ticket' of type number did not match the following type: null

JSON Schema

{
  "additionalProperties": false,
  "description": "Automatically generated (please edit me)",
  "properties": {
    "customers": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "attractivity_poles_ids": {
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "average_ticket": {
            "anyOf": [
              {
                "pattern": "(^[+-]?(?:0|[1-9]\\d*)(?:\\.(?:\\d*[1-9]|0))?)$",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "city": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "client_creation_date": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "closing_days_ids": {
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "datlinq_code": {
            "type": "integer"
          },
          "email": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "id": {
            "type": "integer"
          },
          "is_deleted": {
            "description": "Customer deleted status in database (true if customer does not appear in the last csv synchronisation)",
            "type": "boolean"
          },
          "is_prospect": {
            "anyOf": [
              {
                "description": "Customer prospect status (true if customer does not have client_gmp = true is csv synchronisation)",
                "type": "boolean"
              },
              {
                "type": "null"
              }
            ]
          },
          "is_restaurant_place": {
            "anyOf": [
              {
                "type": "boolean"
              },
              {
                "type": "null"
              }
            ]
          },
          "local_id": {
            "anyOf": [
              {
                "description": "Customer local id (if customer has a local id, that means he is not a prospect anymore)",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "location_areas_ids": {
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "owner_name": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "phone_number": {
            "anyOf": [
              {
                "format": "datetime",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "postal_code": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "siren": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "siret": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "status": {
            "anyOf": [
              {
                "enum": [
                  "EMPTY_STATUS",
                  "P",
                  "M",
                  "G"
                ],
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "store_name": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "street": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "street_number": {
            "anyOf": [
              {
                "type": "integer"
              },
              {
                "type": "null"
              }
            ]
          },
          "turnover": {
            "anyOf": [
              {
                "type": "integer"
              },
              {
                "type": "null"
              }
            ]
          },
          "user_id": {
            "type": "integer"
          },
          "working_days_amount": {
            "anyOf": [
              {
                "type": "integer"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "required": [
          "attractivity_poles_ids",
          "average_ticket",
          "city",
          "client_creation_date",
          "closing_days_ids",
          "datlinq_code",
          "email",
          "id",
          "is_deleted",
          "is_prospect",
          "is_restaurant_place",
          "local_id",
          "location_areas_ids",
          "owner_name",
          "phone_number",
          "postal_code",
          "siren",
          "siret",
          "status",
          "store_name",
          "street",
          "street_number",
          "turnover",
          "user_id",
          "working_days_amount"
        ],
        "type": "object"
      },
      "type": "array"
    },
    "meta": {
      "properties": {
        "limit_value": {
          "type": "integer"
        },
        "total_pages": {
          "type": "integer"
        },
        "update_date": {
          "format": "datetime",
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "required": [
    "customers"
  ],
  "title": "Customer - ShortCustomer",
  "type": "object"
}

JSON instance

{
  "customers": [
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST DENIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890291,
      "email": null,
      "id": 1763,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48091255",
      "postal_code": "93200",
      "siren": "403052111",
      "siret": "40305211100164",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "rue Jean Jaures",
      "street_number": 3,
      "turnover": null,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST OUEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890300,
      "email": null,
      "id": 15213,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-40110527",
      "postal_code": "93400",
      "siren": "330344177",
      "siret": "33034417700051",
      "status": "M",
      "store_name": "Boulangerie Debure",
      "street": "place de la Republique",
      "street_number": 2,
      "turnover": 330000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOBIGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890303,
      "email": null,
      "id": 15215,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "Z0094001",
      "location_areas_ids": [],
      "owner_name": "KLAI ELLAFI MOUNIRA",
      "phone_number": "01-48321579",
      "postal_code": "93000",
      "siren": "413364365",
      "siret": "41336436500010",
      "status": "G",
      "store_name": "Boulangerie Ellafi Mounira",
      "street": "cite Jean Gremillon",
      "street_number": 8,
      "turnover": 300496,
      "user_id": 74,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GAGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890316,
      "email": null,
      "id": 15225,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "TROUFFLARD PASCAL, MICHEL",
      "phone_number": "01-43810902",
      "postal_code": "93220",
      "siren": "789814332",
      "siret": "78981433200019",
      "status": "P",
      "store_name": "Boulangerie le Fournil de la Gare",
      "street": "avenue Jean Jaures",
      "street_number": 71,
      "turnover": 220000,
      "user_id": 74,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA COURNEUVE",
      "client_creation_date": "1-1-1991",
      "closing_days_ids": [],
      "datlinq_code": 890345,
      "email": null,
      "id": 15243,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R2593001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-49370777",
      "postal_code": "93120",
      "siren": "380537829",
      "siret": "38053782900018",
      "status": "G",
      "store_name": "Boulangerie Sep",
      "street": "boulevard Pasteur",
      "street_number": 40,
      "turnover": 790000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAMPIGNY SUR MARNE",
      "client_creation_date": "1990",
      "closing_days_ids": [],
      "datlinq_code": 890355,
      "email": null,
      "id": 15250,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1500C001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48800712",
      "postal_code": "94500",
      "siren": "793765173",
      "siret": "79376517300018",
      "status": "G",
      "store_name": "Boulangerie Araujo",
      "street": "rue Moliere",
      "street_number": 29,
      "turnover": 850000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FONTENAY SOUS BOIS",
      "client_creation_date": "2011",
      "closing_days_ids": [],
      "datlinq_code": 890364,
      "email": null,
      "id": 15258,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R6186001",
      "location_areas_ids": [],
      "owner_name": "Marteau",
      "phone_number": "01-48738111",
      "postal_code": "94120",
      "siren": "479144479",
      "siret": "47914447900017",
      "status": "G",
      "store_name": "Boulangerie Au Petit Duc",
      "street": "avenue du Val de Fontenay",
      "street_number": 9,
      "turnover": 720000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAISONS ALFORT",
      "client_creation_date": "2-3-2012",
      "closing_days_ids": [],
      "datlinq_code": 890366,
      "email": null,
      "id": 15260,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Bernard tournier",
      "phone_number": "000-000",
      "postal_code": "94700",
      "siren": "511755597",
      "siret": "51175559700024",
      "status": "M",
      "store_name": "Boulangerie aux Delices de Maisons Alfort",
      "street": "avenue de la Republique",
      "street_number": 17,
      "turnover": 458000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEJUIF",
      "client_creation_date": "1-1-2004",
      "closing_days_ids": [],
      "datlinq_code": 890368,
      "email": null,
      "id": 15262,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R7763001",
      "location_areas_ids": [],
      "owner_name": "BEN ARFA",
      "phone_number": "01-46784762",
      "postal_code": "94800",
      "siren": "480830025",
      "siret": "48083002500015",
      "status": "M",
      "store_name": "Boulangerie Ben Arfa",
      "street": "place Paul Eluard",
      "street_number": 13,
      "turnover": 200000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VINCENNES",
      "client_creation_date": "2012",
      "closing_days_ids": [],
      "datlinq_code": 890369,
      "email": null,
      "id": 15263,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "N0929001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43288847",
      "postal_code": "94300",
      "siren": "491688966",
      "siret": "49168896600010",
      "status": "G",
      "store_name": "Boulangerie Benedicte et Ludovic Petit",
      "street": "rue Clement Vienot",
      "street_number": 4,
      "turnover": 650000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALFORTVILLE",
      "client_creation_date": "1990",
      "closing_days_ids": [],
      "datlinq_code": 890370,
      "email": null,
      "id": 15264,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0676G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-20960496",
      "postal_code": "94140",
      "siren": "399526045",
      "siret": "39952604500014",
      "status": "M",
      "store_name": "Boulangerie Biscuit d'Or",
      "street": "quai Jean Baptiste Clement",
      "street_number": 32,
      "turnover": 327000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "IVRY SUR SEINE",
      "client_creation_date": "1-1-2003",
      "closing_days_ids": [],
      "datlinq_code": 890373,
      "email": null,
      "id": 15267,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R2747001",
      "location_areas_ids": [],
      "owner_name": "BOUKCHIM",
      "phone_number": "07-69065355",
      "postal_code": "94200",
      "siren": "440934446",
      "siret": "44093444600012",
      "status": "M",
      "store_name": "Boulangerie Boukhchim",
      "street": "rue Gabriel Peri",
      "street_number": 90,
      "turnover": 300000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA QUEUE EN BRIE",
      "client_creation_date": "2004",
      "closing_days_ids": [],
      "datlinq_code": 890377,
      "email": null,
      "id": 15271,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "10667001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45767705",
      "postal_code": "94510",
      "siren": "478587959",
      "siret": "47858795900014",
      "status": "G",
      "store_name": "Boulangerie Guerin",
      "street": "rue Jean Jaures",
      "street_number": 38,
      "turnover": 722000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CRETEIL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890380,
      "email": null,
      "id": 1773,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48992727",
      "postal_code": "94000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "allee Parmentier",
      "street_number": 6,
      "turnover": null,
      "user_id": 81,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLENEUVE LE ROI",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890394,
      "email": null,
      "id": 15281,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R6020001",
      "location_areas_ids": [],
      "owner_name": "davory",
      "phone_number": "01-45974312",
      "postal_code": "94290",
      "siren": "488184508",
      "siret": "48818450800015",
      "status": "P",
      "store_name": "Boulangerie Davory",
      "street": "rue de la Mairie",
      "street_number": 9,
      "turnover": 340000,
      "user_id": 81,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "IVRY SUR SEINE",
      "client_creation_date": "1-1-1995",
      "closing_days_ids": [],
      "datlinq_code": 890395,
      "email": null,
      "id": 15282,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Miroslawa",
      "phone_number": "01-46728500",
      "postal_code": "94200",
      "siren": "348832247",
      "siret": "34883224700012",
      "status": "P",
      "store_name": "Boulangerie de Ville Miroslawa",
      "street": "bd Paul Vaillant Couturier",
      "street_number": 126,
      "turnover": 45000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MAUR DES FOSSES",
      "client_creation_date": "2001",
      "closing_days_ids": [],
      "datlinq_code": 890397,
      "email": null,
      "id": 15284,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R7241001",
      "location_areas_ids": [],
      "owner_name": "Lundi mardi",
      "phone_number": "01-48830784",
      "postal_code": "94100",
      "siren": "441515715",
      "siret": "44151571500015",
      "status": "G",
      "store_name": "Boulangerie Desjardins",
      "street": "avenue du Raincy",
      "street_number": 4,
      "turnover": 480000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VINCENNES",
      "client_creation_date": "2010",
      "closing_days_ids": [],
      "datlinq_code": 890399,
      "email": null,
      "id": 15286,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43282511",
      "postal_code": "94300",
      "siren": "452232721",
      "siret": "45223272100012",
      "status": "M",
      "store_name": "Boulangerie Douceurs Et Plaisirs De Vincennes",
      "street": "rue de Fontenay",
      "street_number": 83,
      "turnover": 450000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MAUR DES FOSSES",
      "client_creation_date": "2015",
      "closing_days_ids": [],
      "datlinq_code": 890417,
      "email": null,
      "id": 15300,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-77853811",
      "postal_code": "94210",
      "siren": "424161180",
      "siret": "42416118000015",
      "status": "P",
      "store_name": "Boulangerie la Chaumette",
      "street": "avenue du Bac",
      "street_number": 23,
      "turnover": 173000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MAUR DES FOSSES",
      "client_creation_date": "2007",
      "closing_days_ids": [],
      "datlinq_code": 890427,
      "email": null,
      "id": 15308,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0838E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-49769195",
      "postal_code": "94210",
      "siren": "389388885",
      "siret": "38938888500011",
      "status": "P",
      "store_name": "Le Fournil des Gourmands",
      "street": "avenue du Centenaire",
      "street_number": 127,
      "turnover": 380,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BRY SUR MARNE",
      "client_creation_date": "2010",
      "closing_days_ids": [],
      "datlinq_code": 890456,
      "email": null,
      "id": 15327,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48810013",
      "postal_code": "94360",
      "siren": "492446331",
      "siret": "49244633100018",
      "status": "P",
      "store_name": "Boulangerie Tenesi",
      "street": "Grande Rue Charles de Gaulle",
      "street_number": 39,
      "turnover": 580000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FONTENAY SOUS BOIS",
      "client_creation_date": "1999",
      "closing_days_ids": [],
      "datlinq_code": 890460,
      "email": null,
      "id": 15329,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48768887",
      "postal_code": "94120",
      "siren": "324139369",
      "siret": "32413936900023",
      "status": "P",
      "store_name": "Boulangerie Vallot",
      "street": "place du General Leclerc",
      "street_number": 7,
      "turnover": 150000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTIGNY LES CORMEILLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890468,
      "email": null,
      "id": 15337,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R5153001",
      "location_areas_ids": [],
      "owner_name": "Djeema",
      "phone_number": "01-39979212",
      "postal_code": "95370",
      "siren": "452270184",
      "siret": "45227018400016",
      "status": "P",
      "store_name": "Boulangerie aux Croissants d'Argent",
      "street": "residence de la Gare",
      "street_number": 12,
      "turnover": 210000,
      "user_id": 80,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PONTOISE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 890544,
      "email": null,
      "id": 15398,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R8692001",
      "location_areas_ids": [],
      "owner_name": "Olivier Guillaume",
      "phone_number": "01-34241117",
      "postal_code": "95300",
      "siren": "508340205",
      "siret": "50834020500014",
      "status": "G",
      "store_name": "Boulangerie au Pain de Pontoise",
      "street": "av du General Gabriel Delarue",
      "street_number": 10,
      "turnover": 708000,
      "user_id": 78,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FRAIZE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 891375,
      "email": null,
      "id": 15405,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "88230",
      "siren": "798729109",
      "siret": "79872910900016",
      "status": "P",
      "store_name": "Boulangerie Du Four au Moulin",
      "street": "rue du General Ingold",
      "street_number": 15,
      "turnover": 140000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RAUCOURT ET FLABA",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 891982,
      "email": null,
      "id": 15410,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 324267140",
      "postal_code": "08450",
      "siren": "790963623",
      "siret": "79096362300018",
      "status": "P",
      "store_name": "Boulangerie Brule",
      "street": "rue de l Eglise",
      "street_number": 6,
      "turnover": 220000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "1992-01-01",
      "closing_days_ids": [],
      "datlinq_code": 892574,
      "email": "ce.0060033d@ac-nice.fr",
      "id": 199,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0166C001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93971200",
      "postal_code": "06000",
      "siren": "324538560",
      "siret": "32453856000081",
      "status": "P",
      "store_name": "Lycée Honoré d'Estienne d'Orves",
      "street": "avenue d Estienne d Orves",
      "street_number": 13,
      "turnover": 40000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "REIMS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 894382,
      "email": null,
      "id": 15420,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326849293",
      "postal_code": "51100",
      "siren": "488206517",
      "siret": "48820651700010",
      "status": "M",
      "store_name": "Boulangerie Case à Pains",
      "street": "place du Forum",
      "street_number": 5,
      "turnover": 600000,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CLAIR SUR L ELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 894511,
      "email": null,
      "id": 15421,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010031934252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233058624",
      "postal_code": "50680",
      "siren": "539639708",
      "siret": "53963970800012",
      "status": "G",
      "store_name": "Boulangerie Patisserie Saint Clair Sur L'Elle",
      "street": "rue de la Liberation",
      "street_number": 7,
      "turnover": 312000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JEAN DE MONTS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 896028,
      "email": null,
      "id": 15428,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "85160",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Brioche Vendeenne",
      "street": "rue Georges Clemenceau",
      "street_number": 9,
      "turnover": null,
      "user_id": 157,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHALINDREY",
      "client_creation_date": "2014-02-01",
      "closing_days_ids": [],
      "datlinq_code": 902653,
      "email": null,
      "id": 15449,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0010035393252110",
      "location_areas_ids": [],
      "owner_name": "Duc",
      "phone_number": "+33 967028646",
      "postal_code": "52600",
      "siren": "840098164",
      "siret": "84009816400014",
      "status": "M",
      "store_name": "Boulangerie aux Delices des Sorciers",
      "street": "rue de la Republique",
      "street_number": 60,
      "turnover": 260000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST BENOIT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 915305,
      "email": null,
      "id": 39917,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-49434432",
      "postal_code": "86280",
      "siren": "482340973",
      "siret": "48234097300999",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Marie Blachere",
      "street": "rue de la Varenne",
      "street_number": null,
      "turnover": null,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOURGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 920068,
      "email": null,
      "id": 32653,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R7292001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-48241263",
      "postal_code": "18000",
      "siren": "419217724",
      "siret": "41921772400014",
      "status": "M",
      "store_name": "Le Khedive",
      "street": "rue Moyenne",
      "street_number": 18,
      "turnover": 300000,
      "user_id": 51,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANNES",
      "client_creation_date": "1949-04-01",
      "closing_days_ids": [],
      "datlinq_code": 930675,
      "email": null,
      "id": 200,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0109W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93062304",
      "postal_code": "06400",
      "siren": "695520270",
      "siret": "69552027000015",
      "status": "P",
      "store_name": "Ernest Traiteur",
      "street": "rue Meynadier",
      "street_number": 52,
      "turnover": 10000,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAGNES SUR MER",
      "client_creation_date": "1999-01-18",
      "closing_days_ids": [],
      "datlinq_code": 930700,
      "email": null,
      "id": 202,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "M5138001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93310074",
      "postal_code": "06800",
      "siren": "421592783",
      "siret": "42159278300011",
      "status": "G",
      "store_name": "Patisserie Jamais Et Fils",
      "street": "boulevard de la Plage",
      "street_number": 83,
      "turnover": 730000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COUTICHES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 932554,
      "email": null,
      "id": 37335,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003343252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320616175",
      "postal_code": "59310",
      "siren": "452872252",
      "siret": "45287225200013",
      "status": "P",
      "store_name": "Duchateau Christophe",
      "street": "route Nationale",
      "street_number": 1247,
      "turnover": 50000,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 933365,
      "email": "le-havre@classcroute.com",
      "id": 41462,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235243446",
      "postal_code": "76600",
      "siren": "491566550",
      "siret": "49156655000019",
      "status": "EMPTY_STATUS",
      "store_name": "Class'Croute",
      "street": "rue Viviani",
      "street_number": 51,
      "turnover": null,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 937846,
      "email": null,
      "id": 15547,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91522685",
      "postal_code": "13002",
      "siren": "438155863",
      "siret": "43815586300022",
      "status": "P",
      "store_name": "Boulangerie la Fournee de Joseph",
      "street": "avenue Robert Schuman",
      "street_number": 61,
      "turnover": 128000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "METZ",
      "client_creation_date": "1995-01-01",
      "closing_days_ids": [],
      "datlinq_code": 938086,
      "email": null,
      "id": 15565,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016053252110",
      "location_areas_ids": [],
      "owner_name": "Laurent Clément",
      "phone_number": "+33 387750629",
      "postal_code": "57000",
      "siren": "400043030",
      "siret": "40004303000016",
      "status": "P",
      "store_name": "Boulangerie Laurent",
      "street": "rue des Allemands",
      "street_number": 82,
      "turnover": 150000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "1985-04-01",
      "closing_days_ids": [],
      "datlinq_code": 938155,
      "email": null,
      "id": 206,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "03070001",
      "location_areas_ids": [],
      "owner_name": "ANSELMI",
      "phone_number": "04-93877795",
      "postal_code": "06000",
      "siren": "332303718",
      "siret": "33230371800016",
      "status": "G",
      "store_name": "Boulangerie chez Maitre Pierre",
      "street": "rue Massena",
      "street_number": 41,
      "turnover": 488000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTPELLIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938251,
      "email": null,
      "id": 15578,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010028912252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 499625419",
      "postal_code": "34000",
      "siren": "527679104",
      "siret": "52767910400010",
      "status": "P",
      "store_name": "Boulangerie De L Aiguillerie",
      "street": "rue de l Aiguillerie",
      "street_number": 36,
      "turnover": 200000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "METZ",
      "client_creation_date": "1993-09-01",
      "closing_days_ids": [],
      "datlinq_code": 938254,
      "email": null,
      "id": 15579,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Hubert Lemoine",
      "phone_number": "+33 387521918",
      "postal_code": "57000",
      "siren": "392380994",
      "siret": "39238099400013",
      "status": "P",
      "store_name": "Boulangerie Banette Hubert Lemoine",
      "street": "rue de la Chapelle",
      "street_number": 38,
      "turnover": 1154000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "2009",
      "closing_days_ids": [],
      "datlinq_code": 938286,
      "email": null,
      "id": 15584,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78754729",
      "postal_code": "69008",
      "siren": "451245989",
      "siret": "45124598900012",
      "status": "P",
      "store_name": "Boulangerie la Mignardise",
      "street": "boulevard des Etats Unis",
      "street_number": 73,
      "turnover": 267000,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938341,
      "email": null,
      "id": 46572,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 648702238",
      "postal_code": "59800",
      "siren": "509476677",
      "siret": "50947667700018",
      "status": "P",
      "store_name": "La Boite à Sandwich",
      "street": "Boulevard Vauban",
      "street_number": 45,
      "turnover": 80000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRENOBLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938347,
      "email": null,
      "id": 15587,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76963298",
      "postal_code": "38100",
      "siren": "435293352",
      "siret": "43529335200017",
      "status": "M",
      "store_name": "Boulangerie Le Friand",
      "street": "cours Liberation Gal de Gaulle",
      "street_number": 159,
      "turnover": 359000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BORDEAUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938403,
      "email": null,
      "id": 1823,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56810100",
      "postal_code": "33000",
      "siren": "453637498",
      "siret": "45363749800024",
      "status": "EMPTY_STATUS",
      "store_name": "Karl",
      "street": "place du Parlement",
      "street_number": 6,
      "turnover": null,
      "user_id": 204,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAMBRAI",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938431,
      "email": null,
      "id": 36840,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 327818737",
      "postal_code": "59400",
      "siren": "498815844",
      "siret": "49881584400010",
      "status": "EMPTY_STATUS",
      "store_name": "Subway",
      "street": "place Aristide Briand",
      "street_number": 4,
      "turnover": null,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LORIENT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938445,
      "email": null,
      "id": 36852,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-97840432",
      "postal_code": "56100",
      "siren": "750777401",
      "siret": "75077740100019",
      "status": "EMPTY_STATUS",
      "store_name": "Subway",
      "street": "avenue du Faouedic",
      "street_number": 4,
      "turnover": null,
      "user_id": 262,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938447,
      "email": null,
      "id": 36854,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-72539273",
      "postal_code": "69009",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Subway",
      "street": "rue Saint Pierre de Vaise",
      "street_number": 36,
      "turnover": null,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NIORT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938466,
      "email": null,
      "id": 1824,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-49172080",
      "postal_code": "79000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Mie CalineÌÀ",
      "street": "place des Halles",
      "street_number": 1,
      "turnover": null,
      "user_id": 158,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAYEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938471,
      "email": null,
      "id": 1828,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231518743",
      "postal_code": "14400",
      "siren": "500511704",
      "siret": "50051170400016",
      "status": "M",
      "store_name": "La Mie Caline",
      "street": "rue Saint Malo",
      "street_number": 82,
      "turnover": 200000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BELFORT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938477,
      "email": null,
      "id": 1831,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 384285501",
      "postal_code": "90000",
      "siren": "487624512",
      "siret": "48762451200017",
      "status": "EMPTY_STATUS",
      "store_name": "La Mie Caline ",
      "street": "place du Docteur Georges Corbis",
      "street_number": 4,
      "turnover": null,
      "user_id": 411,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938482,
      "email": null,
      "id": 1833,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321104056",
      "postal_code": "62200",
      "siren": "434122149",
      "siret": "43412214900017",
      "status": "M",
      "store_name": "La Mie Caline ",
      "street": "Grande Rue",
      "street_number": 2,
      "turnover": 300000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATEAUROUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938493,
      "email": null,
      "id": 1840,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-54089064",
      "postal_code": "36000",
      "siren": "491896007",
      "siret": "49189600700011",
      "status": "EMPTY_STATUS",
      "store_name": "La Mie Caline ",
      "street": "rue Victor Hugo",
      "street_number": 45,
      "turnover": null,
      "user_id": 52,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938501,
      "email": null,
      "id": 36883,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561122592",
      "postal_code": "31000",
      "siren": "504703174",
      "siret": "50470317400020",
      "status": "EMPTY_STATUS",
      "store_name": "Subway",
      "street": "rue Leon Gambetta",
      "street_number": 41,
      "turnover": null,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NARBONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938522,
      "email": null,
      "id": 1859,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468497762",
      "postal_code": "11100",
      "siren": "500580220",
      "siret": "50058022000027",
      "status": "M",
      "store_name": "La Mie Caline ",
      "street": "cours de la Republique",
      "street_number": 7,
      "turnover": 350000,
      "user_id": 440,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RENNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938524,
      "email": null,
      "id": 1861,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-99315488",
      "postal_code": "35000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Mie CalineÌÀ",
      "street": "rue de Plelo",
      "street_number": 2,
      "turnover": null,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHOLET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938770,
      "email": null,
      "id": 1887,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241650799",
      "postal_code": "49300",
      "siren": "412473969",
      "siret": "41247396900019",
      "status": "M",
      "store_name": "La Mie Caline ",
      "street": "rue Nationale",
      "street_number": 142,
      "turnover": 200000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HETTANGE GRANDE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938879,
      "email": null,
      "id": 15631,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-82531064",
      "postal_code": "57330",
      "siren": "440163640",
      "siret": "44016364000012",
      "status": "P",
      "store_name": "Boulangerie Limacher",
      "street": "rue du General de Gaulle",
      "street_number": 14,
      "turnover": 405000,
      "user_id": 104,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-12-2008",
      "closing_days_ids": [],
      "datlinq_code": 938891,
      "email": null,
      "id": 15634,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0364A001",
      "location_areas_ids": [],
      "owner_name": "PIRES CHEIO",
      "phone_number": "09-53577295",
      "postal_code": "75009",
      "siren": "509251773",
      "siret": "50925177300016",
      "status": "P",
      "store_name": "Boulangerie Banette Cheio",
      "street": "rue des Martyrs",
      "street_number": 65,
      "turnover": 279080,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "2006-10-01",
      "closing_days_ids": [],
      "datlinq_code": 938915,
      "email": null,
      "id": 210,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "M1465001",
      "location_areas_ids": [],
      "owner_name": "LEFEVRE",
      "phone_number": "04-93856888",
      "postal_code": "06300",
      "siren": "492432711",
      "siret": "49243271100017",
      "status": "M",
      "store_name": "Boulangerie La Capeline",
      "street": "rue Centrale",
      "street_number": 12,
      "turnover": 150000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 938952,
      "email": null,
      "id": 1895,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Kamel BESSAHA",
      "phone_number": "01-44820469",
      "postal_code": "75001",
      "siren": "482135852",
      "siret": "48213585200010",
      "status": "EMPTY_STATUS",
      "store_name": "Oh! Regalade Du Pont Neuf",
      "street": "quai du Louvre",
      "street_number": 20,
      "turnover": 362000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 939079,
      "email": null,
      "id": 1905,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43463255",
      "postal_code": "75012",
      "siren": "449448059",
      "siret": "44944805900013",
      "status": "P",
      "store_name": "L Esplanade",
      "street": "rue Jean Bouton",
      "street_number": 16,
      "turnover": 302000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 939085,
      "email": null,
      "id": 15650,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91487203",
      "postal_code": "13001",
      "siren": "394430409",
      "siret": "39443040900026",
      "status": "M",
      "store_name": "Boulangerie Praline",
      "street": "rue de Rome",
      "street_number": 167,
      "turnover": 230000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEURBANNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 939157,
      "email": null,
      "id": 1909,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Akbolat",
      "phone_number": "04-78949965",
      "postal_code": "69100",
      "siren": "478283427",
      "siret": "47828342700019",
      "status": "P",
      "store_name": "Boulangerie la Huche aux Pains",
      "street": "avenue Roger Salengro",
      "street_number": 78,
      "turnover": 222000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 939290,
      "email": null,
      "id": 15662,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "L5128001",
      "location_areas_ids": [],
      "owner_name": "BIRKA FATIHA",
      "phone_number": "+33 561596116",
      "postal_code": "31500",
      "siren": "508710308",
      "siret": "50871030800018",
      "status": "P",
      "store_name": "Le Fournil de l'Avenue",
      "street": "avenue de Lyon",
      "street_number": 11,
      "turnover": 82276,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PEYRUIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 878595,
      "email": null,
      "id": 5445,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92680979",
      "postal_code": "04310",
      "siren": "423609304",
      "siret": "42360930400013",
      "status": "P",
      "store_name": "Boulangerie les Alp Pains",
      "street": "place des Platanes",
      "street_number": 5,
      "turnover": 90000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 939329,
      "email": null,
      "id": 15666,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ZAROUI",
      "phone_number": "09-64283663",
      "postal_code": "75018",
      "siren": "340997527",
      "siret": "34099752700023",
      "status": "M",
      "store_name": "Boulangerie Zaroui",
      "street": "rue du Poteau",
      "street_number": 71,
      "turnover": 350000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": "2006",
      "closing_days_ids": [],
      "datlinq_code": 939410,
      "email": null,
      "id": 1923,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "RLA43001",
      "location_areas_ids": [],
      "owner_name": "KEMOUN",
      "phone_number": "04-91419267",
      "postal_code": "13006",
      "siren": "489841585",
      "siret": "48984158500024",
      "status": "M",
      "store_name": "Boulangerie le Fournil des Fourneaux",
      "street": "avenue de Toulon",
      "street_number": 71,
      "turnover": 600000,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 939946,
      "email": null,
      "id": 15697,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-46061826",
      "postal_code": "75018",
      "siren": "478432263",
      "siret": "47843226300018",
      "status": "G",
      "store_name": "Boulangerie le Pain en Fête",
      "street": "boulevard Barbes",
      "street_number": 69,
      "turnover": 555000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 939979,
      "email": null,
      "id": 46573,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-99427765",
      "postal_code": "13003",
      "siren": "451930432",
      "siret": "45193043200013",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Fournil du Racati",
      "street": "rue du Racati",
      "street_number": 2,
      "turnover": null,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHARTRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 940027,
      "email": null,
      "id": 32705,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010014573252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 237239457",
      "postal_code": "28000",
      "siren": "504390519",
      "siret": "50439051900016",
      "status": "P",
      "store_name": "Point Show",
      "street": "Place Des Epars",
      "street_number": 12,
      "turnover": 80000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THIONVILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 940297,
      "email": null,
      "id": 15717,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-82912416",
      "postal_code": "57100",
      "siren": "380626994",
      "siret": "38062699400087",
      "status": "EMPTY_STATUS",
      "store_name": "Snack Marius",
      "street": "avenue Albert 1er",
      "street_number": 23,
      "turnover": null,
      "user_id": 104,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 940443,
      "email": null,
      "id": 15731,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R8471001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "75003",
      "siren": "379124688",
      "siret": "37912468800019",
      "status": "M",
      "store_name": "Sandwicherie Ble d'Or",
      "street": "Rue Saint Martin",
      "street_number": 214,
      "turnover": 400000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 940668,
      "email": null,
      "id": 15748,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1470W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42713036",
      "postal_code": "75003",
      "siren": "312847296",
      "siret": "31284729600018",
      "status": "P",
      "store_name": "Boulangerie Mireille",
      "street": "rue Vieille du Temple",
      "street_number": 133,
      "turnover": 250000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 940793,
      "email": null,
      "id": 32707,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010014333252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386644465",
      "postal_code": "89100",
      "siren": "444687750",
      "siret": "44468775000018",
      "status": "P",
      "store_name": "Boulangerie Croque Chaud Piscine Tournesol",
      "street": "rue Etienne Mimard",
      "street_number": 7,
      "turnover": 100000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BITCHE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 940983,
      "email": null,
      "id": 15772,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010890252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387960104",
      "postal_code": "57230",
      "siren": "489229500",
      "siret": "48922950000017",
      "status": "P",
      "store_name": "Boulangerie Banette Martig",
      "street": "Rue Du Colonel Teyssier",
      "street_number": 8,
      "turnover": 200000,
      "user_id": 395,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HAYANGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 941087,
      "email": null,
      "id": 32708,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "45186001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-82842037",
      "postal_code": "57700",
      "siren": "392424115",
      "siret": "39242411500013",
      "status": "EMPTY_STATUS",
      "store_name": "Vichard Salon De The",
      "street": "rue General De Gaulle",
      "street_number": 1,
      "turnover": null,
      "user_id": 104,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LES LILAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 941133,
      "email": null,
      "id": 15793,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "THOMANN COLETTE MICHELINE",
      "phone_number": "01-43620063",
      "postal_code": "93260",
      "siren": "442376596",
      "siret": "44237659600015",
      "status": "P",
      "store_name": "Boulangerie Delices de Marion",
      "street": "rue de Paris",
      "street_number": 139,
      "turnover": 650000,
      "user_id": 74,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 941176,
      "email": null,
      "id": 15800,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "M0308001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43076305",
      "postal_code": "75012",
      "siren": "500806393",
      "siret": "50080639300012",
      "status": "P",
      "store_name": "Boulangerie Aux Delices De Dorith",
      "street": "rue de Charenton",
      "street_number": 269,
      "turnover": 324000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MULHOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 941347,
      "email": null,
      "id": 15822,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-62722673",
      "postal_code": "68200",
      "siren": "451286579",
      "siret": "45128657900045",
      "status": "G",
      "store_name": "Boulangerie Histoire de Pains",
      "street": "rue de Kingersheim",
      "street_number": 28,
      "turnover": 400000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GENTILLY",
      "client_creation_date": "1-1-2004",
      "closing_days_ids": [],
      "datlinq_code": 941424,
      "email": null,
      "id": 15825,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R9301001",
      "location_areas_ids": [],
      "owner_name": "DE SOUZA",
      "phone_number": "06-88203002",
      "postal_code": "94250",
      "siren": "500731690",
      "siret": "50073169000011",
      "status": "G",
      "store_name": "Boulangerie Pao Quente",
      "street": "rue des Champs Elysees",
      "street_number": 2,
      "turnover": 537470,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "KAYSERSBERG VIGNOBLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 943276,
      "email": null,
      "id": 50210,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-89473040",
      "postal_code": "68240",
      "siren": "335292967",
      "siret": "33529296700023",
      "status": "EMPTY_STATUS",
      "store_name": "Au Peche Mignon",
      "street": "rue du General de Gaulle",
      "street_number": 67,
      "turnover": null,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GUEUGNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 943326,
      "email": null,
      "id": 2002,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010030799252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 385258026",
      "postal_code": "71130",
      "siren": "804812543",
      "siret": "80481254300010",
      "status": "M",
      "store_name": "Pain et Cie",
      "street": "rue de la Convention",
      "street_number": 82,
      "turnover": 160000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GEVREY CHAMBERTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 943414,
      "email": null,
      "id": 2003,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 380341317",
      "postal_code": "21220",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Paul",
      "street": "station Auto Esso Gevrey Est",
      "street_number": null,
      "turnover": 10000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRIMAUD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 943799,
      "email": null,
      "id": 15932,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-94966297",
      "postal_code": "83310",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie la Tarte Tropezienne",
      "street": "quartier Saint Pons les Mures",
      "street_number": null,
      "turnover": null,
      "user_id": 185,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTAUROUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 943990,
      "email": null,
      "id": 15939,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Jasselin",
      "phone_number": "04-94767256",
      "postal_code": "83440",
      "siren": "414962076",
      "siret": "41496207600041",
      "status": "M",
      "store_name": "Boulangerie de l'Olivier",
      "street": "route Departementale 37",
      "street_number": 562,
      "turnover": 638000,
      "user_id": 185,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST BERTHEVIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 944085,
      "email": null,
      "id": 15948,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010009704252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243692599",
      "postal_code": "53940",
      "siren": "384606703",
      "siret": "38460670300021",
      "status": "G",
      "store_name": "Boulangerie la Tentation",
      "street": "avenue de la Liberation",
      "street_number": 63,
      "turnover": 430000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "APT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 944259,
      "email": null,
      "id": 38171,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-22412517",
      "postal_code": "84400",
      "siren": "351603162",
      "siret": "35160316200022",
      "status": "P",
      "store_name": "Snack la Fringale",
      "street": "rue Saint Pierre",
      "street_number": 36,
      "turnover": 73000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAVAILLON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 944260,
      "email": null,
      "id": 15958,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-85491566",
      "postal_code": "84300",
      "siren": "483856365",
      "siret": "48385636500018",
      "status": "G",
      "store_name": "Boulangerie la Fromenterie",
      "street": "avenue du Pont",
      "street_number": 110,
      "turnover": 352754,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAUREPAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 944304,
      "email": null,
      "id": 2009,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-30660092",
      "postal_code": "78310",
      "siren": "582150041",
      "siret": "58215004100827",
      "status": "EMPTY_STATUS",
      "store_name": "Pomme De Pain",
      "street": "avenue Gutenberg",
      "street_number": null,
      "turnover": null,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NEUVIC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 880154,
      "email": null,
      "id": 6705,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-55958152",
      "postal_code": "19160",
      "siren": "418817961",
      "siret": "41881796100018",
      "status": "M",
      "store_name": "Boulangerie Leger",
      "street": "rue de l Eglise",
      "street_number": null,
      "turnover": 180000,
      "user_id": 196,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": "2011-11-25",
      "closing_days_ids": [],
      "datlinq_code": 944533,
      "email": "leconcertgourmand@Orange.fr",
      "id": 15969,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010017865252110",
      "location_areas_ids": [],
      "owner_name": "Chevalier",
      "phone_number": "+33 320510815",
      "postal_code": "59800",
      "siren": "538332081",
      "siret": "53833208100016",
      "status": "G",
      "store_name": "Patisserie Boulangerie le Concert Gourmand",
      "street": "Rue de la Collégiale",
      "street_number": 7,
      "turnover": 415000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAIZIERES LES METZ",
      "client_creation_date": "2014-03-01",
      "closing_days_ids": [],
      "datlinq_code": 946290,
      "email": null,
      "id": 16030,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Benoît Merlin",
      "phone_number": "+33 387802595",
      "postal_code": "57280",
      "siren": "341092393",
      "siret": "34109239300022",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Merlin",
      "street": "Grand Rue",
      "street_number": 59,
      "turnover": 610000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAVAL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 946300,
      "email": null,
      "id": 16032,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243531585",
      "postal_code": "53000",
      "siren": "420321408",
      "siret": "42032140800023",
      "status": "M",
      "store_name": "Boulangerie Ribot",
      "street": "rue Echelle Marteau",
      "street_number": 6,
      "turnover": 150000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DIVES SUR MER",
      "client_creation_date": "2007-03-03",
      "closing_days_ids": [],
      "datlinq_code": 946630,
      "email": null,
      "id": 16078,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005234252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231247846",
      "postal_code": "14160",
      "siren": "494601487",
      "siret": "49460148700015",
      "status": "M",
      "store_name": "La Fournee des Delices",
      "street": "rue du General de Gaulle",
      "street_number": 95,
      "turnover": 641100,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DUNKERQUE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 946635,
      "email": null,
      "id": 32733,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016656252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328669748",
      "postal_code": "59140",
      "siren": "333840254",
      "siret": "33384025400010",
      "status": "P",
      "store_name": "Patisserie au Petit Mitron",
      "street": "place de la Gare",
      "street_number": 14,
      "turnover": 150000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": "2006-04-26",
      "closing_days_ids": [],
      "datlinq_code": 946806,
      "email": null,
      "id": 16091,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320061612",
      "postal_code": "59800",
      "siren": "423696574",
      "siret": "42369657400023",
      "status": "M",
      "store_name": "Boulangerie Debuiche",
      "street": "Rue du Faubourg de Roubaix",
      "street_number": 160,
      "turnover": 420000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTPELLIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 946843,
      "email": null,
      "id": 2040,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467751141",
      "postal_code": "34080",
      "siren": "488510876",
      "siret": "48851087600011",
      "status": "EMPTY_STATUS",
      "store_name": "Salade Rit",
      "street": "place Pierre Renaudel",
      "street_number": 3,
      "turnover": 79000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BULLY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 946981,
      "email": null,
      "id": 16113,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0172G001",
      "location_areas_ids": [],
      "owner_name": "Coquard",
      "phone_number": "04-74013632",
      "postal_code": "69210",
      "siren": "329511547",
      "siret": "32951154700021",
      "status": "M",
      "store_name": "Fournil des Pierres Dorées",
      "street": "route de Paris",
      "street_number": 30,
      "turnover": 350000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLICHY",
      "client_creation_date": "7-3-2014",
      "closing_days_ids": [],
      "datlinq_code": 947357,
      "email": "lesmignardises92@gmail.com",
      "id": 16145,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0742E001",
      "location_areas_ids": [],
      "owner_name": "AHMED CHMOURK",
      "phone_number": "01-47392858",
      "postal_code": "92110",
      "siren": "491043931",
      "siret": "49104393100014",
      "status": "M",
      "store_name": "Boulangerie les Mignardises",
      "street": "rue de Neuilly",
      "street_number": 70,
      "turnover": 500000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RETHEL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 947370,
      "email": "sarlbecue@wanadoo.fr",
      "id": 16147,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010161252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 324383323",
      "postal_code": "08300",
      "siren": "392049227",
      "siret": "39204922700011",
      "status": "M",
      "store_name": "Becue Boulangerie",
      "street": "place Hourtoule",
      "street_number": 2,
      "turnover": 539616,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PUID",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 947576,
      "email": null,
      "id": 32947,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "63280001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-29410539",
      "postal_code": "88210",
      "siren": "404067720",
      "siret": "40406772000015",
      "status": "P",
      "store_name": "Auberge du Raybois",
      "street": "Haut du Village",
      "street_number": 15,
      "turnover": 1000,
      "user_id": 109,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTERRE",
      "client_creation_date": "1-1-2014",
      "closing_days_ids": [],
      "datlinq_code": 947621,
      "email": null,
      "id": 16159,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "2158C001",
      "location_areas_ids": [],
      "owner_name": "HOUCINE SMIDA",
      "phone_number": "01-71974909",
      "postal_code": "92000",
      "siren": "800309163",
      "siret": "80030916300015",
      "status": "P",
      "store_name": "Boulangerie Delices de Nanterre",
      "street": "avenue du General Gallieni",
      "street_number": 6,
      "turnover": 250000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 947686,
      "email": null,
      "id": 2056,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 607084461",
      "postal_code": "62200",
      "siren": "400881835",
      "siret": "40088183500054",
      "status": "EMPTY_STATUS",
      "store_name": "Confiserie De Tradition",
      "street": "rue de Lille",
      "street_number": 48,
      "turnover": null,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BESANCON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 949082,
      "email": null,
      "id": 16210,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010505252110",
      "location_areas_ids": [],
      "owner_name": "RICOT",
      "phone_number": "+33 381808354",
      "postal_code": "25000",
      "siren": "524125614",
      "siret": "52412561400015",
      "status": "G",
      "store_name": "La Passion des Pains",
      "street": "rue de Belfort",
      "street_number": 67,
      "turnover": 535000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AMIENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 949580,
      "email": null,
      "id": 32743,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "A3101001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-22926515",
      "postal_code": "80000",
      "siren": "441720364",
      "siret": "44172036400021",
      "status": "P",
      "store_name": "Sandwicherie Comptoir les Encas",
      "street": "place Rene Goblet",
      "street_number": 45,
      "turnover": 60000,
      "user_id": 121,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": "2005-05-19",
      "closing_days_ids": [],
      "datlinq_code": 949905,
      "email": null,
      "id": 16240,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320978995",
      "postal_code": "59800",
      "siren": "434764957",
      "siret": "43476495700024",
      "status": "P",
      "store_name": "Boulangerie le Kennedy",
      "street": "Avenue du Président John F. Kennedy",
      "street_number": 43,
      "turnover": 160000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 950189,
      "email": null,
      "id": 2088,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561235830",
      "postal_code": "31200",
      "siren": "318906591",
      "siret": "31890659102252",
      "status": "EMPTY_STATUS",
      "store_name": "La Brioche Doree",
      "street": "chemin de Gabardie",
      "street_number": null,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RAMBOUILLET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 950408,
      "email": null,
      "id": 2093,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-34857351",
      "postal_code": "78120",
      "siren": "325509214",
      "siret": "32550921400020",
      "status": "EMPTY_STATUS",
      "store_name": "La Croissanterie",
      "street": "Centre Commercial Du Bel Air",
      "street_number": null,
      "turnover": null,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LANNION",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 950470,
      "email": null,
      "id": 2094,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-96483215",
      "postal_code": "22300",
      "siren": "322314410",
      "siret": "32231441000075",
      "status": "EMPTY_STATUS",
      "store_name": "La Croissanterie",
      "street": "Route De Perros",
      "street_number": null,
      "turnover": null,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST ETIENNE DE TULMONT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 950478,
      "email": null,
      "id": 16257,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010025401252140",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 563645043",
      "postal_code": "82410",
      "siren": "332555325",
      "siret": "33255532500049",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Maison Paga",
      "street": "rue du Tulmonenc",
      "street_number": 31,
      "turnover": null,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NIMES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 950611,
      "email": "lacroissanterie@lacroissanterie.fr",
      "id": 2102,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466646782",
      "postal_code": "30900",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "La Croissanterie",
      "street": "rue Andre Dupont",
      "street_number": 116,
      "turnover": 500000,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "OUISTREHAM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 950658,
      "email": null,
      "id": 46578,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231360140",
      "postal_code": "14150",
      "siren": "480400001",
      "siret": "48040000100016",
      "status": "P",
      "store_name": "Snack l'Americain",
      "street": "esplanade Alexandre Lofi",
      "street_number": null,
      "turnover": 50000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PLAISIR",
      "client_creation_date": "29/12/2006",
      "closing_days_ids": [],
      "datlinq_code": 950924,
      "email": null,
      "id": 16268,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ANCELET",
      "phone_number": "01-34810505",
      "postal_code": "78370",
      "siren": "491200119",
      "siret": "49120011900015",
      "status": "G",
      "store_name": "Boulangerie le Fournil A l'ancienne",
      "street": "centre Commercial Grand Plaisir",
      "street_number": null,
      "turnover": 728800,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SEDAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 878924,
      "email": null,
      "id": 5653,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 324291290",
      "postal_code": "08200",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Moullois Franck",
      "street": "place Turenne",
      "street_number": null,
      "turnover": 260000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ELBEUF",
      "client_creation_date": "2000-01-01",
      "closing_days_ids": [],
      "datlinq_code": 951085,
      "email": null,
      "id": 32749,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012087252110",
      "location_areas_ids": [],
      "owner_name": "PIERRE SYLVIE",
      "phone_number": "+33 235780664",
      "postal_code": "76500",
      "siren": "490286481",
      "siret": "49028648100018",
      "status": "P",
      "store_name": "Boulangerie Croq Chaud",
      "street": "rue des Martyrs",
      "street_number": 15,
      "turnover": 100000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ECULLY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 951622,
      "email": null,
      "id": 2125,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78331199",
      "postal_code": "69130",
      "siren": "310097092",
      "siret": "31009709201184",
      "status": "P",
      "store_name": "La Brioche Doree",
      "street": "chemin du Perollier",
      "street_number": null,
      "turnover": 387000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUVAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 951652,
      "email": null,
      "id": 16310,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-44452648",
      "postal_code": "60000",
      "siren": "493576094",
      "siret": "49357609400012",
      "status": "G",
      "store_name": "Boulangerie de la Cathedrale",
      "street": "rue Saint Pierre",
      "street_number": 71,
      "turnover": 240000,
      "user_id": 78,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TROYES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 952544,
      "email": null,
      "id": 16341,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010033100252110",
      "location_areas_ids": [],
      "owner_name": "GOBLET",
      "phone_number": "+33 325467914",
      "postal_code": "10000",
      "siren": "503035792",
      "siret": "50303579200012",
      "status": "P",
      "store_name": "Boulangerie Croustillant",
      "street": "Rue des Bas Trevois",
      "street_number": 23,
      "turnover": 122100,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AIRE SUR LA LYS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 952660,
      "email": null,
      "id": 16345,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BOURDON",
      "phone_number": "+33 321390048",
      "postal_code": "62120",
      "siren": "484055595",
      "siret": "48405559500017",
      "status": "M",
      "store_name": "Boulangerie Le Fournil De La Lys",
      "street": "rue du Bourg",
      "street_number": 38,
      "turnover": 200000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VITRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 952699,
      "email": null,
      "id": 2141,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-99728241",
      "postal_code": "35500",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Mie CalineÌÀ",
      "street": "Rue Garengeot",
      "street_number": 23,
      "turnover": null,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAUREPAS",
      "client_creation_date": "23-8-2006",
      "closing_days_ids": [],
      "datlinq_code": 952870,
      "email": null,
      "id": 16354,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R7150001",
      "location_areas_ids": [],
      "owner_name": "IMLAHI",
      "phone_number": "01-30666320",
      "postal_code": "78310",
      "siren": "491484879",
      "siret": "49148487900011",
      "status": "G",
      "store_name": "Boulangerie la Panetière aux Mille et une Saveur",
      "street": "place du Doubs",
      "street_number": 7,
      "turnover": 837300,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CESTAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953071,
      "email": null,
      "id": 16363,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "3189E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56215707",
      "postal_code": "33610",
      "siren": "453736068",
      "siret": "45373606800033",
      "status": "M",
      "store_name": "Boulangerie Le Moulin De Cestas",
      "street": "rue Valmon Agard",
      "street_number": 2,
      "turnover": 450000,
      "user_id": 206,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COMPIEGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953237,
      "email": null,
      "id": 16366,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R5266001",
      "location_areas_ids": [],
      "owner_name": "HAMARD GILLES",
      "phone_number": "03-44206478",
      "postal_code": "60200",
      "siren": "388712135",
      "siret": "38871213500028",
      "status": "G",
      "store_name": "Boulangerie la Seigneurie",
      "street": "rue des Capucins",
      "street_number": 14,
      "turnover": 800000,
      "user_id": 311,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURBEVOIE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953332,
      "email": null,
      "id": 2148,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47881940",
      "postal_code": "92400",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "Centre Commercial Charras",
      "street_number": null,
      "turnover": null,
      "user_id": 94,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953364,
      "email": null,
      "id": 32757,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013071252110",
      "location_areas_ids": [],
      "owner_name": "Pérez",
      "phone_number": "+33 561990126",
      "postal_code": "31000",
      "siren": "442398277",
      "siret": "44239827700024",
      "status": "G",
      "store_name": "Briocherie Des 3J",
      "street": "Rue De Bayard",
      "street_number": 70,
      "turnover": 860000,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953456,
      "email": null,
      "id": 16372,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010009832252110",
      "location_areas_ids": [],
      "owner_name": "SARRUS PHILIPPE",
      "phone_number": "+33 561213564",
      "postal_code": "31000",
      "siren": "415111665",
      "siret": "41511166500014",
      "status": "P",
      "store_name": "Patisserie le Gateautier",
      "street": "avenue Paul Sejourne",
      "street_number": 1,
      "turnover": 299000,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SCHWEIGHOUSE SUR MODER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953763,
      "email": null,
      "id": 16388,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "LAMEGER",
      "phone_number": "03-88727654",
      "postal_code": "67590",
      "siren": "400058913",
      "siret": "40005891300015",
      "status": "M",
      "store_name": "Boulangerie L'amandine",
      "street": "rue du General de Gaulle",
      "street_number": 42,
      "turnover": 450000,
      "user_id": 112,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AVIGNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 953802,
      "email": null,
      "id": 2153,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "84000",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "Le Fournil des Roues",
      "street": "rue des Teinturiers",
      "street_number": 65,
      "turnover": 230000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE THOR",
      "client_creation_date": "01/2000",
      "closing_days_ids": [],
      "datlinq_code": 953857,
      "email": "sarl.gourmandise@laposte.net",
      "id": 16391,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Roisse",
      "phone_number": "04-90338795",
      "postal_code": "84250",
      "siren": "429036098",
      "siret": "42903609800029",
      "status": "M",
      "store_name": "Boulangerie Pains Et Gourmandises",
      "street": "place du 8 Mai et du 11 Novembre",
      "street_number": 6,
      "turnover": 281949,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PERRAY EN YVELINES",
      "client_creation_date": "11/09/2014",
      "closing_days_ids": [],
      "datlinq_code": 954077,
      "email": null,
      "id": 16402,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-34848005",
      "postal_code": "78610",
      "siren": "479507535",
      "siret": "479507535",
      "status": "P",
      "store_name": "Boulangerie Cosemans",
      "street": "rue de Chartres",
      "street_number": 2,
      "turnover": 380000,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 954301,
      "email": null,
      "id": 2162,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91672410",
      "postal_code": "13008",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "place Ernest Delibes",
      "street_number": 1,
      "turnover": null,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GENECH",
      "client_creation_date": "1993-06-11",
      "closing_days_ids": [],
      "datlinq_code": 954495,
      "email": null,
      "id": 16445,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0010011734252110",
      "location_areas_ids": [],
      "owner_name": "MONNIEZ CHRISTOPHE",
      "phone_number": "+33 320845025",
      "postal_code": "59242",
      "siren": "391297389",
      "siret": "39129738900010",
      "status": "G",
      "store_name": "Boulangerie au Moulin",
      "street": "rue de la Liberation",
      "street_number": 1118,
      "turnover": 375000,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THUMERIES",
      "client_creation_date": "2000-11-15",
      "closing_days_ids": [],
      "datlinq_code": 954521,
      "email": null,
      "id": 16452,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010002674252110",
      "location_areas_ids": [],
      "owner_name": "IDZIK STANISLAS",
      "phone_number": "+33 320869114",
      "postal_code": "59239",
      "siren": "433504990",
      "siret": "43350499000014",
      "status": "G",
      "store_name": "Boulangerie Idzik",
      "street": "rue Leon Blum",
      "street_number": 3,
      "turnover": 340000,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 954920,
      "email": null,
      "id": 16493,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93621039",
      "postal_code": "6300",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Multari",
      "street": "boulevard Jean Jaures",
      "street_number": 8,
      "turnover": null,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MULSANNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 955366,
      "email": null,
      "id": 16506,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010015852252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243428499",
      "postal_code": "72230",
      "siren": "437727191",
      "siret": "43772719100011",
      "status": "G",
      "store_name": "Boulangerie Dupont",
      "street": "centre Commercial des Rocheres",
      "street_number": null,
      "turnover": 450000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BALARUC LE VIEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 955645,
      "email": null,
      "id": 2190,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467691064",
      "postal_code": "34540",
      "siren": "324355205",
      "siret": "32435520500034",
      "status": "G",
      "store_name": "La Croissanterie",
      "street": "centre Commercial Carrefour",
      "street_number": null,
      "turnover": 800000,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 955725,
      "email": null,
      "id": 16513,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-37706731",
      "postal_code": "69007",
      "siren": "511242679",
      "siret": "51124267900013",
      "status": "P",
      "store_name": "Croq Pain",
      "street": "Place Gabriel Peri",
      "street_number": 12,
      "turnover": 140000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THIAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 955964,
      "email": null,
      "id": 2195,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45600458",
      "postal_code": "94320",
      "siren": "508892593",
      "siret": "50889259300015",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "centre commercial Carrefour",
      "street_number": null,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEFRANCHE SUR SAONE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 956554,
      "email": null,
      "id": 2222,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-74039744",
      "postal_code": "69400",
      "siren": "437589377",
      "siret": "43758937700021",
      "status": "EMPTY_STATUS",
      "store_name": "Au Fournil",
      "street": "rue Nationale",
      "street_number": 576,
      "turnover": null,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 956610,
      "email": null,
      "id": 2224,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235423613",
      "postal_code": "76600",
      "siren": "403052111",
      "siret": "40305211102079",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "centre commercial Rene Coty",
      "street_number": null,
      "turnover": null,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 956860,
      "email": null,
      "id": 2229,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45963515",
      "postal_code": "75009",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Brioche Doree",
      "street": "Rue De La Chaussee D Antin",
      "street_number": 56,
      "turnover": null,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "2002",
      "closing_days_ids": [],
      "datlinq_code": 957473,
      "email": null,
      "id": 2253,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1018F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78620163",
      "postal_code": "69003",
      "siren": "444340202",
      "siret": "44434020200019",
      "status": "P",
      "store_name": "Resto Confi",
      "street": "rue Villeroy",
      "street_number": 34,
      "turnover": 63000,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LABEGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 957506,
      "email": "toulouselabege@classcroute.com",
      "id": 41498,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561005050",
      "postal_code": "31670",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Class'croute",
      "street": "rue Pierre Gille de Gennes",
      "street_number": 1,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARCUEIL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 957594,
      "email": null,
      "id": 2257,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-57218939",
      "postal_code": "94110",
      "siren": "321716821",
      "siret": "32171682100053",
      "status": "EMPTY_STATUS",
      "store_name": "La Croissanterie",
      "street": "Centre commerciale Vache Noire",
      "street_number": null,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 957713,
      "email": null,
      "id": 16584,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42099968",
      "postal_code": "75018",
      "siren": "380214361",
      "siret": "38021436100012",
      "status": "P",
      "store_name": "Boulangerie Messedi",
      "street": "Rue Des Roses",
      "street_number": 22,
      "turnover": 350000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "11/2004",
      "closing_days_ids": [],
      "datlinq_code": 957776,
      "email": null,
      "id": 16589,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-46368711",
      "postal_code": "75020",
      "siren": "479467755",
      "siret": "47946775500019",
      "status": "G",
      "store_name": "Patisserie C B 4",
      "street": "avenue Gambetta",
      "street_number": 89,
      "turnover": 700000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 957807,
      "email": null,
      "id": 36915,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-24830071",
      "postal_code": "75012",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Subway",
      "street": "Rue De Reuilly",
      "street_number": 85,
      "turnover": null,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FOUQUIERES LES LENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958019,
      "email": null,
      "id": 32772,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016883252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321438976",
      "postal_code": "62740",
      "siren": "432442226",
      "siret": "43244222600010",
      "status": "P",
      "store_name": "Au Bon Accueil",
      "street": "Rue Roger Salengro",
      "street_number": 53,
      "turnover": 70000,
      "user_id": 416,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GEROGES DE DIDONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958075,
      "email": null,
      "id": 16595,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "LI527001",
      "location_areas_ids": [],
      "owner_name": "Desgris",
      "phone_number": "05-46939238",
      "postal_code": "17110",
      "siren": "325667442",
      "siret": "32566744200066",
      "status": "G",
      "store_name": "Boulangerie Degris",
      "street": "boulevard du Général Fresnal",
      "street_number": 18,
      "turnover": 650000,
      "user_id": 152,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "POITIERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958089,
      "email": null,
      "id": 2266,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-23022487",
      "postal_code": "86000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Mie CalineÌÀ",
      "street": "avenue De Paris",
      "street_number": 215,
      "turnover": null,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GOLBEY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958517,
      "email": null,
      "id": 16612,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Vinter",
      "phone_number": "03-29679554",
      "postal_code": "88190",
      "siren": "504963711",
      "siret": "50496371100024",
      "status": "M",
      "store_name": "Boulangerie Bothine",
      "street": "rue du General Leclerc",
      "street_number": 73,
      "turnover": 850000,
      "user_id": 109,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JOUY AUX ARCHES",
      "client_creation_date": "2014-01-01",
      "closing_days_ids": [],
      "datlinq_code": 958611,
      "email": null,
      "id": 16617,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0955E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 619709484",
      "postal_code": "57130",
      "siren": "800501652",
      "siret": "49949357500017",
      "status": "M",
      "store_name": "Boulangerie Histoire De Pains",
      "street": "Route De Metz",
      "street_number": 57,
      "turnover": 650000,
      "user_id": 395,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTPELLIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958756,
      "email": null,
      "id": 41504,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467723525",
      "postal_code": "34090",
      "siren": "434376653",
      "siret": "43437665300011",
      "status": "P",
      "store_name": "Boulangerie les Delices de Rimbaud",
      "street": "place Emile Combes",
      "street_number": 17,
      "turnover": 200000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROCHEFORT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958844,
      "email": null,
      "id": 33302,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "22172001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46832338",
      "postal_code": "17300",
      "siren": "514847888",
      "siret": "51484788800013",
      "status": "P",
      "store_name": "Snack Look Pizza",
      "street": "rue Gaston Baril",
      "street_number": 1,
      "turnover": 50000,
      "user_id": 155,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTBONNOT ST MARTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958856,
      "email": null,
      "id": 47649,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76448366",
      "postal_code": "38330",
      "siren": "492431168",
      "siret": "49243116800029",
      "status": "P",
      "store_name": "Boulangerie Epicuria",
      "street": "avenue de l Europe",
      "street_number": 1323,
      "turnover": 1,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 958993,
      "email": null,
      "id": 16636,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40484850",
      "postal_code": "44000",
      "siren": "422051698",
      "siret": "42205169800021",
      "status": "P",
      "store_name": "La Boulangerie",
      "street": "allee Duquesne",
      "street_number": 4,
      "turnover": 264000,
      "user_id": 144,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TRITH ST LEGER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 959134,
      "email": null,
      "id": 38176,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010027390252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 662531252",
      "postal_code": "59125",
      "siren": "394169288",
      "siret": null,
      "status": "G",
      "store_name": "Sandwicherie aux Delices Trithois",
      "street": "rue de l Egalite",
      "street_number": null,
      "turnover": 375000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FROUZINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 959171,
      "email": null,
      "id": 16644,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561723493",
      "postal_code": "31270",
      "siren": "382403343",
      "siret": "38240334300033",
      "status": "P",
      "store_name": "Boulangerie Karin",
      "street": "avenue des Pyrenees",
      "street_number": 8,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VERSAILLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 959854,
      "email": null,
      "id": 32785,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R6141001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "78000",
      "siren": "487675969",
      "siret": "48767596900017",
      "status": "M",
      "store_name": "Boualngerie chez Juliette",
      "street": "rue Ducis",
      "street_number": 1,
      "turnover": 300000,
      "user_id": 96,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 959983,
      "email": null,
      "id": 16671,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "LUGOL JEAN MARC",
      "phone_number": "+33 561225905",
      "postal_code": "31000",
      "siren": "511725459",
      "siret": "51172545900016",
      "status": "M",
      "store_name": "Boulangerie O Délices d'Amandine",
      "street": "rue Leon Gambetta",
      "street_number": 17,
      "turnover": 522996,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 959997,
      "email": null,
      "id": 2305,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "75018",
      "siren": "479303836",
      "siret": "47930383600015",
      "status": "P",
      "store_name": "Croque Minute Gericot",
      "street": "rue du Mont Cenis",
      "street_number": 9,
      "turnover": 1000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SARZEAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960145,
      "email": null,
      "id": 32787,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "24826001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-97482247",
      "postal_code": "56370",
      "siren": "330405176",
      "siret": "33040517600034",
      "status": "M",
      "store_name": "Le Galichan",
      "street": "rue de la Corderie",
      "street_number": 8,
      "turnover": 150000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PRADES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960261,
      "email": null,
      "id": 16679,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468964410",
      "postal_code": "66500",
      "siren": "410865356",
      "siret": "0",
      "status": "G",
      "store_name": "Boulangerie la Justinette",
      "street": "rue Jean Jaures",
      "street_number": 10,
      "turnover": 310000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CADOLIVE",
      "client_creation_date": "10-11-2005",
      "closing_days_ids": [],
      "datlinq_code": 960268,
      "email": null,
      "id": 16683,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "bertochini",
      "phone_number": "000-000",
      "postal_code": "13950",
      "siren": "487530628",
      "siret": "48753062800022",
      "status": "P",
      "store_name": "Boulangerie Au Coin Provencal",
      "street": "Rue Du Village",
      "street_number": 12,
      "turnover": 139000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COLOMIERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960282,
      "email": null,
      "id": 16692,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013236252110",
      "location_areas_ids": [],
      "owner_name": "PONS",
      "phone_number": "+33 561783603",
      "postal_code": "31770",
      "siren": "413955055",
      "siret": "41395505500046",
      "status": "G",
      "store_name": "Boulangerie La Fougasse",
      "street": "rue d Auch",
      "street_number": 2,
      "turnover": 1431661,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ESPIRA DE L AGLY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960288,
      "email": null,
      "id": 16696,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010004926252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468622017",
      "postal_code": "66600",
      "siren": "507392967",
      "siret": "50739296700018",
      "status": "P",
      "store_name": "Boulangerie de l'Agly",
      "street": "rue du 4 Septembre",
      "street_number": 28,
      "turnover": 192000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BRISSAC LOIRE AUBANCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960301,
      "email": null,
      "id": 16704,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241912908",
      "postal_code": "49320",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie de l'Aubance",
      "street": "place des Freres de Montgolfier",
      "street_number": 4,
      "turnover": 320000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATILLON SUR CHALARONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960302,
      "email": null,
      "id": 16705,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467818563",
      "postal_code": "01400",
      "siren": "494262587",
      "siret": "49426258700012",
      "status": "P",
      "store_name": "Boulangerie aux Plaisirs Gourmands",
      "street": "rue Barrit",
      "street_number": 4,
      "turnover": 80000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA CROIX VALMER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960595,
      "email": null,
      "id": 16715,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010015248252110",
      "location_areas_ids": [],
      "owner_name": "CHRISTOPHE ROUX",
      "phone_number": "+33 494795797",
      "postal_code": "83420",
      "siren": "444892186",
      "siret": "44489218600057",
      "status": "M",
      "store_name": "Boulangerie Odysee Bleue (Roux)",
      "street": "rue Louis Martin",
      "street_number": 159,
      "turnover": 450000,
      "user_id": 451,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JUVISY SUR ORGE",
      "client_creation_date": "25-5-1992",
      "closing_days_ids": [],
      "datlinq_code": 960875,
      "email": null,
      "id": 32789,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1546C001",
      "location_areas_ids": [],
      "owner_name": "LOUATI Helene",
      "phone_number": "01-69217300",
      "postal_code": "91260",
      "siren": "387560873",
      "siret": "38756087300011",
      "status": "P",
      "store_name": "Intermarché Courdim",
      "street": "rue Camille Desmoulins",
      "street_number": 27,
      "turnover": 270600,
      "user_id": 84,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST NICOLAS LES CITEAUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 960895,
      "email": null,
      "id": 16718,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010635252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 380613723",
      "postal_code": "21700",
      "siren": "794623827",
      "siret": "79462382700019",
      "status": "P",
      "store_name": "Boulangerie Remy",
      "street": "route de Citeaux",
      "street_number": 3,
      "turnover": 153000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA ROQUE D ANTHERON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961017,
      "email": null,
      "id": 16720,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-42505184",
      "postal_code": "13640",
      "siren": "349787432",
      "siret": "34978743200021",
      "status": "P",
      "store_name": "Au Peche Mignon",
      "street": "boulevard Adam de Craponne",
      "street_number": 18,
      "turnover": 30000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALLEROY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961199,
      "email": null,
      "id": 16722,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 382462117",
      "postal_code": "54910",
      "siren": "423227610",
      "siret": "42322761000015",
      "status": "P",
      "store_name": "Boulangerie Guilpain au Bon Pain",
      "street": "avenue Charles de Gaulle",
      "street_number": 52,
      "turnover": 200000,
      "user_id": 393,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHABLIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961202,
      "email": null,
      "id": 16723,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010000096252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386421028",
      "postal_code": "89800",
      "siren": "493259964",
      "siret": "49325996400010",
      "status": "G",
      "store_name": "Boulangerie Le Pilier De Chablis",
      "street": "rue du Mal de Lattre de Tassigny",
      "street_number": 6,
      "turnover": 440000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BERGUES",
      "client_creation_date": "2000-01-01",
      "closing_days_ids": [],
      "datlinq_code": 961203,
      "email": null,
      "id": 16724,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Franchois ",
      "phone_number": "+33 328686212",
      "postal_code": "59380",
      "siren": "524110558",
      "siret": "52411055800011",
      "status": "M",
      "store_name": "Boulangerie Franchois",
      "street": "rue Lamartine",
      "street_number": 6,
      "turnover": 420000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "UGINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961210,
      "email": "florian.allais@outlook.fr",
      "id": 258,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "SF023001",
      "location_areas_ids": [],
      "owner_name": "Allais",
      "phone_number": "04-79375760",
      "postal_code": "73400",
      "siren": "452065618",
      "siret": "45206561800012",
      "status": "P",
      "store_name": "Boulangerie La Floraline",
      "street": "avenue Paul Girod",
      "street_number": 40,
      "turnover": 220000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROMANS SUR ISERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961215,
      "email": null,
      "id": 16728,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-75020636",
      "postal_code": "26100",
      "siren": "442272381",
      "siret": "44227238100017",
      "status": "P",
      "store_name": "Boulangerie aux Galets de l'Isere",
      "street": "place Maurice Faure",
      "street_number": 7,
      "turnover": 120000,
      "user_id": 170,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GOBAIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961222,
      "email": null,
      "id": 16731,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 323528057",
      "postal_code": "02410",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie au Bon Pain",
      "street": "rue Lucas de Nehou",
      "street_number": 9,
      "turnover": 180000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURNEFEUILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961224,
      "email": null,
      "id": 16733,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561064906",
      "postal_code": "31170",
      "siren": "379498868",
      "siret": "37949886800023",
      "status": "P",
      "store_name": "Boulangerie le Petit Coquin",
      "street": "rue Gaston Doumergue",
      "street_number": 94,
      "turnover": 248800,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CRAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961227,
      "email": null,
      "id": 16735,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76077207",
      "postal_code": "38210",
      "siren": "451711428",
      "siret": "45171142800016",
      "status": "M",
      "store_name": "Boulangerie Maison Franchini",
      "street": "chemin de Montferrier",
      "street_number": 699,
      "turnover": 825000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLERMONT FERRAND",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961228,
      "email": null,
      "id": 16736,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ROUX",
      "phone_number": "04-73912572",
      "postal_code": "63000",
      "siren": "451323869",
      "siret": "45132386900011",
      "status": "P",
      "store_name": "Boulangerie La Pyramide",
      "street": "rue Ballainvilliers",
      "street_number": 48,
      "turnover": 177000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VENCE",
      "client_creation_date": "2003-10-22",
      "closing_days_ids": [],
      "datlinq_code": 961232,
      "email": null,
      "id": 16740,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93580564",
      "postal_code": "06140",
      "siren": "450656137",
      "siret": "45065613700012",
      "status": "P",
      "store_name": "Boulangerie Aux Saveurs Retrouvees",
      "street": "avenue Marechal Foch",
      "street_number": null,
      "turnover": 170000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST VICTORET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961233,
      "email": null,
      "id": 16741,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-42104302",
      "postal_code": "13730",
      "siren": "441207883",
      "siret": "44120788300014",
      "status": "M",
      "store_name": "Boulangerie Maitre Crousti",
      "street": "avenue Jacque Prevert",
      "street_number": null,
      "turnover": 513000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAMPIGNY SUR MARNE",
      "client_creation_date": "2012",
      "closing_days_ids": [],
      "datlinq_code": 961239,
      "email": null,
      "id": 16744,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0266C001",
      "location_areas_ids": [],
      "owner_name": "Hartoun",
      "phone_number": "01-45160056",
      "postal_code": "94500",
      "siren": "450800644",
      "siret": "45080064400012",
      "status": "G",
      "store_name": "Boulangerie La Rose Des Sables",
      "street": "Place rodin",
      "street_number": 2,
      "turnover": 420000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUMES DE VENISE",
      "client_creation_date": "19-7-2005",
      "closing_days_ids": [],
      "datlinq_code": 961251,
      "email": null,
      "id": 16754,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "bessac",
      "phone_number": "09-60061155",
      "postal_code": "84190",
      "siren": "343101457",
      "siret": "34310145700038",
      "status": "P",
      "store_name": "Boulangerie Bessac",
      "street": "avenue Raspail",
      "street_number": null,
      "turnover": 218000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PLATS",
      "client_creation_date": "2005-01-01",
      "closing_days_ids": [],
      "datlinq_code": 961255,
      "email": null,
      "id": 16756,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 475066818",
      "postal_code": "07300",
      "siren": "394789382",
      "siret": "39478938200022",
      "status": "P",
      "store_name": "Boulangerie Bruniere",
      "street": "le Village",
      "street_number": null,
      "turnover": 130000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GERGY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961256,
      "email": null,
      "id": 16757,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 385916198",
      "postal_code": "71590",
      "siren": "821232899",
      "siret": "82123289900012",
      "status": "P",
      "store_name": "Boulanger Secret des Pains",
      "street": "rue Louis Loranchet",
      "street_number": 2,
      "turnover": 150000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PERPIGNAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961257,
      "email": null,
      "id": 16758,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005959252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468347554",
      "postal_code": "66000",
      "siren": "801868845",
      "siret": "80186884500026",
      "status": "M",
      "store_name": "Boulangerie Au Levain D Helios Les Pains D",
      "street": "boulevard Georges Clemenceau",
      "street_number": 21,
      "turnover": 200000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PLOUMILLIAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 880362,
      "email": null,
      "id": 6880,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "23305001",
      "location_areas_ids": [],
      "owner_name": "ROLLAND DAVID",
      "phone_number": "02-96354438",
      "postal_code": "22300",
      "siren": "442917662",
      "siret": "44291766200011",
      "status": "P",
      "store_name": "Boulangerie au Pain Plie",
      "street": "rue Croix Oges",
      "street_number": 6,
      "turnover": 272854,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LABOURSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961265,
      "email": null,
      "id": 16765,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011825252110",
      "location_areas_ids": [],
      "owner_name": "BIGET",
      "phone_number": "+33 321012773",
      "postal_code": "62113",
      "siren": "492858980",
      "siret": "49285898000021",
      "status": "P",
      "store_name": "Boulangerie La Bourse Aux Pains",
      "street": "rue Achille Larue",
      "street_number": 14,
      "turnover": 140000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLECHENEVE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961273,
      "email": null,
      "id": 16768,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-74701586",
      "postal_code": "69770",
      "siren": "380799494",
      "siret": "38079949400022",
      "status": "P",
      "store_name": "Lyonnaise de Boulangerie Gastronomique",
      "street": "parc d Activites",
      "street_number": null,
      "turnover": 17000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CARCASSONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961275,
      "email": null,
      "id": 16770,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468252701",
      "postal_code": "11000",
      "siren": "424358141",
      "siret": "42435814100010",
      "status": "M",
      "store_name": "Boulangerie Bimas",
      "street": "avenue Arthur Mullot",
      "street_number": 7,
      "turnover": 309000,
      "user_id": 440,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST SERNIN SUR RANCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961277,
      "email": null,
      "id": 16772,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "AMALRIC MARIE FRANCOISE",
      "phone_number": "+33 565996006",
      "postal_code": "12380",
      "siren": "414209742",
      "siret": "41420974200017",
      "status": "M",
      "store_name": "Boulangerie Maison Nespoulous",
      "street": "place du Fort",
      "street_number": null,
      "turnover": 362000,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST PORQUIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961292,
      "email": null,
      "id": 16778,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010030926252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 563687575",
      "postal_code": "82700",
      "siren": "352996383",
      "siret": "35299638300035",
      "status": "M",
      "store_name": "Boulangerie Chafi Nordine",
      "street": "Route départementale 813",
      "street_number": null,
      "turnover": 290000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SALINDRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961297,
      "email": null,
      "id": 16782,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466856178",
      "postal_code": "30340",
      "siren": "402390744",
      "siret": "40239074400017",
      "status": "P",
      "store_name": "Patisserie Galia",
      "street": "rue Henri Merle",
      "street_number": 79,
      "turnover": 100000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COMBS LA VILLE",
      "client_creation_date": "1-5-2004",
      "closing_days_ids": [],
      "datlinq_code": 961309,
      "email": null,
      "id": 16789,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R6219001",
      "location_areas_ids": [],
      "owner_name": "COURTALON",
      "phone_number": "01-60024725",
      "postal_code": "77380",
      "siren": "453609562",
      "siret": "45360956200013",
      "status": "G",
      "store_name": "Boulangerie la Frangine (Atelier des Pains)",
      "street": "rue Pierre et Marie Curie",
      "street_number": 0,
      "turnover": 456000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NIORT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961312,
      "email": null,
      "id": 16791,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "22109001",
      "location_areas_ids": [],
      "owner_name": "CASAJOUX",
      "phone_number": "05-59243783",
      "postal_code": "79000",
      "siren": "504122151",
      "siret": "50412215100013",
      "status": "M",
      "store_name": "Boulangerie La Farandole Des Pains",
      "street": "rue Vaumorin",
      "street_number": 2,
      "turnover": 680000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "L ISLE SUR LA SORGUE",
      "client_creation_date": "7-12-1998",
      "closing_days_ids": [],
      "datlinq_code": 961343,
      "email": null,
      "id": 16814,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Tudury eric",
      "phone_number": "04-90380371",
      "postal_code": "84800",
      "siren": "344885504",
      "siret": "34488550400037",
      "status": "P",
      "store_name": "Boulangerie Le Petit Palais",
      "street": "route de Petit Palais",
      "street_number": 353,
      "turnover": 110000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PACY SUR EURE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961354,
      "email": null,
      "id": 16822,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232360207",
      "postal_code": "27120",
      "siren": "482809134",
      "siret": "48280913400018",
      "status": "M",
      "store_name": "Boulangerie Ballay",
      "street": "rue Edouard Isambard",
      "street_number": 79,
      "turnover": 550000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ORAISON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961357,
      "email": null,
      "id": 16824,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92786294",
      "postal_code": "04700",
      "siren": "419763933",
      "siret": "41976393300019",
      "status": "P",
      "store_name": "Boulangerie Kyrilis Olivier",
      "street": "place Clement Plane",
      "street_number": null,
      "turnover": 90000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROSULT",
      "client_creation_date": "2006-02-23",
      "closing_days_ids": [],
      "datlinq_code": 961359,
      "email": null,
      "id": 16826,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010027991252110",
      "location_areas_ids": [],
      "owner_name": "VERMEILLE",
      "phone_number": "+33 327355702",
      "postal_code": "59230",
      "siren": "817519242",
      "siret": "81751924200017",
      "status": "M",
      "store_name": "Le Fournil de Rosult",
      "street": "rue de l Adjudant Dufour",
      "street_number": 45,
      "turnover": 260000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST ANTHEME",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961378,
      "email": null,
      "id": 16841,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "SL001001",
      "location_areas_ids": [],
      "owner_name": "SBEGHEN",
      "phone_number": "04-73954068",
      "postal_code": "63660",
      "siren": "431528181",
      "siret": "43152818100024",
      "status": "M",
      "store_name": "Boulangerie Sbeghen",
      "street": "place de l Aubepin",
      "street_number": null,
      "turnover": 350000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961382,
      "email": null,
      "id": 16845,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91051989",
      "postal_code": "13013",
      "siren": "489816843",
      "siret": "48981684300028",
      "status": "M",
      "store_name": "Boulangerie Frigoli",
      "street": "rue Albert Einstein",
      "street_number": 305,
      "turnover": 602000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FEURS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961394,
      "email": null,
      "id": 16854,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-77261011",
      "postal_code": "42110",
      "siren": "381919315",
      "siret": "38191931500030",
      "status": "P",
      "store_name": "Boulangerie Levrat Philippe",
      "street": "avenue Jean Jaures",
      "street_number": 16,
      "turnover": 200000,
      "user_id": 62,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST ROMAIN DE COLBOSC",
      "client_creation_date": "2006-09-18",
      "closing_days_ids": [],
      "datlinq_code": 961396,
      "email": null,
      "id": 16855,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235205276",
      "postal_code": "76430",
      "siren": "434307872",
      "siret": null,
      "status": "G",
      "store_name": "Boulangerie Lucas",
      "street": "place Theodule Benoist",
      "street_number": 18,
      "turnover": 750000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA PORTE DU DER",
      "client_creation_date": "2006-11-22",
      "closing_days_ids": [],
      "datlinq_code": 961402,
      "email": null,
      "id": 16859,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Monteleon",
      "phone_number": "+33 325042159",
      "postal_code": "52220",
      "siren": "492908793",
      "siret": "49290879300010",
      "status": "P",
      "store_name": "Boulangerie Monteleone",
      "street": "rue de l Isle",
      "street_number": 4,
      "turnover": 350000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961404,
      "email": null,
      "id": 16860,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010031646252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235264033",
      "postal_code": "76600",
      "siren": "809997034",
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Tiphaigne",
      "street": "rue de la Vallee",
      "street_number": 110,
      "turnover": 180000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DANNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961409,
      "email": null,
      "id": 16865,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010029254252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321327100",
      "postal_code": "62187",
      "siren": "493540991",
      "siret": "49354099100012",
      "status": "M",
      "store_name": "Boulangerie Mangard",
      "street": "rue du Stade",
      "street_number": 22,
      "turnover": 500000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURNONSEC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961417,
      "email": null,
      "id": 16873,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467699384",
      "postal_code": "34660",
      "siren": "492339908",
      "siret": "49233990800013",
      "status": "P",
      "store_name": "Boulangerie Le Petrin De Steph Anne",
      "street": "rue de la Cave Cooperative",
      "street_number": 10,
      "turnover": 192000,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LEVIGNAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961418,
      "email": null,
      "id": 16874,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010008425252110",
      "location_areas_ids": [],
      "owner_name": "HOLTZ",
      "phone_number": "+33 561857581",
      "postal_code": "31530",
      "siren": "478876253",
      "siret": "47887625300020",
      "status": "P",
      "store_name": "Boulangerie Holtz",
      "street": "avenue de la Republique",
      "street_number": 50,
      "turnover": 306000,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TERGNIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961426,
      "email": null,
      "id": 16880,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "FRANCOIS JEROME",
      "phone_number": "+33 323570216",
      "postal_code": "02700",
      "siren": "433251972",
      "siret": "43325197200025",
      "status": "P",
      "store_name": "Boulangerie Francois",
      "street": "boulevard Gambetta",
      "street_number": 14,
      "turnover": 150000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JULIEN EN BORN",
      "client_creation_date": "2007-08-30",
      "closing_days_ids": [],
      "datlinq_code": 961441,
      "email": null,
      "id": 16892,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RP565001",
      "location_areas_ids": [],
      "owner_name": "PAREAU",
      "phone_number": "05-58428019",
      "postal_code": "40170",
      "siren": "499996049",
      "siret": "49999604900023",
      "status": "M",
      "store_name": "Boulangerie Pareau Regis",
      "street": "Route des lacs",
      "street_number": null,
      "turnover": 264910,
      "user_id": 210,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOUARGAT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 880493,
      "email": null,
      "id": 6995,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-96431380",
      "postal_code": "22540",
      "siren": "432323806",
      "siret": "43232380600013",
      "status": "P",
      "store_name": "Boulangerie Scaviner",
      "street": "avenue des Prunus",
      "street_number": 16,
      "turnover": 270000,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CONDE SUR L ESCAUT",
      "client_creation_date": "2007-10-01",
      "closing_days_ids": [],
      "datlinq_code": 961443,
      "email": null,
      "id": 16893,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SANTRAINE",
      "phone_number": "+33 327401052",
      "postal_code": "59163",
      "siren": "500630538",
      "siret": "50063053800014",
      "status": "P",
      "store_name": "Boulangerie Santraine",
      "street": "rue Gambetta",
      "street_number": 32,
      "turnover": 150000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST SEVER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961444,
      "email": null,
      "id": 16894,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "laborde",
      "phone_number": "05-58765335",
      "postal_code": "40500",
      "siren": "500798509",
      "siret": "50079850900013",
      "status": "P",
      "store_name": "Boulangerie la Rose des Sables",
      "street": "zone Artisanale Escales",
      "street_number": null,
      "turnover": 400000,
      "user_id": 211,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STRAZEELE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961447,
      "email": null,
      "id": 16897,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328435606",
      "postal_code": "59270",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie au Pain à l'Ancienne",
      "street": "Route d'Hazebrouck",
      "street_number": 26,
      "turnover": 110000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PORTES",
      "client_creation_date": "2012-01-01",
      "closing_days_ids": [],
      "datlinq_code": 961456,
      "email": null,
      "id": 16901,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010029217252110",
      "location_areas_ids": [],
      "owner_name": "Argaud",
      "phone_number": "+33 609613690",
      "postal_code": "30530",
      "siren": "422062075",
      "siret": "42206207500029",
      "status": "M",
      "store_name": "Boulangerie la Paillasse Cevenole (Argaud)",
      "street": "rue de la Mairie",
      "street_number": 7,
      "turnover": 125000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA SENTINELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961463,
      "email": null,
      "id": 16906,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 327464131",
      "postal_code": "59174",
      "siren": "504287483",
      "siret": "50428748300011",
      "status": "M",
      "store_name": "Boulangerie Boutoille",
      "street": "rue Roger Salengro",
      "street_number": 71,
      "turnover": 280000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "POISSY",
      "client_creation_date": "1-1-2008",
      "closing_days_ids": [],
      "datlinq_code": 961468,
      "email": null,
      "id": 16909,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0418F001",
      "location_areas_ids": [],
      "owner_name": "CHEVRIEUX",
      "phone_number": "01-30740518",
      "postal_code": "78300",
      "siren": "814256020",
      "siret": "48384608500015",
      "status": "G",
      "store_name": "Boulangerie au Pere Petrin",
      "street": "boulevard Devaux",
      "street_number": 4,
      "turnover": 700000,
      "user_id": 96,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MELUN",
      "client_creation_date": "1-12-2006",
      "closing_days_ids": [],
      "datlinq_code": 961478,
      "email": null,
      "id": 16919,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ZITRINI",
      "phone_number": "01-64520834",
      "postal_code": "77000",
      "siren": "493440481",
      "siret": "49344048100015",
      "status": "P",
      "store_name": "Boulangerie le Cygne Blanc",
      "street": "place Saint Jean",
      "street_number": 23,
      "turnover": 280000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GERMAIN DU PUCH",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961488,
      "email": null,
      "id": 16926,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-57240056",
      "postal_code": "33750",
      "siren": "500682984",
      "siret": "50068298400017",
      "status": "P",
      "store_name": "Boulangerie Revidat",
      "street": "route de Creon",
      "street_number": 10,
      "turnover": 300000,
      "user_id": 202,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "2008-10-01",
      "closing_days_ids": [],
      "datlinq_code": 961490,
      "email": null,
      "id": 16928,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DANJOUX",
      "phone_number": "04-93891213",
      "postal_code": "06300",
      "siren": "508806320",
      "siret": "50880632000018",
      "status": "P",
      "store_name": "Boulangerie Danjoux",
      "street": "rue Monseigneur Alfred Daumas",
      "street_number": 42,
      "turnover": 270000,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAILLAGOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961493,
      "email": null,
      "id": 16931,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468041007",
      "postal_code": "66800",
      "siren": "410391601",
      "siret": "41039160100029",
      "status": "P",
      "store_name": "Boulangerie Ribas Joseph",
      "street": "rue des Ceretes",
      "street_number": 3,
      "turnover": 150000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALES",
      "client_creation_date": "2009-01-01",
      "closing_days_ids": [],
      "datlinq_code": 961505,
      "email": "alespainauburtin@hotmail.fr",
      "id": 16942,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010004437252110",
      "location_areas_ids": [],
      "owner_name": "auburtin",
      "phone_number": "+33 466867170",
      "postal_code": "30100",
      "siren": "509552378",
      "siret": "50955237800010",
      "status": "G",
      "store_name": "Boulangerie Ales Pain (Auburtin)",
      "street": "Avenue Jean Perrin",
      "street_number": 170,
      "turnover": 650000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAROST",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961508,
      "email": null,
      "id": 16944,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R6976001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-48262717",
      "postal_code": "18290",
      "siren": "493703268",
      "siret": "49370326800018",
      "status": "M",
      "store_name": "Boulangerie Aguilar",
      "street": "Grande Rue",
      "street_number": 40,
      "turnover": 250000,
      "user_id": 52,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAMPIGNY SUR MARNE",
      "client_creation_date": "2003",
      "closing_days_ids": [],
      "datlinq_code": 961509,
      "email": null,
      "id": 16945,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R2117001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "94500",
      "siren": "434885703",
      "siret": "43488570300018",
      "status": "M",
      "store_name": "Boulangerie Le Coin Des Gourmands",
      "street": "avenue Elisa Mercoeur",
      "street_number": 2,
      "turnover": 300000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAVAILLON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961510,
      "email": null,
      "id": 16946,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-90780751",
      "postal_code": "84300",
      "siren": "479252736",
      "siret": "47925273600018",
      "status": "M",
      "store_name": "Boulangerie l Etoile du Delice",
      "street": "place Castil Blaze",
      "street_number": 57,
      "turnover": 239000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARGENTEUIL",
      "client_creation_date": "1-1-2012",
      "closing_days_ids": [],
      "datlinq_code": 961513,
      "email": null,
      "id": 16948,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1632D001",
      "location_areas_ids": [],
      "owner_name": "BEN KHALIFAT",
      "phone_number": "01-34103896",
      "postal_code": "95100",
      "siren": "539607721",
      "siret": "53960772100013",
      "status": "P",
      "store_name": "Boulangerie l'Epi Dore",
      "street": "boulevard Jean Allemane",
      "street_number": 116,
      "turnover": 150000,
      "user_id": 79,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JUVISY SUR ORGE",
      "client_creation_date": "2-5-2005",
      "closing_days_ids": [],
      "datlinq_code": 961518,
      "email": null,
      "id": 16950,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0302E001",
      "location_areas_ids": [],
      "owner_name": "SABRI",
      "phone_number": "01-69214809",
      "postal_code": "91260",
      "siren": "482080603",
      "siret": "48208060300012",
      "status": "M",
      "store_name": "Boulangerie Sabri",
      "street": "avenue Gabriel Peri",
      "street_number": 72,
      "turnover": 342400,
      "user_id": 84,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PANTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961521,
      "email": null,
      "id": 16952,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "Z0146001",
      "location_areas_ids": [],
      "owner_name": "SELLAMI KARIMA",
      "phone_number": "000-000",
      "postal_code": "93500",
      "siren": "511581670",
      "siret": "51158167000011",
      "status": "P",
      "store_name": "Boulangerie Guyot",
      "street": "rue Mehul",
      "street_number": 32,
      "turnover": 180000,
      "user_id": 74,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CHRISTOL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961522,
      "email": null,
      "id": 16953,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "RAZON",
      "phone_number": "+33 467544526",
      "postal_code": "34400",
      "siren": "503680621",
      "siret": "50368062100011",
      "status": "P",
      "store_name": "Boulangerie Razon Freres",
      "street": "rue de la Barbe",
      "street_number": 3,
      "turnover": 130000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLENEUVE LE ROI",
      "client_creation_date": "1-1-2011",
      "closing_days_ids": [],
      "datlinq_code": 961523,
      "email": null,
      "id": 16954,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "FERREIRA",
      "phone_number": "01-49614019",
      "postal_code": "94290",
      "siren": "530751783",
      "siret": "53075178300016",
      "status": "P",
      "store_name": "Boulangerie Petrin d'Antan",
      "street": "avenue de la Republique",
      "street_number": 47,
      "turnover": 375000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MAUR DES FOSSES",
      "client_creation_date": "2001",
      "closing_days_ids": [],
      "datlinq_code": 961524,
      "email": null,
      "id": 16955,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48852606",
      "postal_code": "94100",
      "siren": "480707603",
      "siret": "48070760300027",
      "status": "G",
      "store_name": "Boulangerie Luna Traiteur",
      "street": "rue Ledru Rollin",
      "street_number": 127,
      "turnover": 13879000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LONGVIC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961527,
      "email": null,
      "id": 50449,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Zanneta",
      "phone_number": "+33 380660340",
      "postal_code": "21600",
      "siren": "524520517",
      "siret": "52452051700029",
      "status": "G",
      "store_name": "Boulangerie Maison Roger",
      "street": "rue du Professeur Louis Neel",
      "street_number": 12,
      "turnover": 7615290,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FORCALQUIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961537,
      "email": null,
      "id": 16961,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92745121",
      "postal_code": "04300",
      "siren": "509344578",
      "siret": "50934457800018",
      "status": "P",
      "store_name": "Boulangerie Une Fournee En Provence",
      "street": "place Martial Sicard",
      "street_number": 11,
      "turnover": 173000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MOYENMOUTIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961539,
      "email": null,
      "id": 16963,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "66211001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-29415411",
      "postal_code": "88420",
      "siren": "492018338",
      "siret": "49201833800011",
      "status": "M",
      "store_name": "Boulangerie Levy",
      "street": "rue de l Hotel de Ville",
      "street_number": 8,
      "turnover": 200000,
      "user_id": 109,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAUZET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961541,
      "email": null,
      "id": 16964,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-75467149",
      "postal_code": "26740",
      "siren": "447553231",
      "siret": "44755323100021",
      "status": "P",
      "store_name": "Boulangerie Garrione",
      "street": "chemin de Ronde",
      "street_number": 7,
      "turnover": 186000,
      "user_id": 170,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PONCHEL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961560,
      "email": null,
      "id": 16977,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010001604252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321411500",
      "postal_code": "62390",
      "siren": "432690063",
      "siret": "43269006300016",
      "status": "G",
      "store_name": "Boulangerie Lagache",
      "street": "Route de berck",
      "street_number": 3,
      "turnover": 400000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MANTES LA JOLIE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961590,
      "email": "guerridazine@Hotmail.com",
      "id": 17001,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1921F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-34769955",
      "postal_code": "78200",
      "siren": "511832347",
      "siret": "51183234700013",
      "status": "P",
      "store_name": "Boulangerie Guerrida",
      "street": "rue Jean Baptiste Corot",
      "street_number": 18,
      "turnover": 195000,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MELLECEY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961601,
      "email": null,
      "id": 17007,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012552252110",
      "location_areas_ids": [],
      "owner_name": "BUATOIS",
      "phone_number": "+33 385980417",
      "postal_code": "71640",
      "siren": "450378484",
      "siret": "45037848400015",
      "status": "M",
      "store_name": "Le Fournil de Mellecey",
      "street": "Route de la Vallée",
      "street_number": 616,
      "turnover": 150000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALLAUCH",
      "client_creation_date": "24-8-1988",
      "closing_days_ids": [],
      "datlinq_code": 961603,
      "email": null,
      "id": 17009,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91071348",
      "postal_code": "13190",
      "siren": "345358022",
      "siret": "34535802200019",
      "status": "P",
      "store_name": "Boulangerie Perugini",
      "street": "rue Pierre Queirel",
      "street_number": 20,
      "turnover": 10000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COUTANCES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961644,
      "email": null,
      "id": 17033,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233450408",
      "postal_code": "50200",
      "siren": "351441886",
      "siret": "35144188600014",
      "status": "M",
      "store_name": "Boulangerie Lemonnier",
      "street": "rue Geoffroy de Montbray",
      "street_number": 5,
      "turnover": 290000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FIENNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961697,
      "email": null,
      "id": 17063,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011661252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 960128376",
      "postal_code": "62132",
      "siren": "453592057",
      "siret": "45359205700013",
      "status": "M",
      "store_name": "Boulangerie Ivart",
      "street": "rue de l Eglise",
      "street_number": 242,
      "turnover": 480000,
      "user_id": 422,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TARASCON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 961705,
      "email": null,
      "id": 2314,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "13150",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Les Mille Et Un Delices",
      "street": "rue Neuve",
      "street_number": 1,
      "turnover": null,
      "user_id": 177,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962062,
      "email": "lyonpartdieu@classcroute.com",
      "id": 41513,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-37430101",
      "postal_code": "69003",
      "siren": "499530681",
      "siret": "49953068100018",
      "status": "EMPTY_STATUS",
      "store_name": "Class'croute",
      "street": "rue Lavoisier",
      "street_number": 12,
      "turnover": 0,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HYERES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962260,
      "email": null,
      "id": 32797,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "V0404001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-94353592",
      "postal_code": "83400",
      "siren": "480206895",
      "siret": "48020689500017",
      "status": "P",
      "store_name": "Patisserie Pblonna",
      "street": "PLACE CLEMENCEAU",
      "street_number": 1,
      "turnover": 350000,
      "user_id": 188,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-1-2014",
      "closing_days_ids": [],
      "datlinq_code": 962402,
      "email": null,
      "id": 17097,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Achack",
      "phone_number": "000-000",
      "postal_code": "13011",
      "siren": "383272994",
      "siret": "38327299400047",
      "status": "P",
      "store_name": "Boulangerie Achchak",
      "street": "boulevard Saint Marcel",
      "street_number": 165,
      "turnover": 120000,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962598,
      "email": null,
      "id": 17109,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43723953",
      "postal_code": "75012",
      "siren": "501176275",
      "siret": "50117627500011",
      "status": "M",
      "store_name": "Boulangerie Aux Delices De Paris",
      "street": "rue de Reuilly",
      "street_number": 33,
      "turnover": 484900,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURNEFEUILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962655,
      "email": null,
      "id": 17115,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010004627252110",
      "location_areas_ids": [],
      "owner_name": "MATHEU",
      "phone_number": "+33 561865683",
      "postal_code": "31170",
      "siren": "501343412",
      "siret": "50134341200018",
      "status": "M",
      "store_name": "Boulangerie le Colibri",
      "street": "boulevard Vincent Auriol",
      "street_number": 49,
      "turnover": 344160,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURCOING",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962791,
      "email": null,
      "id": 17123,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320260028",
      "postal_code": "59200",
      "siren": "314187048",
      "siret": "31418704800132",
      "status": "P",
      "store_name": "Boulangerie Tout Chaud",
      "street": "rue Saint Jacques",
      "street_number": 2,
      "turnover": 65000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JEAN CAP FERRAT",
      "client_creation_date": "2009-06-01",
      "closing_days_ids": [],
      "datlinq_code": 962838,
      "email": null,
      "id": 17141,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BONFIGLI",
      "phone_number": "04-93760575",
      "postal_code": "06230",
      "siren": "512419730",
      "siret": "51241973000019",
      "status": "P",
      "store_name": "Boulangerie Banette Du Port",
      "street": "avenue Jean Mermoz",
      "street_number": 5,
      "turnover": 350000,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAUJON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962928,
      "email": null,
      "id": 17192,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46224068",
      "postal_code": "17600",
      "siren": "443204862",
      "siret": "44320486200033",
      "status": "P",
      "store_name": "Boulangerie Artisanale",
      "street": "rue Thiers",
      "street_number": 71,
      "turnover": 180000,
      "user_id": 152,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST DOULCHARD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962930,
      "email": null,
      "id": 17193,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-48242651",
      "postal_code": "18230",
      "siren": null,
      "siret": null,
      "status": "G",
      "store_name": "Boulangerie Pouillard",
      "street": "rue du Paradis",
      "street_number": 24,
      "turnover": 1000000,
      "user_id": 51,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LONGECOURT EN PLAINE",
      "client_creation_date": "2009-06-01",
      "closing_days_ids": [],
      "datlinq_code": 962937,
      "email": null,
      "id": 17198,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Perrussot",
      "phone_number": null,
      "postal_code": "21110",
      "siren": "513403204",
      "siret": "51340320400011",
      "status": "M",
      "store_name": "Boulangerie La Halte Gourmande",
      "street": "route de Dijon",
      "street_number": 39,
      "turnover": 495000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JEAN DE LINIERES",
      "client_creation_date": "2007-10-03",
      "closing_days_ids": [],
      "datlinq_code": 962945,
      "email": null,
      "id": 2332,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010009779252110",
      "location_areas_ids": [],
      "owner_name": "MOURGUES pierre",
      "phone_number": "+33 964066655",
      "postal_code": "49070",
      "siren": "500273461",
      "siret": "50027346100011",
      "status": "P",
      "store_name": "Le Fournee de Pierre",
      "street": "place des Plantagenets",
      "street_number": 15,
      "turnover": 191600,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LANNION",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 962967,
      "email": null,
      "id": 17201,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MANSUIS PHILIPPE",
      "phone_number": "06-75257845",
      "postal_code": "22300",
      "siren": "314796152",
      "siret": "31479615200069",
      "status": "P",
      "store_name": "Boulangerie au Pain d'Antan",
      "street": "route de Perros Guirec",
      "street_number": null,
      "turnover": 200000,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DREUX",
      "client_creation_date": "2009-03-05",
      "closing_days_ids": [],
      "datlinq_code": 962994,
      "email": null,
      "id": 17223,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ACHAFI",
      "phone_number": "+33 237502814",
      "postal_code": "28100",
      "siren": "510816218",
      "siret": "51081621800018",
      "status": "M",
      "store_name": "Boulangerie Pâtisserie Melissa",
      "street": "Avenue du General Marceau",
      "street_number": 25,
      "turnover": 256600,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PONTGOUIN",
      "client_creation_date": "2009-04-16",
      "closing_days_ids": [],
      "datlinq_code": 962995,
      "email": null,
      "id": 17224,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SABLONS",
      "phone_number": "+33 237374135",
      "postal_code": "28190",
      "siren": "350348173",
      "siret": "35034817300039",
      "status": "P",
      "store_name": "Boulangerie Sablons",
      "street": "rue du Pont de l Aumone",
      "street_number": 9,
      "turnover": 130000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTASTRUC LA CONSEILLERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963027,
      "email": null,
      "id": 17246,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010009899252110",
      "location_areas_ids": [],
      "owner_name": "THIBAULT JEROME",
      "phone_number": "+33 561842595",
      "postal_code": "31380",
      "siren": "511294449",
      "siret": "51129444900018",
      "status": "M",
      "store_name": "Boulangerie Thibault",
      "street": "avenue du General Castelnau",
      "street_number": 76,
      "turnover": 540000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ORGERES",
      "client_creation_date": "2013-05-22",
      "closing_days_ids": [],
      "datlinq_code": 963090,
      "email": null,
      "id": 17287,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "PROD'HOMMES",
      "phone_number": "02-99054956",
      "postal_code": "35230",
      "siren": "511176604",
      "siret": "51117660400011",
      "status": "P",
      "store_name": "Boulangerie aux Saveurs d'Antan",
      "street": "rue de la Mairie",
      "street_number": 2,
      "turnover": 248560,
      "user_id": 148,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AIGURANDE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963121,
      "email": null,
      "id": 17297,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "36140001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-54063151",
      "postal_code": "36140",
      "siren": "494818131",
      "siret": "49481813100026",
      "status": "P",
      "store_name": "Boulangerie Banette Ocean Et Llilian",
      "street": "place du Champ de Foire",
      "street_number": null,
      "turnover": 418000,
      "user_id": 52,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARTANNES SUR INDRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963126,
      "email": null,
      "id": 17300,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0601E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-47268182",
      "postal_code": "37260",
      "siren": "788775658",
      "siret": "51205619300018",
      "status": "M",
      "store_name": "Boulangerie Horde",
      "street": "rue du Commerce",
      "street_number": 3,
      "turnover": 180000,
      "user_id": 140,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST DENIS",
      "client_creation_date": "1-4-2008",
      "closing_days_ids": [],
      "datlinq_code": 963193,
      "email": null,
      "id": 2337,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42432355",
      "postal_code": "93200",
      "siren": "508617677",
      "siret": "50861767700010",
      "status": "EMPTY_STATUS",
      "store_name": "Sakura",
      "street": "place des Pianos",
      "street_number": 4,
      "turnover": 170000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HAZEBROUCK",
      "client_creation_date": "2016-01-01",
      "closing_days_ids": [],
      "datlinq_code": 963224,
      "email": null,
      "id": 41515,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016608252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328418202",
      "postal_code": "59190",
      "siren": "804225431",
      "siret": "80422543100019",
      "status": "M",
      "store_name": "Patisserie Prum",
      "street": "place du General de Gaulle",
      "street_number": 25,
      "turnover": 300000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MARTIN DE FUGERES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963237,
      "email": null,
      "id": 17329,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "43152001",
      "location_areas_ids": [],
      "owner_name": "Elodie FRADET",
      "phone_number": "06-64419928",
      "postal_code": "43150",
      "siren": "511462376",
      "siret": "51146237600019",
      "status": "M",
      "store_name": "Boulangerie Chez Lilian et Elodie",
      "street": "le Bourg",
      "street_number": null,
      "turnover": 110000,
      "user_id": 54,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANCENIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963239,
      "email": null,
      "id": 17331,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31321001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40830126",
      "postal_code": "44150",
      "siren": "512890328",
      "siret": "51289032800028",
      "status": "G",
      "store_name": "Boulangerie O Saveurs d'Ancenis",
      "street": "rue Pierre de Coubertin",
      "street_number": 37,
      "turnover": 600000,
      "user_id": 138,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LUDRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963297,
      "email": null,
      "id": 17373,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83256070",
      "postal_code": "54710",
      "siren": "513834804",
      "siret": "51383480400017",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Maison Chone",
      "street": "place Ferri de Ludre",
      "street_number": 118,
      "turnover": null,
      "user_id": 102,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LUDRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963298,
      "email": null,
      "id": 17374,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83258201",
      "postal_code": "54710",
      "siren": "491183588",
      "siret": "49118358800020",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Banette Noaremy",
      "street": "avenue du Bon Cure",
      "street_number": null,
      "turnover": null,
      "user_id": 102,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SOCX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963343,
      "email": null,
      "id": 17380,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328682240",
      "postal_code": "59380",
      "siren": "340171883",
      "siret": "34017188300010",
      "status": "P",
      "store_name": "Boulangerie Quaghebeur",
      "street": "passage Fleuri",
      "street_number": 2,
      "turnover": 180000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE KREMLIN BICETRE",
      "client_creation_date": "1-1-2008",
      "closing_days_ids": [],
      "datlinq_code": 963460,
      "email": null,
      "id": 17387,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R8491001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-46724582",
      "postal_code": "94270",
      "siren": "505103622",
      "siret": "50510362200013",
      "status": "P",
      "store_name": "Boulangerie La Folie Du Pain",
      "street": "avenue Charles Gide",
      "street_number": 25,
      "turnover": 300000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TRIEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963490,
      "email": null,
      "id": 17388,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "PF206001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-82463341",
      "postal_code": "54750",
      "siren": "408729572",
      "siret": "40872957200029",
      "status": "P",
      "store_name": "Boulangerie Calvisi Fabrice",
      "street": "avenue de la Liberation",
      "street_number": 9,
      "turnover": 434,
      "user_id": 108,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SEREMANGE ERZANGE",
      "client_creation_date": "2016-03-01",
      "closing_days_ids": [],
      "datlinq_code": 963503,
      "email": null,
      "id": 17400,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010028105252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 382582922",
      "postal_code": "57290",
      "siren": "818320186",
      "siret": "81832018600021",
      "status": "G",
      "store_name": "Boulangerie NJGM",
      "street": "rue Charles de Gaulle",
      "street_number": 20,
      "turnover": 1000000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLAMECY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963505,
      "email": null,
      "id": 17402,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386271610",
      "postal_code": "58500",
      "siren": "511500043",
      "siret": "51150004300019",
      "status": "P",
      "store_name": "Boulangerie Roy",
      "street": "rue du Petit Marche",
      "street_number": 4,
      "turnover": 150000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BELLEME",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963521,
      "email": null,
      "id": 17416,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233830418",
      "postal_code": "61130",
      "siren": "512303280",
      "siret": "51230328000014",
      "status": "G",
      "store_name": "Boulangerie le Carre Bellemois",
      "street": "place de la Liberte",
      "street_number": null,
      "turnover": 325000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GERMAIN DU CORBEIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963524,
      "email": null,
      "id": 17419,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012389252110",
      "location_areas_ids": [],
      "owner_name": "LEFORT",
      "phone_number": "+33 962120801",
      "postal_code": "61000",
      "siren": "511647497",
      "siret": "51164749700011",
      "status": "G",
      "store_name": "Boulangerie Panis Trad",
      "street": "rue du General Leclerc",
      "street_number": 95,
      "turnover": 643230,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LANNEMEZAN",
      "client_creation_date": "2009-06-01",
      "closing_days_ids": [],
      "datlinq_code": 963544,
      "email": null,
      "id": 17427,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-62402519",
      "postal_code": "65300",
      "siren": "512575846",
      "siret": "51257584600013",
      "status": "P",
      "store_name": "Boulangerie Le Fournil Du Lustou",
      "street": "rue du 8 Mai 1945",
      "street_number": 285,
      "turnover": 633651,
      "user_id": 208,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARTHENAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963593,
      "email": null,
      "id": 17460,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31296001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-49711083",
      "postal_code": "79200",
      "siren": "514093186",
      "siret": "51409318600013",
      "status": "G",
      "store_name": "Boulangerie Le Fournil Des Loges",
      "street": "rue Ludwig Van Beethoven",
      "street_number": 32,
      "turnover": 900000,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PUYLAROQUE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963602,
      "email": null,
      "id": 17465,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010033397252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 563304819",
      "postal_code": "82240",
      "siren": "511158149",
      "siret": "51115814900019",
      "status": "P",
      "store_name": "Boulangerie L'etoile Des Saveurs",
      "street": "lieu dit Les Experts",
      "street_number": null,
      "turnover": 169000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WISSOUS",
      "client_creation_date": "11-3-2009",
      "closing_days_ids": [],
      "datlinq_code": 963683,
      "email": null,
      "id": 17493,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "2536E001",
      "location_areas_ids": [],
      "owner_name": "SALVADOS Sergio",
      "phone_number": "01-69531677",
      "postal_code": "91320",
      "siren": "511008021",
      "siret": "51100802100012",
      "status": "P",
      "store_name": "Boulangerie La Gourmandise Lg",
      "street": "rue Fernand Leger",
      "street_number": 2,
      "turnover": 455300,
      "user_id": 86,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAUTERETS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963706,
      "email": null,
      "id": 17504,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "65110",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Au Peche Mignon",
      "street": "place Marechal Foch",
      "street_number": 2,
      "turnover": null,
      "user_id": 208,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEZONS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963786,
      "email": null,
      "id": 17518,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "Z0286001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-39613319",
      "postal_code": "95870",
      "siren": "510513310",
      "siret": "51051331000019",
      "status": "G",
      "store_name": "Boulangerie Le Fournil de Bezons",
      "street": "rue Jean Jaures",
      "street_number": 124,
      "turnover": 350000,
      "user_id": 80,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHARENTON DU CHER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963804,
      "email": null,
      "id": 17528,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0750D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-48608078",
      "postal_code": "18210",
      "siren": "438862302",
      "siret": "43886230200025",
      "status": "P",
      "store_name": "Boulangerie Reuillard",
      "street": "rue Nationale",
      "street_number": 70,
      "turnover": 200000,
      "user_id": 51,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ENSISHEIM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963819,
      "email": null,
      "id": 46586,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0449G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-89810252",
      "postal_code": "68190",
      "siren": "491606224",
      "siret": "49160622400013",
      "status": "P",
      "store_name": "Patisserie Ruthmann",
      "street": "rue de la 1ere Armee Francaise",
      "street_number": 33,
      "turnover": 280000,
      "user_id": 111,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FABREGUES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963823,
      "email": null,
      "id": 17542,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467852157",
      "postal_code": "34690",
      "siren": "398862870",
      "siret": "39886287000019",
      "status": "M",
      "store_name": "Boulangerie Les Bles Tendres",
      "street": "rue Paul Doumer",
      "street_number": 35,
      "turnover": 215000,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FLEURY SUR ANDELLE",
      "client_creation_date": "2009-03-11",
      "closing_days_ids": [],
      "datlinq_code": 963825,
      "email": null,
      "id": 17544,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012388252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232490181",
      "postal_code": "27380",
      "siren": "438624330",
      "siret": "43862433000025",
      "status": "P",
      "store_name": "Boulangerie Aux Mille Et Une Saveurs",
      "street": "rue Pouyer Quertier",
      "street_number": 84,
      "turnover": 145000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FISMES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 853186,
      "email": null,
      "id": 5040,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326488017",
      "postal_code": "51170",
      "siren": "539838409",
      "siret": "53983840900016",
      "status": "M",
      "store_name": "Boulangerie Bayart",
      "street": "rue Charles Ledru",
      "street_number": 2,
      "turnover": 200000,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963986,
      "email": null,
      "id": 17574,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78240413",
      "postal_code": "69006",
      "siren": "514990837",
      "siret": "51499083700015",
      "status": "P",
      "store_name": "Boulangerie Duranton",
      "street": "petite Rue de la Viabert",
      "street_number": 24,
      "turnover": 230000,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 963993,
      "email": null,
      "id": 17580,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "13F98001",
      "location_areas_ids": [],
      "owner_name": "BENHEBBA Mohamed",
      "phone_number": "04-91913020",
      "postal_code": "13002",
      "siren": "306490756",
      "siret": "30649075600013",
      "status": "P",
      "store_name": "Boulangerie Benhebba Mohamed",
      "street": "rue du Bon Pasteur",
      "street_number": 13,
      "turnover": 220000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "OBERSCHAEFFOLSHEIM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964024,
      "email": null,
      "id": 17600,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-88761774",
      "postal_code": "67203",
      "siren": "798812558",
      "siret": "79881255800020",
      "status": "P",
      "store_name": "Boulangerie Passion Pains",
      "street": "rue du General de Gaulle",
      "street_number": 74,
      "turnover": 250000,
      "user_id": 112,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STE SAVINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964094,
      "email": null,
      "id": 17646,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Gervais",
      "phone_number": "+33 325792469",
      "postal_code": "10300",
      "siren": "422931055",
      "siret": "42293105500012",
      "status": "P",
      "store_name": "Pâtisserie aux Comtes de Champagne",
      "street": "avenue du General Gallieni",
      "street_number": 16,
      "turnover": 57700,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALENCE",
      "client_creation_date": "2005-10-01",
      "closing_days_ids": [],
      "datlinq_code": 964112,
      "email": null,
      "id": 17655,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010031460252110",
      "location_areas_ids": [],
      "owner_name": "CHAPEY Jean Luc",
      "phone_number": "+33 475437635",
      "postal_code": "26000",
      "siren": "422843672",
      "siret": "42284367200029",
      "status": "P",
      "store_name": "Boulangerie Chapey",
      "street": "avenue de Verdun",
      "street_number": 38,
      "turnover": 150000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEMUR SUR TARN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964121,
      "email": null,
      "id": 32801,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013285252110",
      "location_areas_ids": [],
      "owner_name": "??",
      "phone_number": "+33 561351066",
      "postal_code": "31340",
      "siren": "505400416",
      "siret": "50540041600036",
      "status": "G",
      "store_name": "Boulangerie le Pétrin de Villemur",
      "street": "avenue Michel Rocard",
      "street_number": 28,
      "turnover": 510000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PIERREFITTE SUR SEINE",
      "client_creation_date": "1-7-1985",
      "closing_days_ids": [],
      "datlinq_code": 964759,
      "email": null,
      "id": 17685,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1377W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48235592",
      "postal_code": "93380",
      "siren": "800536617",
      "siret": "80053661700015",
      "status": "P",
      "store_name": "Boulangerie Aissaoui",
      "street": "avenue Elisee Reclus",
      "street_number": 221,
      "turnover": 90000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MEUDON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964762,
      "email": null,
      "id": 17687,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "04074001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45341990",
      "postal_code": "92190",
      "siren": "429071525",
      "siret": "42907152500019",
      "status": "P",
      "store_name": "Boulangerie Gie Alain",
      "street": "rue Banes",
      "street_number": 19,
      "turnover": 430000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RAIMBEAUCOURT",
      "client_creation_date": "2006-10-06",
      "closing_days_ids": [],
      "datlinq_code": 964774,
      "email": null,
      "id": 17692,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "PLUCHART",
      "phone_number": "+33 327800887",
      "postal_code": "59283",
      "siren": "492085527",
      "siret": "49208552700017",
      "status": "M",
      "store_name": "Boulangerie Artesienne Des Pains",
      "street": "Rue marechal joffre",
      "street_number": 7,
      "turnover": 190000,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST LYS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964793,
      "email": null,
      "id": 17709,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561769866",
      "postal_code": "31470",
      "siren": "499691947",
      "siret": "49969194700018",
      "status": "M",
      "store_name": "Boulangerie aux Delys",
      "street": "avenue de Toulouse",
      "street_number": 19,
      "turnover": 459754,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAMBERSART",
      "client_creation_date": "2003-10-28",
      "closing_days_ids": [],
      "datlinq_code": 964810,
      "email": null,
      "id": 17723,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BELE CHARLES",
      "phone_number": "+33 320923290",
      "postal_code": "59130",
      "siren": "450487327",
      "siret": "45048732700014",
      "status": "P",
      "store_name": "Boulangerie Bele",
      "street": "avenue Henri Delecaux",
      "street_number": 38,
      "turnover": 350000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ESTREES ST DENIS",
      "client_creation_date": "24-7-2008",
      "closing_days_ids": [],
      "datlinq_code": 964846,
      "email": null,
      "id": 17740,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R8533001",
      "location_areas_ids": [],
      "owner_name": "BRANLANT",
      "phone_number": "03-44413179",
      "postal_code": "60190",
      "siren": "429755804",
      "siret": "42975580400029",
      "status": "G",
      "store_name": "Boulangerie Branlant",
      "street": "rue de la Republique",
      "street_number": 42,
      "turnover": 340000,
      "user_id": 311,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NEUVILLE AUX BOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964884,
      "email": null,
      "id": 17765,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 238910018",
      "postal_code": "45170",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Coint Gerard",
      "street": "rue Dollon",
      "street_number": 21,
      "turnover": 197000,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SOUMOULOU",
      "client_creation_date": "1993-07-01",
      "closing_days_ids": [],
      "datlinq_code": 964895,
      "email": null,
      "id": 17774,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1456D001",
      "location_areas_ids": [],
      "owner_name": "cuyala",
      "phone_number": "05-59046019",
      "postal_code": "64420",
      "siren": "393058193",
      "siret": "39305819300011",
      "status": "P",
      "store_name": "Boulangerie Cuyala",
      "street": "avenue Lasbordes",
      "street_number": 25,
      "turnover": 366969,
      "user_id": 208,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOIS EN ARDRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964932,
      "email": null,
      "id": 17808,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321199920",
      "postal_code": "62610",
      "siren": "499830362",
      "siret": "49983036200012",
      "status": "P",
      "store_name": "Boulangerie du Village",
      "street": "Rue General De Saint Just",
      "street_number": 123,
      "turnover": 150000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TREMBLAY EN FRANCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964959,
      "email": null,
      "id": 17829,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Lefèvre ",
      "phone_number": "01-49639088",
      "postal_code": "93290",
      "siren": "478835648",
      "siret": "47883564800047",
      "status": "P",
      "store_name": "Boulangerie Lefèvre",
      "street": "avenue Roger Salengro",
      "street_number": 68,
      "turnover": 400000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLENEUVE D ASCQ",
      "client_creation_date": "2004-02-17",
      "closing_days_ids": [],
      "datlinq_code": 964976,
      "email": null,
      "id": 17843,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011723252110",
      "location_areas_ids": [],
      "owner_name": "GHILLEBAERT",
      "phone_number": "+33 320568820",
      "postal_code": "59650",
      "siren": "342590767",
      "siret": "34259076700022",
      "status": "G",
      "store_name": "Boulangerie Banette Ghillebaert Philippe",
      "street": "rue du General Leclerc",
      "street_number": 2,
      "turnover": 390000,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GONESSE",
      "client_creation_date": "1-9-2008",
      "closing_days_ids": [],
      "datlinq_code": 964978,
      "email": null,
      "id": 17844,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1760F001",
      "location_areas_ids": [],
      "owner_name": "FRIAA",
      "phone_number": "000-000",
      "postal_code": "95500",
      "siren": "508135712",
      "siret": "50813571200018",
      "status": "P",
      "store_name": "Boulangerie Pâtisserie Gonesse",
      "street": "square des Sports",
      "street_number": 1,
      "turnover": 269942,
      "user_id": 79,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AUBERVILLIERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 964992,
      "email": "erouel.ali@gmail.com",
      "id": 17856,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "14122001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48349656/06117994",
      "postal_code": "93300",
      "siren": "497592766",
      "siret": "49759276600016",
      "status": "M",
      "store_name": "Boulangerie les Saveurs de l'Orient",
      "street": "rue Danielle Casanova",
      "street_number": 126,
      "turnover": 170000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHOISY LE ROI",
      "client_creation_date": "1-1-2004",
      "closing_days_ids": [],
      "datlinq_code": 965065,
      "email": null,
      "id": 17920,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "YAKLEF LACHAAL",
      "phone_number": "01-48535988",
      "postal_code": "94600",
      "siren": "449596980",
      "siret": "44959698000010",
      "status": "P",
      "store_name": "Boulangerie Lachaal",
      "street": "avenue Victor Hugo",
      "street_number": 57,
      "turnover": 280000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MANDE",
      "client_creation_date": "2009",
      "closing_days_ids": [],
      "datlinq_code": 965072,
      "email": null,
      "id": 17925,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R9004001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43653217",
      "postal_code": "94160",
      "siren": "508225166",
      "siret": "50822516600018",
      "status": "M",
      "store_name": "Boulangerie Blavette",
      "street": "avenue Alphand",
      "street_number": 20,
      "turnover": 350000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LIANCOURT",
      "client_creation_date": "2015",
      "closing_days_ids": [],
      "datlinq_code": 965083,
      "email": null,
      "id": 17930,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1653D001",
      "location_areas_ids": [],
      "owner_name": "Corbière et Beranger ",
      "phone_number": "03-44602543",
      "postal_code": "60140",
      "siren": "391969557",
      "siret": "39196955700092",
      "status": "M",
      "store_name": "Boulangerie le Four à Bois",
      "street": "rue Roger Duplessis",
      "street_number": 14,
      "turnover": 730000,
      "user_id": 78,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLETY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965086,
      "email": null,
      "id": 17933,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "AUXENFANTS",
      "phone_number": "+33 321952048",
      "postal_code": "62380",
      "siren": "433120011",
      "siret": "43312001100021",
      "status": "M",
      "store_name": "Boulangerie Auxenfants René",
      "street": "route Nationale",
      "street_number": 57,
      "turnover": 400000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANNEZIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965125,
      "email": "jean-Marc.legrand9@orange.fr",
      "id": 17962,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012003252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321564493",
      "postal_code": "62232",
      "siren": "402239040",
      "siret": "40223904000023",
      "status": "G",
      "store_name": "Boulangerie Au Boulot",
      "street": "rue de la Mairie",
      "street_number": 22,
      "turnover": 310000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BALMA",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965150,
      "email": null,
      "id": 17979,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013217252110",
      "location_areas_ids": [],
      "owner_name": "GUILLOT LAURENT",
      "phone_number": "+33 561240064",
      "postal_code": "31130",
      "siren": "424880391",
      "siret": "42488039100026",
      "status": "G",
      "store_name": "Boulangerie Maison Guillot",
      "street": "avenue Pierre Coupeau",
      "street_number": 2,
      "turnover": 586000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAURAINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965154,
      "email": null,
      "id": 17982,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321235827",
      "postal_code": "62217",
      "siren": "504819392",
      "siret": "50481939200011",
      "status": "P",
      "store_name": "Boulangerie Maleska",
      "street": "avenue Pierre Bolle",
      "street_number": 8,
      "turnover": 250000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WATTEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965170,
      "email": null,
      "id": 17991,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321882367",
      "postal_code": "59143",
      "siren": "433604295",
      "siret": "43360429500017",
      "status": "P",
      "store_name": "Boulangerie Martinez",
      "street": "rue Saint Antoine",
      "street_number": 8,
      "turnover": 210000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLERMONT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965175,
      "email": null,
      "id": 17995,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561963003",
      "postal_code": "09420",
      "siren": "411744634",
      "siret": "41174463400014",
      "status": "P",
      "store_name": "Boulangerie Mauret",
      "street": "Peyruc",
      "street_number": null,
      "turnover": 110000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MEUDON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965211,
      "email": null,
      "id": 18025,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0565B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "92190",
      "siren": "512742974",
      "siret": "51274297400011",
      "status": "P",
      "store_name": "Boulangerie Yousra",
      "street": "rue des Marais",
      "street_number": 60,
      "turnover": 300000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PUYCALVEL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965217,
      "email": null,
      "id": 18028,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "GONTIE MICHEL",
      "phone_number": "+33 563759744",
      "postal_code": "81440",
      "siren": "391914512",
      "siret": "39191451200010",
      "status": "M",
      "store_name": "Boulangerie Pain Et Nature",
      "street": "Douasso",
      "street_number": null,
      "turnover": 256000,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AUCHEL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965271,
      "email": null,
      "id": 18066,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010002754252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321270362",
      "postal_code": "62260",
      "siren": "521731281",
      "siret": "52173128100015",
      "status": "M",
      "store_name": "Boulangerie Pâtisserie Salomez",
      "street": "rue Arthur Lamendin",
      "street_number": 39,
      "turnover": 400000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "17/07/2009",
      "closing_days_ids": [],
      "datlinq_code": 965321,
      "email": null,
      "id": 18103,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "75011",
      "siren": "513785600",
      "siret": "51378560000018",
      "status": "P",
      "store_name": "Boulangerie Moisson Des Saveurs",
      "street": "boulevard Beaumarchais",
      "street_number": 86,
      "turnover": 590000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUNE",
      "client_creation_date": "2007-07-01",
      "closing_days_ids": [],
      "datlinq_code": 965457,
      "email": null,
      "id": 18116,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Gagelin",
      "phone_number": "+33 380228475",
      "postal_code": "21200",
      "siren": "499895142",
      "siret": "49989514200010",
      "status": "M",
      "store_name": "Boulangerie la Fournée Beaunoise",
      "street": "route de Dijon",
      "street_number": 166,
      "turnover": 515000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA BUSSIERE SUR OUCHE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965578,
      "email": "ouchotte@orange.fr",
      "id": 18142,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010390252110",
      "location_areas_ids": [],
      "owner_name": "benoit guyod bruno",
      "phone_number": "+33 380490162",
      "postal_code": "21360",
      "siren": "495145781",
      "siret": "49514578100011",
      "status": "P",
      "store_name": "Boulangerie Artisanale l'Ouchotte",
      "street": "la Forge",
      "street_number": 0,
      "turnover": 140000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAIGNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965587,
      "email": null,
      "id": 18144,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "galimard patrice",
      "phone_number": "+33 380814171",
      "postal_code": "21330",
      "siren": "382843258",
      "siret": "38284325800015",
      "status": "P",
      "store_name": "Boulangerie La Belle Fournee",
      "street": "Route de Tonnerre",
      "street_number": null,
      "turnover": 140000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRANDPARIGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965614,
      "email": null,
      "id": 18150,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233490069",
      "postal_code": "50600",
      "siren": "342840873",
      "siret": "34284087300034",
      "status": "P",
      "store_name": "Boulangerie Jean-Claude",
      "street": "le Bourg",
      "street_number": null,
      "turnover": 140000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST EVROULT NOTRE DAME DU BOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 965653,
      "email": null,
      "id": 18163,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "61550",
      "siren": "327294641",
      "siret": "32729464100011",
      "status": "P",
      "store_name": "Boulangerie Crépinel",
      "street": "Grande Rue",
      "street_number": null,
      "turnover": 135000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THORIGNE FOUILLARD",
      "client_creation_date": "2010-02-19",
      "closing_days_ids": [],
      "datlinq_code": 965960,
      "email": null,
      "id": 18190,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "GUERROIS",
      "phone_number": "02-99620543",
      "postal_code": "35235",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie l'Atelier du Pain",
      "street": "rue Beaumanoir",
      "street_number": 6,
      "turnover": 250000,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ECULLY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 966002,
      "email": null,
      "id": 2365,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "69130",
      "siren": "520488586",
      "siret": "52048858600014",
      "status": "P",
      "store_name": "E.K",
      "street": "chemin des Cerisiers",
      "street_number": 40,
      "turnover": 150000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VENDIN LES BETHUNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 966016,
      "email": null,
      "id": 18195,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010000316252110",
      "location_areas_ids": [],
      "owner_name": "DUPONT FRANSOIS",
      "phone_number": "000-000",
      "postal_code": "62232",
      "siren": "789681376",
      "siret": "78968137600016",
      "status": "M",
      "store_name": "Boulangerie Pains Et Delices",
      "street": "rue Pierre Mendes France",
      "street_number": 8,
      "turnover": 211000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "REIMS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 966179,
      "email": "la-fournee-croquante@orange.fr",
      "id": 18207,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003151252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326248393",
      "postal_code": "51100",
      "siren": "479137507",
      "siret": "47913750700022",
      "status": "G",
      "store_name": "Boulangerie la Fournée Croquante",
      "street": "rue Gambetta",
      "street_number": 100,
      "turnover": 323633,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AVANNE AVENEY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 968078,
      "email": null,
      "id": 18222,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010528252110",
      "location_areas_ids": [],
      "owner_name": "CLERGET",
      "phone_number": "+33 381521839",
      "postal_code": "25720",
      "siren": "531784338",
      "siret": "53178433800018",
      "status": "M",
      "store_name": "Boulangerie Pains & Delices",
      "street": "rue de l Eglise",
      "street_number": 22,
      "turnover": 230000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VERTOU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 968367,
      "email": null,
      "id": 38188,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-51794600",
      "postal_code": "44120",
      "siren": "856801519",
      "siret": "85680151900070",
      "status": "EMPTY_STATUS",
      "store_name": "United Biscuit France",
      "street": "route du Mortier Vannerie",
      "street_number": 27,
      "turnover": null,
      "user_id": 138,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SABLE SUR SARTHE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 968557,
      "email": null,
      "id": 2369,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243957888",
      "postal_code": "72300",
      "siren": "520423294",
      "siret": "52042329400013",
      "status": "P",
      "store_name": "Le Régal",
      "street": "rue Aristide Briand",
      "street_number": 2,
      "turnover": 0,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-1-2002",
      "closing_days_ids": [],
      "datlinq_code": 969100,
      "email": "maisonbichon@hotmail.com",
      "id": 18226,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "U0503001",
      "location_areas_ids": [],
      "owner_name": "DELGADO ELISEE",
      "phone_number": "01-9596036035",
      "postal_code": "75010",
      "siren": "440672970",
      "siret": "44067297000025",
      "status": "M",
      "store_name": "Boulangerie Maison Bichon",
      "street": "rue Cail",
      "street_number": 2,
      "turnover": 650000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VANDOEUVRE LES NANCY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 970319,
      "email": null,
      "id": 18235,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1270C001",
      "location_areas_ids": [],
      "owner_name": "Clop",
      "phone_number": "03-83515767",
      "postal_code": "54500",
      "siren": "502752108",
      "siret": "50275210800022",
      "status": "M",
      "store_name": "Boulangerie le Blé d'Or",
      "street": "rue Aristide Briand",
      "street_number": 9,
      "turnover": 200000,
      "user_id": 106,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAGNES SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 972066,
      "email": null,
      "id": 2377,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93733734",
      "postal_code": "06800",
      "siren": "410599534",
      "siret": "41059953400014",
      "status": "P",
      "store_name": "Le Fournil Pasqualini",
      "street": "rue J P Pasqualini",
      "street_number": 3,
      "turnover": 20000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MIGNALOUX BEAUVOIR",
      "client_creation_date": "2001-01-01",
      "closing_days_ids": [],
      "datlinq_code": 972234,
      "email": null,
      "id": 18246,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0630A001",
      "location_areas_ids": [],
      "owner_name": "BOULOUX",
      "phone_number": "05-49475297",
      "postal_code": "86550",
      "siren": "531941656",
      "siret": "53194165600013",
      "status": "M",
      "store_name": "Boulangerie La Mie Do Re",
      "street": "route de Limoges",
      "street_number": 1480,
      "turnover": 350000,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIZILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 972765,
      "email": null,
      "id": 47659,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0109C001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76087000",
      "postal_code": "38220",
      "siren": "514488113",
      "siret": "51448811300010",
      "status": "G",
      "store_name": "Croissanterie Lili Croutille (Liviz)",
      "street": "avenue Maurice Thorez",
      "street_number": 742,
      "turnover": 1441891,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PROPRIANO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 973121,
      "email": null,
      "id": 18251,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-95760171",
      "postal_code": "20110",
      "siren": "812537744",
      "siret": "81253774400011",
      "status": "P",
      "store_name": "Patisserie Peche Mignon",
      "street": "avenue Napoleon III",
      "street_number": 9,
      "turnover": 10000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "METZ",
      "client_creation_date": "2007-02-01",
      "closing_days_ids": [],
      "datlinq_code": 973446,
      "email": null,
      "id": 18254,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010960252110",
      "location_areas_ids": [],
      "owner_name": "Jean singler",
      "phone_number": "000-000",
      "postal_code": "57000",
      "siren": "494921240",
      "siret": "49492124000011",
      "status": "P",
      "store_name": "Boulangerie Patisserie Lacyleen",
      "street": "place des Charrons",
      "street_number": 9,
      "turnover": 170000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 974307,
      "email": null,
      "id": 2382,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "75008",
      "siren": "502407976",
      "siret": "50240797600039",
      "status": "M",
      "store_name": "Romantica Café",
      "street": "Rue Du Chevalier de Saint Georges",
      "street_number": 7,
      "turnover": 729770,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ELANCOURT",
      "client_creation_date": "21-9-2005",
      "closing_days_ids": [],
      "datlinq_code": 974345,
      "email": null,
      "id": 18260,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "EEUWAERT",
      "phone_number": "01-30513140",
      "postal_code": "78990",
      "siren": "484163688",
      "siret": "48416368800027",
      "status": "G",
      "store_name": "Boulangerie Eeuwaert",
      "street": "centre Commercial des 7 Mares",
      "street_number": null,
      "turnover": 1364400,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIRE NORMANDIE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 974892,
      "email": null,
      "id": 18270,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231682547",
      "postal_code": "14500",
      "siren": "798222337",
      "siret": "79822233700015",
      "status": "P",
      "store_name": "Boulangerie aux Douceurs de Martilly",
      "street": "place de Martilly",
      "street_number": 1,
      "turnover": 100000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 975200,
      "email": null,
      "id": 2387,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48244675",
      "postal_code": "75009",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Sandwicherie Jour Apres Jour",
      "street": "rue Cadet",
      "street_number": 1,
      "turnover": 10000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PORT VENDRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 975228,
      "email": null,
      "id": 2388,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010026020252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468839713",
      "postal_code": "66660",
      "siren": "812780732",
      "siret": "0",
      "status": "M",
      "store_name": "Les Pains du Quai",
      "street": "quai Pierre Forgas",
      "street_number": 11,
      "turnover": 150000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 975438,
      "email": null,
      "id": 2392,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45863641",
      "postal_code": "75013",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie Pomme de Pain",
      "street": "rue Marie Andree Lagroud Weill Halle",
      "street_number": 9,
      "turnover": null,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 975511,
      "email": null,
      "id": 18274,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Saibron",
      "phone_number": "01-43350107",
      "postal_code": "75014",
      "siren": "510944275",
      "siret": "51094427500013",
      "status": "P",
      "store_name": "Boulangerie Macaron's Café Dominique Saibron",
      "street": "avenue du General Leclerc",
      "street_number": 77,
      "turnover": 2000000,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GUERIGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 975739,
      "email": null,
      "id": 18276,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386373141",
      "postal_code": "58130",
      "siren": "523883130",
      "siret": "52388313000016",
      "status": "M",
      "store_name": "Boulanderie l'Amarena",
      "street": "Grande Rue",
      "street_number": 16,
      "turnover": 200000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AVIGNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 975865,
      "email": null,
      "id": 2394,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-32741308",
      "postal_code": "84000",
      "siren": "500676085",
      "siret": "50067608500011",
      "status": "P",
      "store_name": "Restaurant le Pêché de la Gourmandise",
      "street": "rue Petramale",
      "street_number": 18,
      "turnover": 125000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BREST",
      "client_creation_date": "2009",
      "closing_days_ids": [],
      "datlinq_code": 975897,
      "email": null,
      "id": 47662,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "09-67465484",
      "postal_code": "29200",
      "siren": "518027438",
      "siret": "51802743800036",
      "status": "P",
      "store_name": "Le Fournil du Port (Sounalisa)",
      "street": "quai de la Douane",
      "street_number": 22,
      "turnover": 150000,
      "user_id": 147,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-10-2009",
      "closing_days_ids": [],
      "datlinq_code": 975942,
      "email": null,
      "id": 2397,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "VENTURA SERGE",
      "phone_number": "01-42613758",
      "postal_code": "75001",
      "siren": "515299741",
      "siret": "51529974100014",
      "status": "EMPTY_STATUS",
      "store_name": "IL Café",
      "street": "rue des Capucines",
      "street_number": 23,
      "turnover": 400000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEBON SUR YVETTE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 976104,
      "email": null,
      "id": 2398,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-64868141",
      "postal_code": "91140",
      "siren": "582150041",
      "siret": "58215004101031",
      "status": "EMPTY_STATUS",
      "store_name": "Pomme de Pain",
      "street": "rue du Chemin de Briis",
      "street_number": 2,
      "turnover": 1227562,
      "user_id": 84,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VOIRON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 977235,
      "email": null,
      "id": 18298,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "38508001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76658888",
      "postal_code": "38500",
      "siren": "394213649",
      "siret": "39421364900038",
      "status": "M",
      "store_name": "Au Pain d'Antan",
      "street": "cours Becquart Castelbon",
      "street_number": 42,
      "turnover": 350000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COUZON AU MONT D OR",
      "client_creation_date": "2008",
      "closing_days_ids": [],
      "datlinq_code": 977347,
      "email": null,
      "id": 18309,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "69273001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78222119",
      "postal_code": "69270",
      "siren": "434526810",
      "siret": "43452681000016",
      "status": "G",
      "store_name": "Boulangerie le Moulin de Couzon",
      "street": "avenue du General de Gaulle",
      "street_number": 89,
      "turnover": 440000,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "OUCHES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 977348,
      "email": null,
      "id": 18310,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1258C001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-77668322",
      "postal_code": "42155",
      "siren": "449585272",
      "siret": "44958527200023",
      "status": "P",
      "store_name": "Boulangerie Bardou",
      "street": "rue Principale",
      "street_number": 180,
      "turnover": 200000,
      "user_id": 62,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST ANDRE DE L EURE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 977762,
      "email": null,
      "id": 2404,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232372474",
      "postal_code": "27220",
      "siren": "522735208",
      "siret": "52273520800012",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Vernoline",
      "street": "place de Gaulle",
      "street_number": 2,
      "turnover": null,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST REMY DE PROVENCE",
      "client_creation_date": "2009",
      "closing_days_ids": [],
      "datlinq_code": 978013,
      "email": null,
      "id": 38190,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-90921108",
      "postal_code": "13210",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Confiserie Lilamand",
      "street": "avenue Albert Schweitzer",
      "street_number": 5,
      "turnover": 40000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAUSSONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 979683,
      "email": null,
      "id": 18457,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Eric OUTIN",
      "phone_number": "04-71051106",
      "postal_code": "43150",
      "siren": "504217753",
      "siret": "50421775300012",
      "status": "P",
      "store_name": "Fournil de la Fontaine",
      "street": "Le Bourg",
      "street_number": null,
      "turnover": 160000,
      "user_id": 54,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 980022,
      "email": null,
      "id": 18465,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40205773",
      "postal_code": "44000",
      "siren": "521867226",
      "siret": "52186722600024",
      "status": "P",
      "store_name": "Boulangerie Irla",
      "street": "rue des Hauts Paves",
      "street_number": 8,
      "turnover": 250000,
      "user_id": 144,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NEUVILLE SUR ESCAUT",
      "client_creation_date": "2007-01-01",
      "closing_days_ids": [],
      "datlinq_code": 980369,
      "email": null,
      "id": 18476,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 327440061",
      "postal_code": "59293",
      "siren": "520914854",
      "siret": "52091485400010",
      "status": "P",
      "store_name": "Boulangerie aux Petits Délices",
      "street": "rue Louis Pasteur",
      "street_number": 19,
      "turnover": 190000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALLAURIS",
      "client_creation_date": "2010-03-01",
      "closing_days_ids": [],
      "datlinq_code": 980435,
      "email": null,
      "id": 274,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0047E001",
      "location_areas_ids": [],
      "owner_name": "Pauget Véronique",
      "phone_number": "04-92969559",
      "postal_code": "06220",
      "siren": "521000547",
      "siret": "52100054700013",
      "status": "M",
      "store_name": "Boulangerie Cheminat Et Cie",
      "street": "avenue de la Liberte",
      "street_number": 50,
      "turnover": 488000,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TANNERON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 980466,
      "email": null,
      "id": 18477,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93662495",
      "postal_code": "83440",
      "siren": "521219212",
      "siret": "52121921200011",
      "status": "P",
      "store_name": "Boulangerie le P'tit Pain",
      "street": "place de la Mairie",
      "street_number": null,
      "turnover": 100000,
      "user_id": 185,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MIRAMAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 980487,
      "email": null,
      "id": 18478,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-18934726",
      "postal_code": "13140",
      "siren": "520923715",
      "siret": "52092371500012",
      "status": "P",
      "store_name": "Boulangerie Falbo",
      "street": "boulevard Aristide Briand",
      "street_number": 24,
      "turnover": 210000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 981058,
      "email": null,
      "id": 276,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1676D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93134026",
      "postal_code": "06000",
      "siren": "388506586",
      "siret": "38850658600014",
      "status": "P",
      "store_name": "Boulangerie la Nicoise",
      "street": "rue Gubernatis",
      "street_number": 21,
      "turnover": 250000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MANTES LA JOLIE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 981532,
      "email": null,
      "id": 2448,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0520C001",
      "location_areas_ids": [],
      "owner_name": "HASSAN",
      "phone_number": "000-000",
      "postal_code": "78200",
      "siren": "521020859",
      "siret": "52102085900018",
      "status": "P",
      "store_name": "Sandwicherie Gassichaud",
      "street": "rue Maurice Braunstein",
      "street_number": 108,
      "turnover": 180000,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARTIGNAS SUR JALLE",
      "client_creation_date": "2011-01-01",
      "closing_days_ids": [],
      "datlinq_code": 981732,
      "email": null,
      "id": 18527,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXD47001",
      "location_areas_ids": [],
      "owner_name": "Charriot",
      "phone_number": "05-56214150",
      "postal_code": "33127",
      "siren": "521487355",
      "siret": "52148735500013",
      "status": "G",
      "store_name": "Boulangerie le Remède d'epicure",
      "street": "avenue du 18 Juin 1940",
      "street_number": null,
      "turnover": 757969,
      "user_id": 206,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PIERREFITTE SUR SEINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 981870,
      "email": null,
      "id": 38191,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "93380",
      "siren": "521805713",
      "siret": "52180571300018",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie BLA Distribution",
      "street": "avenue Nungesser et Coli",
      "street_number": 46,
      "turnover": null,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAGNEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 981893,
      "email": null,
      "id": 41535,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "09-52564213",
      "postal_code": "92220",
      "siren": "521756486",
      "siret": "52175648600010",
      "status": "P",
      "store_name": "Sandwicherie Best Of",
      "street": "place de la Republique",
      "street_number": 4,
      "turnover": 150000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 982241,
      "email": null,
      "id": 2468,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42365811",
      "postal_code": "75002",
      "siren": "433432820",
      "siret": "43343282000176",
      "status": "P",
      "store_name": "CO Jean",
      "street": "rue Reaumur",
      "street_number": 121,
      "turnover": 10000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GIRONS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 982657,
      "email": null,
      "id": 18560,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561048388",
      "postal_code": "09200",
      "siren": "408531234",
      "siret": "40853123400032",
      "status": "P",
      "store_name": "Boulangerie Soum",
      "street": "place Pasteur",
      "street_number": 5,
      "turnover": 145000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BLAGNAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 982700,
      "email": null,
      "id": 18561,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 663841063",
      "postal_code": "31700",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie la Goutte d'Or",
      "street": "rue de la Croix Blanche",
      "street_number": 1,
      "turnover": 160000,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA SALVETAT ST GILLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 983375,
      "email": null,
      "id": 18576,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "GUICHET MARC",
      "phone_number": "+33 561077818",
      "postal_code": "31880",
      "siren": "509786976",
      "siret": "50978697600019",
      "status": "M",
      "store_name": "Boulangerie Valse Des Pains",
      "street": "avenue des Pyrenees",
      "street_number": 36,
      "turnover": 404110,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LIEUSAINT",
      "client_creation_date": "1-10-2003",
      "closing_days_ids": [],
      "datlinq_code": 983765,
      "email": null,
      "id": 2482,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R4040001",
      "location_areas_ids": [],
      "owner_name": "SOTTEAU",
      "phone_number": "01-64880723",
      "postal_code": "77127",
      "siren": "752137463",
      "siret": "0",
      "status": "M",
      "store_name": "Boulangerie Pains et Viennoiseries du Colombier",
      "street": "place du Colombier",
      "street_number": 21,
      "turnover": 250000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE MANS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 983929,
      "email": null,
      "id": 18631,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Guyot",
      "phone_number": "+33 243841479",
      "postal_code": "72100",
      "siren": "504851007",
      "siret": "50485100700014",
      "status": "P",
      "store_name": "Boulangerie Davoust",
      "street": "avenue Felix Geneslay",
      "street_number": 422,
      "turnover": 209000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAULIEU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 984703,
      "email": null,
      "id": 32854,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012554252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 380641713",
      "postal_code": "21210",
      "siren": "016850422",
      "siret": "01685042200011",
      "status": "P",
      "store_name": "Pâtisserie Guillemard",
      "street": "rue du Marche",
      "street_number": 11,
      "turnover": 180000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 984711,
      "email": null,
      "id": 32855,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R6773001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43077759",
      "postal_code": "75012",
      "siren": "492342746",
      "siret": "49234274600012",
      "status": "EMPTY_STATUS",
      "store_name": "Patisserie le Panthéon",
      "street": "rue Saint-Jacques",
      "street_number": 200,
      "turnover": null,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTGERON",
      "client_creation_date": "20-3-2003",
      "closing_days_ids": [],
      "datlinq_code": 984744,
      "email": null,
      "id": 18677,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "PIOT",
      "phone_number": "01-69036763",
      "postal_code": "91230",
      "siren": "448148080",
      "siret": "44814808000022",
      "status": "P",
      "store_name": "Boulangerie Cedric Piot",
      "street": "avenue de la Republique",
      "street_number": 176,
      "turnover": 160000,
      "user_id": 84,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HAGONDANGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 984848,
      "email": null,
      "id": 18722,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387715053",
      "postal_code": "57300",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie la Petite Douceur",
      "street": "rue de la Gare",
      "street_number": 21,
      "turnover": null,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTROUGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 984869,
      "email": null,
      "id": 18732,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42534348",
      "postal_code": "92120",
      "siren": "512893272",
      "siret": "51289327200017",
      "status": "P",
      "store_name": "Boulangerie Bonheur et Gourmandise (Guerard)",
      "street": "avenue de la Republique",
      "street_number": 78,
      "turnover": 320000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHOISY LE ROI",
      "client_creation_date": "29-6-2007",
      "closing_days_ids": [],
      "datlinq_code": 984879,
      "email": null,
      "id": 18737,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R7429001",
      "location_areas_ids": [],
      "owner_name": "AMINE BOUHARBA",
      "phone_number": "01-48907934",
      "postal_code": "94600",
      "siren": "498800192",
      "siret": "49880019200011",
      "status": "P",
      "store_name": "Boulangerie la Princesse",
      "street": "avenue Gambetta",
      "street_number": 9,
      "turnover": 240000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTEILS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 984924,
      "email": null,
      "id": 18761,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "GROS FABRICE",
      "phone_number": "+33 565296316",
      "postal_code": "12200",
      "siren": "517745030",
      "siret": "51774503000018",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Gros",
      "street": "le Bourg",
      "street_number": null,
      "turnover": null,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2005",
      "closing_days_ids": [],
      "datlinq_code": 985004,
      "email": null,
      "id": 2504,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1829D001",
      "location_areas_ids": [],
      "owner_name": "DALHOUMI",
      "phone_number": null,
      "postal_code": "75018",
      "siren": "504032277",
      "siret": "50403227700015",
      "status": "P",
      "store_name": "Boulangerie le Fournil de Vaunenargue",
      "street": "rue Vauvenargues",
      "street_number": 70,
      "turnover": 200000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PERPIGNAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985096,
      "email": null,
      "id": 2509,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468576033",
      "postal_code": "66000",
      "siren": "501676746",
      "siret": "50167674600024",
      "status": "M",
      "store_name": "La Mie Caline",
      "street": "rue Alsace Lorraine",
      "street_number": 2,
      "turnover": 350000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BRUGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985521,
      "email": null,
      "id": 32869,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "20042001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56430606",
      "postal_code": "33520",
      "siren": "353618564",
      "siret": "35361856400010",
      "status": "P",
      "store_name": "Patisserie Le Bouchon De Bordeaux",
      "street": "chemin de Bacchus",
      "street_number": 12,
      "turnover": 100,
      "user_id": 207,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAULEON LICHARRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985573,
      "email": null,
      "id": 18854,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BESSAGNET Jean",
      "phone_number": "05-59280033",
      "postal_code": "64130",
      "siren": "402158992",
      "siret": "40215899200014",
      "status": "P",
      "store_name": "Boulangerie Bessagnet",
      "street": "rue Victor Hugo",
      "street_number": 35,
      "turnover": 250000,
      "user_id": 214,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARTHENAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985627,
      "email": null,
      "id": 18875,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "79005001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-49941129",
      "postal_code": "79200",
      "siren": "343926267",
      "siret": "34392626700034",
      "status": "M",
      "store_name": "Boulangerie Wypych",
      "street": "av du 114e Regiment d Infanterie",
      "street_number": 23,
      "turnover": 230000,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PESSAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985665,
      "email": null,
      "id": 18897,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56453538",
      "postal_code": "33600",
      "siren": "382496032",
      "siret": "38249603200014",
      "status": "P",
      "store_name": "Boulangerie à la Marquise d Arago",
      "street": "avenue Arago",
      "street_number": null,
      "turnover": 300000,
      "user_id": 206,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AULNAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985737,
      "email": null,
      "id": 18934,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "LI045001",
      "location_areas_ids": [],
      "owner_name": "BOUILLON",
      "phone_number": "05-46331183",
      "postal_code": "17470",
      "siren": "421768789",
      "siret": "42176878900016",
      "status": "P",
      "store_name": "Boulangerie Jacky Bouillon",
      "street": "rue Porte Matha",
      "street_number": 34,
      "turnover": 80000,
      "user_id": 152,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARTELANGE",
      "client_creation_date": "2000-02-01",
      "closing_days_ids": [],
      "datlinq_code": 477541,
      "email": null,
      "id": 50268,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010121252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+32 63600157",
      "postal_code": "6630",
      "siren": "441332875",
      "siret": "2049415505",
      "status": "P",
      "store_name": "Boulangerie-Patisserie Stouvenaker",
      "street": "route de Bastogne",
      "street_number": 3,
      "turnover": 200000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BONINNE-GELBRESSÉE",
      "client_creation_date": "2001-02-01",
      "closing_days_ids": [],
      "datlinq_code": 502196,
      "email": null,
      "id": 50286,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016369252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+32 81214877",
      "postal_code": "5021",
      "siren": "837084858",
      "siret": "2200091741",
      "status": "P",
      "store_name": "Boulangerie la Maison Demoulin",
      "street": "route de Hannut",
      "street_number": 278,
      "turnover": 100000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NALINNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 531259,
      "email": null,
      "id": 50316,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016326252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+32 71215558",
      "postal_code": "6120",
      "siren": "0810933361",
      "siret": "2180417864",
      "status": "M",
      "store_name": "Boulangerie la Palette Sucrée",
      "street": "rue Couture",
      "street_number": 18,
      "turnover": 350000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARCINELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 556561,
      "email": "douceursetgourmandises@hotmail.com",
      "id": 50321,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012053252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+32 71562636",
      "postal_code": "6001",
      "siren": "836526911",
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Douceurs et gourmandises - SPRL Kimmes",
      "street": "rue Destrée",
      "street_number": 96,
      "turnover": 150000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LONGWY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 556841,
      "email": null,
      "id": 4577,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010030328252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 382444241",
      "postal_code": "54400",
      "siren": "823990767",
      "siret": null,
      "status": "G",
      "store_name": "DPDG",
      "street": "rue Carnot",
      "street_number": 11,
      "turnover": 500000,
      "user_id": 393,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HERZEELE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 632022,
      "email": null,
      "id": 33233,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010002706252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328276600",
      "postal_code": "59470",
      "siren": "344847827",
      "siret": "34484782700013",
      "status": "P",
      "store_name": "Coccimarket",
      "street": "rue de Bambecque",
      "street_number": 162,
      "turnover": 70000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MACON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 634563,
      "email": null,
      "id": 50343,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 385383325",
      "postal_code": "71000",
      "siren": "342689940",
      "siret": "34268994000027",
      "status": "M",
      "store_name": "Etablissements Got",
      "street": "rue du Port",
      "street_number": null,
      "turnover": 2351155,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MARTIN DE VALGALGUES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 674059,
      "email": null,
      "id": 32279,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010000843252140",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466300886",
      "postal_code": "30520",
      "siren": "318759941",
      "siret": "31875994100038",
      "status": "EMPTY_STATUS",
      "store_name": "Societe Nouvelle Alesienne De Produits De Patisser",
      "street": "le Devois",
      "street_number": null,
      "turnover": null,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RONCHIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 678683,
      "email": null,
      "id": 4611,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016867252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 674085737",
      "postal_code": "59790",
      "siren": "304979032",
      "siret": "30497903200014",
      "status": "P",
      "store_name": "Boulangeriec au Pain d'Aujourd'hui",
      "street": "avenue Jean Jaures",
      "street_number": 137,
      "turnover": 85000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VENCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 684410,
      "email": "reservation@chateau-st-martin.com",
      "id": 6,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "05223001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93580202",
      "postal_code": "06140",
      "siren": "382846418",
      "siret": "38284641800020",
      "status": "P",
      "store_name": "Hôtel Restaurant Chateau du Domaine Saint Martin",
      "street": "avenue des Templiers",
      "street_number": 2490,
      "turnover": 10000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "REIMS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 684950,
      "email": "colpart.carine@yahoo.fr",
      "id": 4640,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326072819",
      "postal_code": "51100",
      "siren": "440969939",
      "siret": "44096993900022",
      "status": "M",
      "store_name": "Boulangerie Colpart",
      "street": "rue Camille Lenoir",
      "street_number": 135,
      "turnover": 263117,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TALLOIRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 688798,
      "email": "reception@perebise.com",
      "id": 10,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "02034001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50607201",
      "postal_code": "74290",
      "siren": "350547816",
      "siret": "35054781600016",
      "status": "P",
      "store_name": "Hotel Restaurant Auberge Du Pere Bise",
      "street": "route du Port",
      "street_number": null,
      "turnover": 1000,
      "user_id": 263,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLOHARS FOUESNANT",
      "client_creation_date": "Mr Hervé",
      "closing_days_ids": [],
      "datlinq_code": 704695,
      "email": "info@campingbenodet.fr",
      "id": 32331,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "22248001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-98570238",
      "postal_code": "29950",
      "siren": "390289221",
      "siret": "39028922100017",
      "status": "M",
      "store_name": "Camping du Port de Plaisance",
      "street": "Prad Poullou",
      "street_number": null,
      "turnover": 200000,
      "user_id": 147,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THUIR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985756,
      "email": null,
      "id": 18943,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468534037",
      "postal_code": "66300",
      "siren": "434524740",
      "siret": "43452474000025",
      "status": "P",
      "store_name": "Boulangerie Le Pain Du Roussillon",
      "street": "rue de la Salanque",
      "street_number": 3,
      "turnover": 295000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AURILLAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985759,
      "email": null,
      "id": 18944,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012143252110",
      "location_areas_ids": [],
      "owner_name": "CASSAN",
      "phone_number": "000-000",
      "postal_code": "15000",
      "siren": "439578469",
      "siret": "43957846900017",
      "status": "G",
      "store_name": "Boulangerie Cassan",
      "street": "rue d Illzach",
      "street_number": 1,
      "turnover": 250000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAULEON LICHARRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985760,
      "email": null,
      "id": 18945,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-59283730",
      "postal_code": "64130",
      "siren": "439739301",
      "siret": "43973930100018",
      "status": "P",
      "store_name": "Boulangerie Ludovic",
      "street": "avenue de Belzunce",
      "street_number": 26,
      "turnover": 200000,
      "user_id": 214,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA ROCHELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985852,
      "email": "philippe.loiseau67@gmail.com",
      "id": 19004,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXC60001",
      "location_areas_ids": [],
      "owner_name": "loiseau",
      "phone_number": "05-46437611",
      "postal_code": "17000",
      "siren": "430334656",
      "siret": "43033465600039",
      "status": "G",
      "store_name": "Boulangerie Philippe Loiseau",
      "street": "place de l Ile de France",
      "street_number": 1,
      "turnover": 500000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985888,
      "email": null,
      "id": 19025,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SAINT CRIQ JEAN PIERRE",
      "phone_number": "+33 561493507",
      "postal_code": "31300",
      "siren": "797466752",
      "siret": "79746675200012",
      "status": "P",
      "store_name": "Boulangerie aux Petits Fours",
      "street": "place de la Patte d Oie",
      "street_number": 7,
      "turnover": 500000,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DAX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985889,
      "email": "boulangerie.depart@wanadoo.fr",
      "id": 19026,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RP345001",
      "location_areas_ids": [],
      "owner_name": "DEPART",
      "phone_number": "05-58742712",
      "postal_code": "40100",
      "siren": "398937391",
      "siret": "39893739100017",
      "status": "M",
      "store_name": "Boulangerie Depart",
      "street": "place du Marechal Joffre",
      "street_number": 16,
      "turnover": 300000,
      "user_id": 210,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BIARRITZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985974,
      "email": null,
      "id": 19078,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-59039785",
      "postal_code": "64200",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Bourgeais Dominique",
      "street": "avenue Reine Victoria",
      "street_number": 49,
      "turnover": null,
      "user_id": 214,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CASTRES GIRONDE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 985997,
      "email": null,
      "id": 19088,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "33640",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Soci‰Û_t‰Û_ De Panification",
      "street": "rue du President Carnot",
      "street_number": null,
      "turnover": null,
      "user_id": 202,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PUYLAURENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986042,
      "email": null,
      "id": 19114,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DULAC DENIS",
      "phone_number": "+33 563820589",
      "postal_code": "81700",
      "siren": "494931389",
      "siret": "49493138900014",
      "status": "M",
      "store_name": "Boulangerie Le Moulin Du Girou",
      "street": "Prat Martel",
      "street_number": null,
      "turnover": 350000,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986048,
      "email": "artak.apoyan@yahoo.fr",
      "id": 19120,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91265293",
      "postal_code": "13009",
      "siren": "489768275",
      "siret": "48976827500013",
      "status": "P",
      "store_name": "Boulangerie Alice Et Arsen",
      "street": "boulevard Romain Rolland",
      "street_number": 397,
      "turnover": 228000,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST LAURENT DE LA SALANQUE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986061,
      "email": "edithchristophe66@orange.fr / stephane.grotter@orange.fr",
      "id": 19130,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013225252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468282461",
      "postal_code": "66250",
      "siren": "518962873",
      "siret": "51896287300015",
      "status": "G",
      "store_name": "Boulangerie Stéphane Grotter",
      "street": "rue Gabriel Peri",
      "street_number": 13,
      "turnover": 380000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROYAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986102,
      "email": null,
      "id": 19166,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0961F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46390137",
      "postal_code": "17200",
      "siren": "499221364",
      "siret": "49536011700016",
      "status": "G",
      "store_name": "Boulangerie Binjamin",
      "street": "boulevard Champlain",
      "street_number": 85,
      "turnover": 360000,
      "user_id": 152,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CASTELNAUD LA CHAPELLE",
      "client_creation_date": "2005-06-01",
      "closing_days_ids": [],
      "datlinq_code": 986496,
      "email": null,
      "id": 19195,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXB99001",
      "location_areas_ids": [],
      "owner_name": "CARRE",
      "phone_number": "05-53593390",
      "postal_code": "24250",
      "siren": "510445885",
      "siret": "51044588500013",
      "status": "G",
      "store_name": "Boulangerie Delices et Traditions",
      "street": "lieu dit Tournepique",
      "street_number": null,
      "turnover": 600000,
      "user_id": 198,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STE MAURE DE TOURAINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986675,
      "email": null,
      "id": 19227,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "37800",
      "siren": "528371412",
      "siret": "52837141200016",
      "status": "P",
      "store_name": "Boulangerie La Baguette Rustique",
      "street": "rue Auguste Chevallier",
      "street_number": 27,
      "turnover": 170000,
      "user_id": 140,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAUDENEY SUR MOSELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986736,
      "email": null,
      "id": 19239,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83432041",
      "postal_code": "54200",
      "siren": "323583047",
      "siret": "32358304700010",
      "status": "P",
      "store_name": "Boulangerie Gerard Alison",
      "street": "rue Edmond Gerard",
      "street_number": 61,
      "turnover": 130000,
      "user_id": 108,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986812,
      "email": null,
      "id": 19271,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231930288",
      "postal_code": "14000",
      "siren": "330461773",
      "siret": "33046177300054",
      "status": "P",
      "store_name": "Boulangerie Dominique",
      "street": "avenue Professeur Horatio Smith",
      "street_number": 15,
      "turnover": 280000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FONTAINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986816,
      "email": null,
      "id": 19274,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "38857001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76271213",
      "postal_code": "38600",
      "siren": "330675828",
      "siret": "33067582800025",
      "status": "G",
      "store_name": "Boulangerie De Freitas",
      "street": "avenue du Vercors",
      "street_number": 73,
      "turnover": 506000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ÉPERNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986819,
      "email": null,
      "id": 50462,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 237834052",
      "postal_code": "28230",
      "siren": "330725839",
      "siret": "33072583900022",
      "status": "P",
      "store_name": "Patisserie Ravel",
      "street": "Rue Paul Painlevé",
      "street_number": 2,
      "turnover": 350000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986821,
      "email": null,
      "id": 46589,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43595231",
      "postal_code": "75008",
      "siren": "503436214",
      "siret": "50343621400012",
      "status": "EMPTY_STATUS",
      "store_name": "la Suite Haussmann",
      "street": "boulevard Haussmann",
      "street_number": 146,
      "turnover": null,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AVIGNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986838,
      "email": null,
      "id": 32905,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0727G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-90862472",
      "postal_code": "84000",
      "siren": "505333351",
      "siret": "50533335100011",
      "status": "P",
      "store_name": "Patisserie La Tropezienne",
      "street": "rue Saint Agricol",
      "street_number": 22,
      "turnover": 150000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NEUFCHATEAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 986871,
      "email": null,
      "id": 32911,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "43266001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-29941129",
      "postal_code": "88300",
      "siren": "333254993",
      "siret": "33325499300012",
      "status": "P",
      "store_name": "Patisserie Chocolaterie Goujaud Cavanna",
      "street": "rue Saint Jean",
      "street_number": 51,
      "turnover": 160000,
      "user_id": 109,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARCHES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987066,
      "email": null,
      "id": 19371,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-29327729",
      "postal_code": "88380",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie les Moulins de Séverine",
      "street": "rue de Remiremont",
      "street_number": 10,
      "turnover": 180000,
      "user_id": 109,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NOVALAISE",
      "client_creation_date": "2004",
      "closing_days_ids": [],
      "datlinq_code": 987074,
      "email": null,
      "id": 19375,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79287129",
      "postal_code": "73470",
      "siren": "330561259",
      "siret": "33056125900020",
      "status": "P",
      "store_name": "Boulangerie Bonnet",
      "street": "route du Col de l Epine",
      "street_number": 47,
      "turnover": 270000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARZON",
      "client_creation_date": "2-5-2010",
      "closing_days_ids": [],
      "datlinq_code": 987135,
      "email": null,
      "id": 19407,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1006D001",
      "location_areas_ids": [],
      "owner_name": "BRUNET",
      "phone_number": "02-97537217",
      "postal_code": "56640",
      "siren": "388758609",
      "siret": "38875860900050",
      "status": "G",
      "store_name": "Boulangerie Brunet",
      "street": "rue des Mouettes",
      "street_number": 1,
      "turnover": 450000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LES MOUTIERS EN RETZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987181,
      "email": null,
      "id": 19430,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40827547",
      "postal_code": "44760",
      "siren": "344373931",
      "siret": "34437393100015",
      "status": "P",
      "store_name": "Boulangerie Mellerin",
      "street": "rue de l Abbe Baconnais",
      "street_number": 11,
      "turnover": 180000,
      "user_id": 144,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROQUEBILLIERE",
      "client_creation_date": "2002-05-01",
      "closing_days_ids": [],
      "datlinq_code": 987311,
      "email": null,
      "id": 291,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0103D001",
      "location_areas_ids": [],
      "owner_name": "SOMAINI",
      "phone_number": "04-93034081",
      "postal_code": "06450",
      "siren": "338969454",
      "siret": "33896945400010",
      "status": "G",
      "store_name": "Boulangerie Jean Pierre Somaini",
      "street": "av Philippe Corniglion Molinier",
      "street_number": 9,
      "turnover": 450000,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAULNIERES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987335,
      "email": null,
      "id": 19515,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-99446195",
      "postal_code": "35320",
      "siren": "341300580",
      "siret": "34130058000022",
      "status": "P",
      "store_name": "Patisserie Ruaudel",
      "street": "rue des Saulniers",
      "street_number": 6,
      "turnover": 120000,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA MOTTE D AVEILLANS",
      "client_creation_date": "07/1989",
      "closing_days_ids": [],
      "datlinq_code": 987435,
      "email": null,
      "id": 19563,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Broutin",
      "phone_number": "04-76306126",
      "postal_code": "38770",
      "siren": "352138457",
      "siret": "35213845700036",
      "status": "P",
      "store_name": "Boulangerie Des Mottes",
      "street": "route de la Roche",
      "street_number": 2,
      "turnover": 100000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JARD SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987462,
      "email": null,
      "id": 19582,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-51334009",
      "postal_code": "85520",
      "siren": "402756324",
      "siret": "40275632400024",
      "status": "M",
      "store_name": "Boulangerie Patisserie Fradet",
      "street": "place de l Hotel de Ville",
      "street_number": 5,
      "turnover": 730000,
      "user_id": 153,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHARPEY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987478,
      "email": null,
      "id": 19589,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-75598695",
      "postal_code": "26300",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Au Pain Vivant",
      "street": "route de Chabeuil",
      "street_number": null,
      "turnover": 110000,
      "user_id": 170,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PRECIGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987480,
      "email": null,
      "id": 19591,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 962246545",
      "postal_code": "72300",
      "siren": "378918114",
      "siret": "37891811400026",
      "status": "M",
      "store_name": "Boulangerie Thierry Gaugain",
      "street": "rue Abbe Louis Chevallier",
      "street_number": 3,
      "turnover": 360000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAICHE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987489,
      "email": null,
      "id": 19598,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003950252110",
      "location_areas_ids": [],
      "owner_name": "RICHARD",
      "phone_number": "+33 381640047",
      "postal_code": "25120",
      "siren": "379490246",
      "siret": "37949024600012",
      "status": "P",
      "store_name": "Boulangerie Richard",
      "street": "rue du General de Gaulle",
      "street_number": 13,
      "turnover": 410000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STE FOY LES LYON",
      "client_creation_date": "2013",
      "closing_days_ids": [],
      "datlinq_code": 718435,
      "email": null,
      "id": 19,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "69811001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78844862",
      "postal_code": "69110",
      "siren": "798483491",
      "siret": "79848349100014",
      "status": "M",
      "store_name": "Boulangerie la Caserne des Pains",
      "street": "avenue de Limburg",
      "street_number": 5,
      "turnover": 320000,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST BREVIN LES PINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 718631,
      "email": null,
      "id": 4723,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40270602",
      "postal_code": "44250",
      "siren": "492818414",
      "siret": "49281841400038",
      "status": "M",
      "store_name": "Boulangerie Denion",
      "street": "avenue du President Roosevelt",
      "street_number": 48,
      "turnover": 250000,
      "user_id": 144,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST QUENTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 719241,
      "email": null,
      "id": 32360,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010006966252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 323683908",
      "postal_code": "02100",
      "siren": "804059632",
      "siret": "80405963200013",
      "status": "P",
      "store_name": "Le Neuville",
      "street": "avenue Pierre Choquart",
      "street_number": 1,
      "turnover": 140000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 719310,
      "email": null,
      "id": 20,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "M2924001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93387279",
      "postal_code": "06400",
      "siren": "316919174",
      "siret": "31691917400029",
      "status": "P",
      "store_name": "Restaurant Canelle",
      "street": "rue des Serbes",
      "street_number": 32,
      "turnover": 10000,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEMOMBLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 719494,
      "email": null,
      "id": 725,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48556981",
      "postal_code": "93250",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Chocolaterie Viridiana",
      "street": "avenue Outrebon",
      "street_number": 35,
      "turnover": null,
      "user_id": 74,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 719817,
      "email": null,
      "id": 46537,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561252827",
      "postal_code": "31400",
      "siren": "489349449",
      "siret": "48934944900020",
      "status": "EMPTY_STATUS",
      "store_name": "Le Zagora",
      "street": "avenue de l Urss",
      "street_number": 6,
      "turnover": null,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STRASBOURG",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 719913,
      "email": null,
      "id": 4725,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "70074001",
      "location_areas_ids": [],
      "owner_name": "Bouali",
      "phone_number": "03-88324347",
      "postal_code": "67000",
      "siren": "523107126",
      "siret": "52310712600014",
      "status": "M",
      "store_name": "Boulangerie la Petite France",
      "street": "Grand Rue",
      "street_number": 98,
      "turnover": 320000,
      "user_id": 112,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLENAVE D ORNON",
      "client_creation_date": "2010-01-01",
      "closing_days_ids": [],
      "datlinq_code": 720842,
      "email": null,
      "id": 4728,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXD74001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56871763",
      "postal_code": "33140",
      "siren": "523291896",
      "siret": "52329189600018",
      "status": "M",
      "store_name": "Boulangerie Wildah Chapelle",
      "street": "rue Marcel Cachin",
      "street_number": 13,
      "turnover": 315000,
      "user_id": 202,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 721407,
      "email": null,
      "id": 32361,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "J1007001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42610590",
      "postal_code": "75001",
      "siren": "479256760",
      "siret": "47925676000014",
      "status": "M",
      "store_name": "Ebisu",
      "street": "rue Saint Roch",
      "street_number": 19,
      "turnover": 300000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARRAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 721878,
      "email": null,
      "id": 41403,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010029757252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321512970",
      "postal_code": "62000",
      "siren": "508588845",
      "siret": "50858884500018",
      "status": "P",
      "store_name": "Restaurant le Petit Rat Porteur",
      "street": "Rue de la Taillerie",
      "street_number": 11,
      "turnover": 20000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "L ILE ROUSSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 722687,
      "email": null,
      "id": 33454,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RLQ02001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "20220",
      "siren": "520730680",
      "siret": "52073068000011",
      "status": "M",
      "store_name": "Point chaud Pane Untu",
      "street": "Place Du Monument aux morts",
      "street_number": 0,
      "turnover": 347400,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PORT MARLY",
      "client_creation_date": "Pizzeria",
      "closing_days_ids": [],
      "datlinq_code": 724060,
      "email": null,
      "id": 32363,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "U0796001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-39584456",
      "postal_code": "78560",
      "siren": "478255896",
      "siret": "47825589600019",
      "status": "P",
      "store_name": "le Bistrot Italien",
      "street": "rue de Paris",
      "street_number": 7,
      "turnover": 200000,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JULIEN EN ST ALBAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 724277,
      "email": null,
      "id": 729,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Martinez",
      "phone_number": "+33 475653278",
      "postal_code": "07000",
      "siren": "403281884",
      "siret": "40328188400011",
      "status": "P",
      "store_name": "Point Chaud la Valentine",
      "street": "route Departementale 104",
      "street_number": null,
      "turnover": 100000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "METZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 724336,
      "email": null,
      "id": 32364,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010004811252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387386060",
      "postal_code": "57000",
      "siren": "957503931",
      "siret": "95750393100579",
      "status": "EMPTY_STATUS",
      "store_name": "Galeries Lafayette",
      "street": "rue Winston Churchill",
      "street_number": 4,
      "turnover": null,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "USSEAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 725142,
      "email": null,
      "id": 32365,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "LI360001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-49049302",
      "postal_code": "79210",
      "siren": "327635058",
      "siret": "32763505800024",
      "status": "P",
      "store_name": "Restaurant Chez Dominique",
      "street": "route de la Foret",
      "street_number": 4,
      "turnover": 20000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COLMAR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 725284,
      "email": null,
      "id": 32366,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "63286001",
      "location_areas_ids": [],
      "owner_name": "Hébert ",
      "phone_number": "03-89237081",
      "postal_code": "68000",
      "siren": "342974367",
      "siret": "34297436700019",
      "status": "P",
      "store_name": "Au Croissant Dore",
      "street": "rue des Marchands",
      "street_number": 28,
      "turnover": 1000,
      "user_id": 111,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 725844,
      "email": null,
      "id": 32368,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010014744252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386653199",
      "postal_code": "89100",
      "siren": "305541757",
      "siret": "30554175700020",
      "status": "P",
      "store_name": "Bar Du Palais",
      "street": "Grande Rue",
      "street_number": 7,
      "turnover": 50000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOCHES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 726110,
      "email": null,
      "id": 47541,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1223G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-47592559",
      "postal_code": "37600",
      "siren": "508916012",
      "siret": "50891601200018",
      "status": "M",
      "store_name": "Restaurant La Crepicoise",
      "street": "rue Picois",
      "street_number": 3,
      "turnover": 200000,
      "user_id": 140,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 727731,
      "email": null,
      "id": 46539,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-11089341",
      "postal_code": "75019",
      "siren": "423086610",
      "siret": "42308661000015",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie Itsik",
      "street": "avenue Secretan",
      "street_number": 78,
      "turnover": null,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RENNES",
      "client_creation_date": "2010-08-02",
      "closing_days_ids": [],
      "datlinq_code": 728396,
      "email": null,
      "id": 4740,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Andrieux",
      "phone_number": "02-99368901",
      "postal_code": "35000",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "Boulangerie aux Gourmandises de Gregoire",
      "street": "rue de Paris",
      "street_number": 111,
      "turnover": 306843,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANNECY LE VIEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 728965,
      "email": null,
      "id": 4743,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50232503",
      "postal_code": "74940",
      "siren": "531831253",
      "siret": "53183125300012",
      "status": "G",
      "store_name": "Rispe pan et gato",
      "street": "rue du Pre d Avril",
      "street_number": 6,
      "turnover": 925000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAGNES SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 729024,
      "email": null,
      "id": 24,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "05378001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93310775",
      "postal_code": "06800",
      "siren": "798506051",
      "siret": "0",
      "status": "P",
      "store_name": "Restaurant la Bourride",
      "street": "rue Capitaine de Fregate H Vial",
      "street_number": 5,
      "turnover": 10000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAILLY ROMAINVILLIERS",
      "client_creation_date": "1-12-2010",
      "closing_days_ids": [],
      "datlinq_code": 729352,
      "email": null,
      "id": 4744,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Lelievre Isabelle De Sousa",
      "phone_number": "01-60422835",
      "postal_code": "77700",
      "siren": "528865660",
      "siret": "52886566000013",
      "status": "M",
      "store_name": "Boulangerie la Boite a Pain",
      "street": "boulevard des Sports",
      "street_number": 7,
      "turnover": 435599,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "EYMET",
      "client_creation_date": "2008",
      "closing_days_ids": [],
      "datlinq_code": 730049,
      "email": null,
      "id": 32372,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "IF136001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-53227283",
      "postal_code": "24500",
      "siren": "448106161",
      "siret": "44810616100012",
      "status": "P",
      "store_name": "Restaurant la Cour d'Eymet",
      "street": "boulevard National",
      "street_number": 32,
      "turnover": 100,
      "user_id": 198,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAGNES SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 730223,
      "email": null,
      "id": 34411,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0114W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93310007",
      "postal_code": "06800",
      "siren": "312733975",
      "siret": "31273397500014",
      "status": "P",
      "store_name": "Restaurant Charlot 1er",
      "street": "promenade de la Plage",
      "street_number": 87,
      "turnover": 20000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NARBONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 730554,
      "email": null,
      "id": 50373,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468327670",
      "postal_code": "11100",
      "siren": "508599271",
      "siret": "50859927100014",
      "status": "EMPTY_STATUS",
      "store_name": "La Grande Brasserie",
      "street": "boulevard de Creissel",
      "street_number": 24,
      "turnover": null,
      "user_id": 440,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BERCK",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 730641,
      "email": null,
      "id": 50374,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321843820",
      "postal_code": "62600",
      "siren": "792765711",
      "siret": "79276571100025",
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant la Grilladine",
      "street": "rue Carnot",
      "street_number": 76,
      "turnover": null,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PEISEY NANCROIX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 730864,
      "email": null,
      "id": 25,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0159E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79075092",
      "postal_code": "73210",
      "siren": "534561519",
      "siret": "53456151900016",
      "status": "P",
      "store_name": "Restaurant l'Alpage de Peisey",
      "street": "Peisey",
      "street_number": null,
      "turnover": 150000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MARTIN AUX BOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 731062,
      "email": null,
      "id": 37282,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0055C001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-44506124",
      "postal_code": "60420",
      "siren": "509724233",
      "siret": "50972423300010",
      "status": "P",
      "store_name": "Bar Restaurant de l Abbaye",
      "street": "rue de l Abbaye",
      "street_number": 487,
      "turnover": 100000,
      "user_id": 311,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "2007-08-01",
      "closing_days_ids": [],
      "datlinq_code": 731099,
      "email": null,
      "id": 26,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "ND031001",
      "location_areas_ids": [],
      "owner_name": "Alexandre Heissat",
      "phone_number": "04-78610028",
      "postal_code": "69007",
      "siren": "498789460",
      "siret": "49878946000017",
      "status": "G",
      "store_name": "Boulangerie La Mie du Pain",
      "street": "rue Garibaldi",
      "street_number": 304,
      "turnover": 529637,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 731105,
      "email": null,
      "id": 736,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-44064565",
      "postal_code": "75013",
      "siren": "449636042",
      "siret": "44963604200011",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie la Grignote",
      "street": "rue de Tolbiac",
      "street_number": 10,
      "turnover": 208106,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 731596,
      "email": null,
      "id": 37283,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1043E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45395541",
      "postal_code": "75014",
      "siren": "538485665",
      "siret": "53848566500011",
      "status": "P",
      "store_name": "Restaurant la Porte Didot",
      "street": "boulevard Brune",
      "street_number": 77,
      "turnover": 100,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BERNIN",
      "client_creation_date": "2010",
      "closing_days_ids": [],
      "datlinq_code": 731759,
      "email": null,
      "id": 4750,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "OD298001",
      "location_areas_ids": [],
      "owner_name": "MORHAIN",
      "phone_number": "09-83400260",
      "postal_code": "38190",
      "siren": "523953842",
      "siret": "52395384200011",
      "status": "M",
      "store_name": "Boulangerie la Boulange",
      "street": "route Departementale 1090",
      "street_number": 134,
      "turnover": 180000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "2010-07-01",
      "closing_days_ids": [],
      "datlinq_code": 731825,
      "email": null,
      "id": 27,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "M2955001",
      "location_areas_ids": [],
      "owner_name": "LAMINE",
      "phone_number": "06-14913382",
      "postal_code": "06000",
      "siren": "523899854",
      "siret": "52389985400013",
      "status": "P",
      "store_name": "Boulangerie Lamine",
      "street": "avenue du Marechal Lyautey",
      "street_number": 79,
      "turnover": 220000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATENOY EN BRESSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 731856,
      "email": null,
      "id": 50375,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010033819252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 385415714",
      "postal_code": "71380",
      "siren": "422609107",
      "siret": "42260910700012",
      "status": "G",
      "store_name": "Restaurant la Roseraie Chalon",
      "street": "Prairie Saint Nicolas",
      "street_number": null,
      "turnover": 200000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHANTELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 732214,
      "email": null,
      "id": 39893,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0424F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "09-50755366",
      "postal_code": "03140",
      "siren": "802333856",
      "siret": null,
      "status": "P",
      "store_name": "Restaurant la Taverne",
      "street": "Grande Rue",
      "street_number": 22,
      "turnover": 190000,
      "user_id": 51,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE THOLONET",
      "client_creation_date": "31-10-2012",
      "closing_days_ids": [],
      "datlinq_code": 732801,
      "email": null,
      "id": 4751,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Anthony Guichard",
      "phone_number": "06-62525585",
      "postal_code": "13100",
      "siren": "789034774",
      "siret": "78903477400016",
      "status": "M",
      "store_name": "Boulangerie Anthony",
      "street": "Espace commercial du Moulin - lot 11 - avenue Paul JULLIEN",
      "street_number": 1652,
      "turnover": 500000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOUGUENAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 733144,
      "email": null,
      "id": 4752,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "3471E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-20315364",
      "postal_code": "44340",
      "siren": "431612704",
      "siret": "43161270400020",
      "status": "P",
      "store_name": "Boulangerie les Saveurs d'Autrefois",
      "street": "rue de la Paix",
      "street_number": 10,
      "turnover": 200000,
      "user_id": 138,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LUMIO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 733269,
      "email": null,
      "id": 32375,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0975D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-95651120",
      "postal_code": "20260",
      "siren": "321500472",
      "siret": "32150047200022",
      "status": "M",
      "store_name": "Restaurant le Blockos",
      "street": "route de Calvi",
      "street_number": null,
      "turnover": 350000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BORDEAUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 733297,
      "email": null,
      "id": 4753,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56930015",
      "postal_code": "33000",
      "siren": "422756122",
      "siret": "42275612200111",
      "status": "P",
      "store_name": "Boulangerie Pain Maitre",
      "street": "rue du Chateau d Eau",
      "street_number": 54,
      "turnover": 200000,
      "user_id": 205,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANCY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 733630,
      "email": null,
      "id": 32377,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "40022001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83351756",
      "postal_code": "54000",
      "siren": "493793889",
      "siret": "49379388900012",
      "status": "P",
      "store_name": "Pizzeria Le Capri",
      "street": "rue Stanislas",
      "street_number": 26,
      "turnover": 1000,
      "user_id": 106,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NIEPPE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 733849,
      "email": null,
      "id": 37284,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016896252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320489713",
      "postal_code": "59850",
      "siren": "349259127",
      "siret": "34925912700026",
      "status": "P",
      "store_name": "Restaurant le Clos du Bac",
      "street": "rue de la Croix du Bac",
      "street_number": 664,
      "turnover": 110000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 733861,
      "email": null,
      "id": 32378,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010002759252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321314395",
      "postal_code": "62200",
      "siren": "333531044",
      "siret": "33353104400019",
      "status": "P",
      "store_name": "Restaurant Le Chatillon",
      "street": "rue Charles Tellier",
      "street_number": 6,
      "turnover": 80000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANGERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 734221,
      "email": null,
      "id": 37285,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010006725252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241708884",
      "postal_code": "49100",
      "siren": "801369786",
      "siret": "80136978600018",
      "status": "P",
      "store_name": "Fabricant le Fournil du Levant",
      "street": "rue du Soleil Levant",
      "street_number": 7,
      "turnover": 160000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 734244,
      "email": null,
      "id": 32379,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R4005001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43542455",
      "postal_code": "75005",
      "siren": "315430793",
      "siret": "31543079300010",
      "status": "EMPTY_STATUS",
      "store_name": "Le Depart",
      "street": "place Saint Michel",
      "street_number": 1,
      "turnover": null,
      "user_id": 91,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURCOING",
      "client_creation_date": "2009-04-29",
      "closing_days_ids": [],
      "datlinq_code": 736207,
      "email": null,
      "id": 740,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "HADHOM",
      "phone_number": "+33 320947091",
      "postal_code": "59200",
      "siren": "512177924",
      "siret": "51217792400010",
      "status": "P",
      "store_name": "Au Ble Dorer",
      "street": "rue du Pont de Neuville",
      "street_number": 232,
      "turnover": 8000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHELLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 736784,
      "email": null,
      "id": 46542,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Barba",
      "phone_number": "01-64729716",
      "postal_code": "77500",
      "siren": "351285069",
      "siret": "35128506900016",
      "status": "M",
      "store_name": "Restaurant le Rocael Club",
      "street": "rue Auguste Meunier",
      "street_number": 74,
      "turnover": 300000,
      "user_id": 311,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUCROISSANT",
      "client_creation_date": "2011-05-01",
      "closing_days_ids": [],
      "datlinq_code": 736883,
      "email": "yoann.palomino@yahoo.fr",
      "id": 4760,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1304F001",
      "location_areas_ids": [],
      "owner_name": "Palomino",
      "phone_number": "04-76329821",
      "postal_code": "38140",
      "siren": "821598810",
      "siret": "53159930600010",
      "status": "P",
      "store_name": "Boulangerie le Beau Croissant",
      "street": "rue du Bourg",
      "street_number": 75,
      "turnover": 120000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AIX EN PROVENCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 737271,
      "email": null,
      "id": 741,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "13090",
      "siren": "484474184",
      "siret": "48447418400013",
      "status": "P",
      "store_name": "Restaurant l'Escargot",
      "street": "avenue Winston Churchill",
      "street_number": 10,
      "turnover": 10000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANCY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 737291,
      "email": "lescesars@wanadoo.fr",
      "id": 41405,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1140F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83320886",
      "postal_code": "54000",
      "siren": "378232789",
      "siret": "37823278900016",
      "status": "P",
      "store_name": "Pizzeria les Cesars (Michelangelo)",
      "street": "place Stanislas",
      "street_number": 8,
      "turnover": 50000,
      "user_id": 106,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAVAY",
      "client_creation_date": "1992-01-01",
      "closing_days_ids": [],
      "datlinq_code": 737676,
      "email": null,
      "id": 37288,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010006682252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 327668700",
      "postal_code": "59570",
      "siren": "793602830",
      "siret": "79360283000028",
      "status": "P",
      "store_name": "Restaurant le Bagacum",
      "street": "rue d Audignies",
      "street_number": 2,
      "turnover": 160000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST EMILION",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 738183,
      "email": null,
      "id": 32384,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "IF137001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-57744633",
      "postal_code": "33330",
      "siren": "432174001",
      "siret": "43217400100011",
      "status": "P",
      "store_name": "Restaurant le Tertre",
      "street": "tertre de la Tente",
      "street_number": 5,
      "turnover": 100,
      "user_id": 203,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JASSANS RIOTTIER",
      "client_creation_date": "2006-06-13",
      "closing_days_ids": [],
      "datlinq_code": 738405,
      "email": null,
      "id": 4766,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012947252110",
      "location_areas_ids": [],
      "owner_name": "GRIZARD",
      "phone_number": "+33 474609203",
      "postal_code": "01480",
      "siren": "490498029",
      "siret": "49049802900019",
      "status": "G",
      "store_name": "Pains et Gourmandises",
      "street": "rue du Beaujolais",
      "street_number": 220,
      "turnover": 590000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WORMHOUT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 738697,
      "email": null,
      "id": 37289,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011981252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328656638",
      "postal_code": "59470",
      "siren": "418579413",
      "siret": "41857941300018",
      "status": "P",
      "store_name": "Restaurant l'Hofland",
      "street": "route d Herzeele",
      "street_number": 730,
      "turnover": 50000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAZAN",
      "client_creation_date": "02/06/2016",
      "closing_days_ids": [],
      "datlinq_code": 739375,
      "email": null,
      "id": 47544,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Maillaud ",
      "phone_number": "04-90698764",
      "postal_code": "84380",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "Restaurant l'Oulo",
      "street": "la Venue de Mormoiron",
      "street_number": 500,
      "turnover": 500000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTERRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 739547,
      "email": null,
      "id": 41406,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-46950796",
      "postal_code": "92000",
      "siren": "435291471",
      "siret": "43529147100025",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwichs Alvaro Cafe",
      "street": "rue des 3 Fontanot",
      "street_number": 70,
      "turnover": null,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THONON LES BAINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 740021,
      "email": null,
      "id": 28,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0584D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50261799",
      "postal_code": "74200",
      "siren": "482983822",
      "siret": "48298382200016",
      "status": "P",
      "store_name": "Le Bosphore",
      "street": "rue des Granges",
      "street_number": 32,
      "turnover": 1000,
      "user_id": 263,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTIGNY LES CORMEILLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 740245,
      "email": null,
      "id": 32386,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0940W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-30260222",
      "postal_code": "95370",
      "siren": "488693920",
      "siret": "48869392000024",
      "status": "P",
      "store_name": "Presto Pizza",
      "street": "residence de la Gare",
      "street_number": 20,
      "turnover": 80000,
      "user_id": 80,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEFRANCHE SUR SAONE",
      "client_creation_date": "2009",
      "closing_days_ids": [],
      "datlinq_code": 740424,
      "email": null,
      "id": 38109,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "VEZIAN ",
      "phone_number": "09-80386664",
      "postal_code": "69400",
      "siren": "749904033",
      "siret": "74990403300018",
      "status": "G",
      "store_name": "Sandwicherie Pain et Compagnie",
      "street": "rue de la Paix",
      "street_number": 152,
      "turnover": 450000,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THIVARS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 740810,
      "email": null,
      "id": 32387,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010006773252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 237263031",
      "postal_code": "28630",
      "siren": "448928945",
      "siret": "44892894500014",
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant le P'Thivars",
      "street": "rue Nationale",
      "street_number": 23,
      "turnover": 90000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AJACCIO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 740872,
      "email": null,
      "id": 32388,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1082B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "20000",
      "siren": "482168010",
      "siret": "48216801000015",
      "status": "P",
      "store_name": "Le Passe Temps",
      "street": "rue du Cardinal Fesch",
      "street_number": 37,
      "turnover": 197000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 740927,
      "email": null,
      "id": 32389,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010002376252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235211478",
      "postal_code": "76600",
      "siren": "400260956",
      "siret": "40026095600018",
      "status": "P",
      "store_name": "Creperie la Cave",
      "street": "avenue Rene Coty",
      "street_number": 49,
      "turnover": 50000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "IVRY SUR SEINE",
      "client_creation_date": "1-1-2003",
      "closing_days_ids": [],
      "datlinq_code": 741179,
      "email": null,
      "id": 4772,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-46710103",
      "postal_code": "94200",
      "siren": "478588106",
      "siret": "0",
      "status": "P",
      "store_name": "Boulangerie au Vieux Moulin",
      "street": "rue Barbes",
      "street_number": 7,
      "turnover": 300000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 741245,
      "email": null,
      "id": 39894,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45848784",
      "postal_code": "75013",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie Mekong",
      "street": "rue de Tolbiac",
      "street_number": 135,
      "turnover": null,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ÉCOURT-SAINT-QUENTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 741429,
      "email": null,
      "id": 32390,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010019214252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321484569",
      "postal_code": "62860",
      "siren": "422353599",
      "siret": "42235359900018",
      "status": "P",
      "store_name": "Restaurant Maison Merlin",
      "street": "Rue Henri Barbusse",
      "street_number": 198,
      "turnover": 50000,
      "user_id": 416,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARTIGUES",
      "client_creation_date": "1-1-2008",
      "closing_days_ids": [],
      "datlinq_code": 741456,
      "email": null,
      "id": 4774,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "RICCI",
      "phone_number": "04-42421666",
      "postal_code": "13500",
      "siren": "524666039",
      "siret": "52466603900010",
      "status": "M",
      "store_name": "Boulangerie le Fournil de l'ile",
      "street": "rue de la Republique",
      "street_number": 15,
      "turnover": 220000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARTIGUES",
      "client_creation_date": "1-1-1999",
      "closing_days_ids": [],
      "datlinq_code": 741766,
      "email": "magreda@hotmail.fr",
      "id": 4776,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RLO24001",
      "location_areas_ids": [],
      "owner_name": "BANINO Marc",
      "phone_number": "04-42445809",
      "postal_code": "13500",
      "siren": "523805182",
      "siret": "52380518200012",
      "status": "G",
      "store_name": "Boulangerie la Dolce Vita",
      "street": "rue Olivier Griscelli",
      "street_number": 5,
      "turnover": 600000,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BERCK",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 741861,
      "email": null,
      "id": 32391,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016879252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321098040",
      "postal_code": "62600",
      "siren": "617320148",
      "siret": "61732014800019",
      "status": "P",
      "store_name": "Hotel Reingam Park",
      "street": "chemin Genty",
      "street_number": null,
      "turnover": 50000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MORTCERF",
      "client_creation_date": "1-8-2012",
      "closing_days_ids": [],
      "datlinq_code": 742273,
      "email": null,
      "id": 4778,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ROBARD",
      "phone_number": "01-64656421",
      "postal_code": "77163",
      "siren": "753089911",
      "siret": "75308991100014",
      "status": "P",
      "store_name": "La P'tite Boulangerie",
      "street": "rue du 27 Aout",
      "street_number": 67,
      "turnover": 284000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BANYULS SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 742280,
      "email": null,
      "id": 50376,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010034009252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 618163594",
      "postal_code": "66650",
      "siren": "829462084",
      "siret": "82946208400015",
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant la Vieille Cave",
      "street": "rue Marius Douzans",
      "street_number": 12,
      "turnover": null,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 742728,
      "email": null,
      "id": 4779,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BODIAN",
      "phone_number": "01-46064181",
      "postal_code": "75018",
      "siren": "531316602",
      "siret": "53131660200014",
      "status": "G",
      "store_name": "Boulangerie le Grenier a Pain",
      "street": "rue des Abbesses",
      "street_number": 38,
      "turnover": 976000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTEVRAIN",
      "client_creation_date": "04/1998",
      "closing_days_ids": [],
      "datlinq_code": 742757,
      "email": null,
      "id": 46543,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0031G001",
      "location_areas_ids": [],
      "owner_name": "Chaudhry",
      "phone_number": "01-60360606",
      "postal_code": "77144",
      "siren": "418922647",
      "siret": "41892264700015",
      "status": "G",
      "store_name": "Restaurant Planete Indienne",
      "street": "avenue Thibaud de Champagne",
      "street_number": 45,
      "turnover": 900000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WASIGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 742924,
      "email": null,
      "id": 4781,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 324722593",
      "postal_code": "08270",
      "siren": "787312651",
      "siret": "78731265100013",
      "status": "P",
      "store_name": "Boulangerie Coutelot",
      "street": "rue Basse",
      "street_number": 3,
      "turnover": 100000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VICO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 743845,
      "email": null,
      "id": 4783,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ORSINI",
      "phone_number": "04-95266251",
      "postal_code": "20160",
      "siren": "783038292",
      "siret": "78303829200018",
      "status": "P",
      "store_name": "Boulangerie Orsini Edmond",
      "street": "place Laurent Marie Savoyardi",
      "street_number": null,
      "turnover": 10000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE VESINET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 744632,
      "email": null,
      "id": 41408,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0910F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-30097150",
      "postal_code": "78110",
      "siren": "431425032",
      "siret": "43142503200015",
      "status": "P",
      "store_name": "Restaurant Pavillon des Ibis",
      "street": "ile des Ibis",
      "street_number": null,
      "turnover": 200000,
      "user_id": 96,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAR SUR AUBE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 744873,
      "email": null,
      "id": 32392,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016406252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 325271417",
      "postal_code": "10200",
      "siren": "412513277",
      "siret": "41251327700019",
      "status": "P",
      "store_name": "Restaurant l'Albatros",
      "street": "rue Nationale",
      "street_number": 136,
      "turnover": 20000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONT ST MARTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 745070,
      "email": null,
      "id": 32393,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003897252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 382255501",
      "postal_code": "54350",
      "siren": "378162283",
      "siret": "37816228300014",
      "status": "P",
      "store_name": "La Castellina Pizzeria",
      "street": "route de Longwy",
      "street_number": 130,
      "turnover": 1000,
      "user_id": 393,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CALAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 745349,
      "email": null,
      "id": 32394,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011663252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321973509",
      "postal_code": "62100",
      "siren": "380003467",
      "siret": "38000346700012",
      "status": "P",
      "store_name": "Pic Pouce",
      "street": "boulevard Victor Hugo",
      "street_number": 235,
      "turnover": 100000,
      "user_id": 422,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAMBALLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 746151,
      "email": null,
      "id": 4790,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "LEVAILLANT JACQUES",
      "phone_number": "02-96310231",
      "postal_code": "22400",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Levaillant le Goualher",
      "street": "rue Bario",
      "street_number": 4,
      "turnover": 441850,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 746601,
      "email": null,
      "id": 4791,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45837791",
      "postal_code": "75013",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Myu Myu",
      "street": "rue Philibert Lucot",
      "street_number": 17,
      "turnover": 245545,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "OUDON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 746651,
      "email": null,
      "id": 4792,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40960849",
      "postal_code": "44521",
      "siren": "524208188",
      "siret": "52420818800010",
      "status": "P",
      "store_name": "Boulangerie les Délices De La Tour",
      "street": "rue Alphonse Fouschard",
      "street_number": 106,
      "turnover": 340000,
      "user_id": 144,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PLESSIS BOUCHARD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 747311,
      "email": null,
      "id": 32396,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1370B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-34145827",
      "postal_code": "95130",
      "siren": "383776416",
      "siret": "38377641600018",
      "status": "G",
      "store_name": "Repas 95",
      "street": "rue Louis Armand",
      "street_number": 9,
      "turnover": 1000000,
      "user_id": 80,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST FONS",
      "client_creation_date": "2009",
      "closing_days_ids": [],
      "datlinq_code": 747585,
      "email": null,
      "id": 31,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "U0136001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78709315",
      "postal_code": "69190",
      "siren": "950393793",
      "siret": "95039379300019",
      "status": "P",
      "store_name": "Restaurant Ferroux",
      "street": "rue Pasteur",
      "street_number": 9,
      "turnover": 230000,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TIFFAUGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 747723,
      "email": "contact@lepresbytere.fr",
      "id": 46544,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-51576339",
      "postal_code": "85130",
      "siren": "453688590",
      "siret": "45368859000018",
      "status": "P",
      "store_name": "Restaurant le Presbytère",
      "street": "place de l Eglise",
      "street_number": 3,
      "turnover": 80000,
      "user_id": 153,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOURGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 747822,
      "email": null,
      "id": 39895,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Santoro",
      "phone_number": "02-48242985",
      "postal_code": "18000",
      "siren": "342445178",
      "siret": "34244517800011",
      "status": "M",
      "store_name": "Restaurant Pizzeria Calabria",
      "street": "place du General Leclerc",
      "street_number": 14,
      "turnover": 460000,
      "user_id": 51,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARGENTEUIL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 747848,
      "email": null,
      "id": 32397,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "8,52E+03",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-34101997",
      "postal_code": "95100",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant Salon La Belle Alliance",
      "street": "rue Charles Michels",
      "street_number": 5,
      "turnover": null,
      "user_id": 79,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MEYTHET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 747975,
      "email": null,
      "id": 32,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "74966001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50227490",
      "postal_code": "74960",
      "siren": "481438513",
      "siret": "48143851300022",
      "status": "P",
      "store_name": "Pizza Pepone",
      "street": "rue du Vieux Moulin",
      "street_number": null,
      "turnover": 1000,
      "user_id": 263,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 748197,
      "email": null,
      "id": 32399,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "90331001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45551201",
      "postal_code": "75007",
      "siren": "612008219",
      "siret": "61200821900018",
      "status": "P",
      "store_name": "Restaurant Tribeca",
      "street": "rue Cler",
      "street_number": 36,
      "turnover": 0,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MALAUCENE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 748343,
      "email": null,
      "id": 47545,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DESPEISSE THIERRY",
      "phone_number": "04-90652357",
      "postal_code": "84340",
      "siren": "528834641",
      "siret": "52883464100011",
      "status": "P",
      "store_name": "Restaurant le Ventoux",
      "street": "avenue de Verdun",
      "street_number": null,
      "turnover": 168000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARCUEIL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 748907,
      "email": null,
      "id": 749,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42535748",
      "postal_code": "94110",
      "siren": "334297561",
      "siret": "33429756100022",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie la Grignote",
      "street": "avenue Jean Jaures",
      "street_number": 100,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GOURDON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 749695,
      "email": null,
      "id": 33,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "2094E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93096889",
      "postal_code": "06620",
      "siren": "803416510",
      "siret": "32227405100026",
      "status": "P",
      "store_name": "Epicerie Sainte Catherine",
      "street": "place Sainte Catherine",
      "street_number": 1,
      "turnover": 20000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAUTERNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 749787,
      "email": null,
      "id": 32401,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "27022001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56766087",
      "postal_code": "33210",
      "siren": "535359210",
      "siret": "53535921000015",
      "status": "P",
      "store_name": "Restaurant Saprien",
      "street": "rue Principale",
      "street_number": 14,
      "turnover": 100,
      "user_id": 205,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 749792,
      "email": null,
      "id": 38112,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561426250",
      "postal_code": "31300",
      "siren": "443293014",
      "siret": "44329301400017",
      "status": "P",
      "store_name": "Viennoiserie Coffe Bagels",
      "street": "place Interieure Saint Cyprien",
      "street_number": 7,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "2005",
      "closing_days_ids": [],
      "datlinq_code": 749870,
      "email": null,
      "id": 4798,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-72349578",
      "postal_code": "69003",
      "siren": "481939221",
      "siret": "48193922100018",
      "status": "P",
      "store_name": "Boulangerie les Douceurs de Melisse",
      "street": "rue du Dauphine",
      "street_number": 47,
      "turnover": 289000,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAILLEUL SUR THERAIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 749920,
      "email": null,
      "id": 4799,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "2268E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-44076707",
      "postal_code": "60930",
      "siren": "797967486",
      "siret": "79796748600011",
      "status": "P",
      "store_name": "Boulangerie Vermeulen",
      "street": "place Maurice Segonds",
      "street_number": null,
      "turnover": 210000,
      "user_id": 78,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DIENVILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 750096,
      "email": "harnet.laure@orange.fr",
      "id": 32402,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016057252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 325922223",
      "postal_code": "10500",
      "siren": "391601317",
      "siret": "39160131700012",
      "status": "P",
      "store_name": "Pizzeria Aux Trois Pianos",
      "street": "rue du Fosse",
      "street_number": 100,
      "turnover": 20000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": "2000-01-01",
      "closing_days_ids": [],
      "datlinq_code": 750587,
      "email": null,
      "id": 32403,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010004608252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235436207",
      "postal_code": "76600",
      "siren": "418537734",
      "siret": "41853773400034",
      "status": "P",
      "store_name": "Restaurant Le Grignot",
      "street": "rue Racine",
      "street_number": 53,
      "turnover": 90000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1 mars 2004",
      "closing_days_ids": [],
      "datlinq_code": 750734,
      "email": null,
      "id": 4802,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45633434",
      "postal_code": "75008",
      "siren": "452541089",
      "siret": "45254108900010",
      "status": "M",
      "store_name": "Boulangerie Le Pain Du Faubourg",
      "street": "rue du Faubourg Saint Honore",
      "street_number": 165,
      "turnover": 1670401,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MARTIN DES CHAMPS",
      "client_creation_date": "2012",
      "closing_days_ids": [],
      "datlinq_code": 750805,
      "email": null,
      "id": 4803,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Remeur/Le Gall",
      "phone_number": "02-98624316",
      "postal_code": "29600",
      "siren": "504766221",
      "siret": "50476622100023",
      "status": "M",
      "store_name": "Boulangerie la Farinette",
      "street": "rue du Puits",
      "street_number": 2,
      "turnover": 530000,
      "user_id": 147,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "REIMS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 750868,
      "email": null,
      "id": 41409,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326854711",
      "postal_code": "51100",
      "siren": "429932619",
      "siret": "42993261900019",
      "status": "P",
      "store_name": "Restaurant le Flechambault",
      "street": "esplanade Flechambault",
      "street_number": 2,
      "turnover": 1000,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "09/2009",
      "closing_days_ids": [],
      "datlinq_code": 751421,
      "email": null,
      "id": 4807,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0129G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "75020",
      "siren": "514887900",
      "siret": "51488790000017",
      "status": "M",
      "store_name": "Boulangerie au Fournil des Pyrenees",
      "street": "rue des Pyrenees",
      "street_number": 244,
      "turnover": 316000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LABEGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 751665,
      "email": null,
      "id": 752,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 562249743",
      "postal_code": "31670",
      "siren": "408218931",
      "siret": "40821893100025",
      "status": "P",
      "store_name": "Croissanterie le Lafayette",
      "street": "chemin de la Grande Borde",
      "street_number": null,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GAP",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 752339,
      "email": null,
      "id": 4812,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1837D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92523349",
      "postal_code": "05000",
      "siren": "803621036",
      "siret": "80362103600026",
      "status": "P",
      "store_name": "Boulangerie le Petit Nicolas",
      "street": "avenue de Provence",
      "street_number": 78,
      "turnover": 100000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 752576,
      "email": null,
      "id": 753,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-90931938",
      "postal_code": "13200",
      "siren": "483442695",
      "siret": "48344269500019",
      "status": "P",
      "store_name": "La Maison des Gourmands",
      "street": "rond Point des Arenes",
      "street_number": 28,
      "turnover": 10000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA BRESSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 752937,
      "email": null,
      "id": 32405,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "2120C001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-29254245",
      "postal_code": "88250",
      "siren": "380599613",
      "siret": "38059961300011",
      "status": "P",
      "store_name": "Lispach Evasion",
      "street": "route de Lispach",
      "street_number": null,
      "turnover": 90000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TULLINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 753047,
      "email": null,
      "id": 38114,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "2949E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76078979",
      "postal_code": "38210",
      "siren": "482906120",
      "siret": "48290612000019",
      "status": "M",
      "store_name": "Restaurant Le Colisee",
      "street": "boulevard Michel Perret",
      "street_number": 56,
      "turnover": 284158,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AUXERRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 753230,
      "email": null,
      "id": 755,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386526655",
      "postal_code": "89000",
      "siren": "413569864",
      "siret": "41356986400015",
      "status": "EMPTY_STATUS",
      "store_name": "Au Point Gourmand",
      "street": "Place Charles Surugue",
      "street_number": 2,
      "turnover": null,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TULLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 753237,
      "email": null,
      "id": 37291,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "2378E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-55265012",
      "postal_code": "19000",
      "siren": "478263619",
      "siret": "47826361900023",
      "status": "P",
      "store_name": "Restaurant La Caleche",
      "street": "avenue Victor Hugo",
      "street_number": 28,
      "turnover": 100,
      "user_id": 196,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VARILHES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 753270,
      "email": null,
      "id": 4815,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007130252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561607679",
      "postal_code": "09120",
      "siren": "752428284",
      "siret": "75242828400018",
      "status": "P",
      "store_name": "Boulangerie Jolibert Massat",
      "street": "place de l Hotel de Ville",
      "street_number": 4,
      "turnover": 190000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 753395,
      "email": null,
      "id": 32406,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "J0514001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42711716",
      "postal_code": "75004",
      "siren": "478785900",
      "siret": "47878590000018",
      "status": "EMPTY_STATUS",
      "store_name": "Sarl Pele",
      "street": "rue Pavee",
      "street_number": 8,
      "turnover": null,
      "user_id": 91,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUVOIS EN CAMBRESIS",
      "client_creation_date": "2010-01-01",
      "closing_days_ids": [],
      "datlinq_code": 753490,
      "email": null,
      "id": 4816,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "JACQUEMART",
      "phone_number": "+33 327725407",
      "postal_code": "59157",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "Boulangerie le Fournil Gourmand",
      "street": "rue Victor Watremez",
      "street_number": 3,
      "turnover": 850000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MIREPOIX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 754087,
      "email": null,
      "id": 47546,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561681365",
      "postal_code": "09500",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Saveurs des Couverts",
      "street": "place du Marechal Leclerc",
      "street_number": 20,
      "turnover": 120000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOYAT",
      "client_creation_date": "2010-05-01",
      "closing_days_ids": [],
      "datlinq_code": 754158,
      "email": null,
      "id": 4818,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31516001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-97930546",
      "postal_code": "56800",
      "siren": "524451739",
      "siret": "52445173900014",
      "status": "M",
      "store_name": "Cafe des Sports Boulangerie de l'Eglise",
      "street": "place de l Eglise",
      "street_number": 1,
      "turnover": 170000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "POUILLON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 754245,
      "email": null,
      "id": 32409,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1011W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-58983465",
      "postal_code": "40350",
      "siren": "423832948",
      "siret": "42383294800016",
      "status": "P",
      "store_name": "Restaurant l'Auberge du Pas de Vent",
      "street": "avenue du Pas de Vent",
      "street_number": 281,
      "turnover": 100,
      "user_id": 209,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1 mars 2012",
      "closing_days_ids": [],
      "datlinq_code": 754309,
      "email": null,
      "id": 32410,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0636B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45273291",
      "postal_code": "75016",
      "siren": "750288730",
      "siret": "75028873000013",
      "status": "P",
      "store_name": "Restaurant SEMNGVD",
      "street": "rue du Ranelagh",
      "street_number": 74,
      "turnover": 96560,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STRASBOURG",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 754357,
      "email": null,
      "id": 756,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-88324547",
      "postal_code": "67000",
      "siren": "345048722",
      "siret": "34504872200028",
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant les Deux Gourmandes",
      "street": "rue des Serruriers",
      "street_number": 1,
      "turnover": null,
      "user_id": 112,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "YVETOT",
      "client_creation_date": "2018-01-01",
      "closing_days_ids": [],
      "datlinq_code": 754631,
      "email": "toutain.boulangerie@gmail.com",
      "id": 4819,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010033345252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235951130",
      "postal_code": "76190",
      "siren": "531772010",
      "siret": "53177201000017",
      "status": "M",
      "store_name": "Boulangerie Toutain",
      "street": "rue de la Republique",
      "street_number": 20,
      "turnover": 265000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE MONASTIER SUR GAZEILLE",
      "client_creation_date": "01/03/2008",
      "closing_days_ids": [],
      "datlinq_code": 754736,
      "email": "boulangerie.allemand@orange.fr",
      "id": 4821,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "ME172001",
      "location_areas_ids": [],
      "owner_name": "Laurent ALLEMAND",
      "phone_number": "04-71038614",
      "postal_code": "43150",
      "siren": "413656075",
      "siret": "41365607500020",
      "status": "P",
      "store_name": "Boulangerie Allemand Laurent",
      "street": "rue Saint Pierre",
      "street_number": 85,
      "turnover": 92000,
      "user_id": 54,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COUDEKERQUE BRANCHE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 754743,
      "email": null,
      "id": 4822,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328582597",
      "postal_code": "59210",
      "siren": "525082574",
      "siret": "52508257400019",
      "status": "P",
      "store_name": "Boulangerie Verhille",
      "street": "rue Rembrandt",
      "street_number": 1,
      "turnover": 190000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 754791,
      "email": null,
      "id": 35,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "M2039001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93898901",
      "postal_code": "06300",
      "siren": "325783215",
      "siret": "32578321500016",
      "status": "M",
      "store_name": "Boulangerie Alphazur",
      "street": "rue de Orestis",
      "street_number": 19,
      "turnover": 168310,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PONT ST PIERRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 755317,
      "email": null,
      "id": 32412,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010001947252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232493924",
      "postal_code": "27360",
      "siren": "479698169",
      "siret": "47969816900014",
      "status": "P",
      "store_name": "Pizzeria le Latin",
      "street": "place du Square Philbert",
      "street_number": 10,
      "turnover": 90000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRAND FOUGERAY",
      "client_creation_date": "2010-08-06",
      "closing_days_ids": [],
      "datlinq_code": 755356,
      "email": null,
      "id": 4826,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0782B001",
      "location_areas_ids": [],
      "owner_name": "VILLETTE",
      "phone_number": "02-99084255",
      "postal_code": "35390",
      "siren": "524200326",
      "siret": "52420032600014",
      "status": "P",
      "store_name": "Boulangerie l'Ille aux Pains",
      "street": "place de l Eglise",
      "street_number": 23,
      "turnover": 190000,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RETIERS",
      "client_creation_date": "2007-03-09",
      "closing_days_ids": [],
      "datlinq_code": 755651,
      "email": null,
      "id": 4827,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "30566001",
      "location_areas_ids": [],
      "owner_name": "FLEURY",
      "phone_number": "02-99435471",
      "postal_code": "35240",
      "siren": "442077152",
      "siret": "44207715200027",
      "status": "M",
      "store_name": "Boulangerie Fleury",
      "street": "rue Pasteur",
      "street_number": 3,
      "turnover": 230000,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 755710,
      "email": null,
      "id": 50377,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 975122878",
      "postal_code": "31200",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "la Boite a Pizza",
      "street": "avenue des Minimes",
      "street_number": 15,
      "turnover": null,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LIMOGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756047,
      "email": null,
      "id": 37294,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "26076001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-55331321",
      "postal_code": "87000",
      "siren": "793085218",
      "siret": "79308521800014",
      "status": "P",
      "store_name": "Restaurant San Marco",
      "street": "rue Charles Michels",
      "street_number": 11,
      "turnover": 100,
      "user_id": 199,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MOULEYDIER",
      "client_creation_date": "1987",
      "closing_days_ids": [],
      "datlinq_code": 756096,
      "email": null,
      "id": 4831,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "24520",
      "siren": "800502031",
      "siret": "80050203100019",
      "status": "P",
      "store_name": "Boulangerie de Tuilieres",
      "street": "avenue du Barrage",
      "street_number": 725,
      "turnover": 155000,
      "user_id": 198,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756210,
      "email": null,
      "id": 47548,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1636G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92992717",
      "postal_code": "06400",
      "siren": "393537618",
      "siret": "39353761800026",
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant l'Auberge Provencale",
      "street": "petite Rue Saint Antoine",
      "street_number": 10,
      "turnover": 200,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA BREE LES BAINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756258,
      "email": "lesecluses@orange.fr",
      "id": 37295,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "LI180001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46765637",
      "postal_code": "17840",
      "siren": "301331757",
      "siret": "30133175700015",
      "status": "P",
      "store_name": "Crêperie les Ecluses",
      "street": "rue du Douhet",
      "street_number": null,
      "turnover": 2000,
      "user_id": 155,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAPBRETON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756290,
      "email": null,
      "id": 32414,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "02327001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-58722280",
      "postal_code": "40130",
      "siren": "310160023",
      "siret": "31016002300019",
      "status": "P",
      "store_name": "Regalty",
      "street": "Residence Mille Sabords",
      "street_number": null,
      "turnover": 100,
      "user_id": 209,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PEYRENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756484,
      "email": null,
      "id": 34355,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0010003070252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468604013",
      "postal_code": "11400",
      "siren": "419758982",
      "siret": "41975898200013",
      "status": "P",
      "store_name": "Restaurant la Caleche",
      "street": "rue de la Croix",
      "street_number": 1,
      "turnover": 100000,
      "user_id": 440,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATEL GUYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756815,
      "email": null,
      "id": 4833,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0661D001",
      "location_areas_ids": [],
      "owner_name": "EHLINGER",
      "phone_number": "04-73862198",
      "postal_code": "63140",
      "siren": "750416430",
      "siret": "75041643000015",
      "status": "P",
      "store_name": "Boulangerie Patisserie Ehlinger",
      "street": "rue du Commerce",
      "street_number": 6,
      "turnover": 180000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 756890,
      "email": null,
      "id": 32415,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R3102001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42659600",
      "postal_code": "75008",
      "siren": "784333866",
      "siret": "78433386600019",
      "status": "P",
      "store_name": "Restaurant Cercle de l'Union Interalliée",
      "street": "rue du Faubourg Saint Honore",
      "street_number": 33,
      "turnover": 2000,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JOIGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 757678,
      "email": null,
      "id": 32416,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010670252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386621734",
      "postal_code": "89300",
      "siren": "447978578",
      "siret": "44797857800022",
      "status": "P",
      "store_name": "Restaurant Grilladerie",
      "street": "rue Robert Petit",
      "street_number": 8,
      "turnover": 5000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 757736,
      "email": null,
      "id": 32417,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007784252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321307782",
      "postal_code": "62200",
      "siren": "493994974",
      "siret": "49399497400019",
      "status": "P",
      "store_name": "La Boite A Gouter",
      "street": "centre Commercial de la Liane",
      "street_number": 29,
      "turnover": 70000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANNES",
      "client_creation_date": "2010-10-01",
      "closing_days_ids": [],
      "datlinq_code": 758145,
      "email": null,
      "id": 4835,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0998F001",
      "location_areas_ids": [],
      "owner_name": " Moudens",
      "phone_number": "04-93680939",
      "postal_code": "06400",
      "siren": "803544931",
      "siret": "52887979400014",
      "status": "M",
      "store_name": "La Boulangerie du Marche",
      "street": "rue du Marche Forville",
      "street_number": 14,
      "turnover": 729000,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FLEURANCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 758146,
      "email": null,
      "id": 4836,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010034423252110",
      "location_areas_ids": [],
      "owner_name": "BAQUER",
      "phone_number": "+33 562642260",
      "postal_code": "32500",
      "siren": "539370262",
      "siret": "53937026200013",
      "status": "G",
      "store_name": "Boulangerie Baquer",
      "street": "rue des Amours",
      "street_number": null,
      "turnover": 986081,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MANDELIEU LA NAPOULE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 758277,
      "email": null,
      "id": 38,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "M2908001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93498940",
      "postal_code": "6210",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Snack Club Cafe",
      "street": "avenue de Cannes",
      "street_number": 269,
      "turnover": null,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOUDEAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 759241,
      "email": null,
      "id": 32421,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "B0228001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-96283498",
      "postal_code": "22600",
      "siren": "437614886",
      "siret": "43761488600012",
      "status": "M",
      "store_name": "La Belle Epoque",
      "street": "rue de Pontivy",
      "street_number": 14,
      "turnover": 150000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FRESNES",
      "client_creation_date": "1-1-2014",
      "closing_days_ids": [],
      "datlinq_code": 759439,
      "email": null,
      "id": 4839,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0651D001",
      "location_areas_ids": [],
      "owner_name": "MONCEF ZEGUIR",
      "phone_number": "01-57191586",
      "postal_code": "94260",
      "siren": "524425907",
      "siret": "52442590700010",
      "status": "P",
      "store_name": "Boulangerie La Fresnoise",
      "street": "avenue de la Paix",
      "street_number": 43,
      "turnover": 250000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA TOUR DU PIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760192,
      "email": null,
      "id": 4840,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ISABELLE JACQUIGNON",
      "phone_number": "04-74882580",
      "postal_code": "38110",
      "siren": "540046257",
      "siret": "54004625700015",
      "status": "P",
      "store_name": "Boulangerie Jacquignon",
      "street": "place Carnot",
      "street_number": 4,
      "turnover": 281300,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SURGY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760444,
      "email": null,
      "id": 50378,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010033758252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386271680",
      "postal_code": "58500",
      "siren": "789436193",
      "siret": "78943619300013",
      "status": "P",
      "store_name": "Boulangerie aux Delices de Surgy",
      "street": "rue du Bourbasson",
      "street_number": 1,
      "turnover": 180000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PUTEAUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760494,
      "email": null,
      "id": 37297,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1821D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "92800",
      "siren": "511607889",
      "siret": "51160788900025",
      "status": "P",
      "store_name": "Sandwicherie Wallace",
      "street": "boulevard Richard Wallace",
      "street_number": 7,
      "turnover": 200000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PORTO VECCHIO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760513,
      "email": null,
      "id": 760,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-95700870",
      "postal_code": "20137",
      "siren": "448844670",
      "siret": "44884467000027",
      "status": "P",
      "store_name": "Sandwicherie la Fringale",
      "street": "cours Napoleon",
      "street_number": 20,
      "turnover": 10000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "2015",
      "closing_days_ids": [],
      "datlinq_code": 760525,
      "email": "nice@classcroute.com",
      "id": 41411,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92007700",
      "postal_code": "06200",
      "siren": "527941777",
      "siret": "52794177700023",
      "status": "P",
      "store_name": "Class'croute",
      "street": "avenue Simone Veil",
      "street_number": 63,
      "turnover": 200000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PUGET SUR ARGENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760550,
      "email": null,
      "id": 763,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-94455850",
      "postal_code": "83480",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Croissanterie",
      "street": "route Nationale 7",
      "street_number": null,
      "turnover": null,
      "user_id": 185,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RUEIL MALMAISON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760635,
      "email": null,
      "id": 41412,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-55470101",
      "postal_code": "92500",
      "siren": "439087008",
      "siret": "43908700800025",
      "status": "EMPTY_STATUS",
      "store_name": "Class'croute",
      "street": "avenue Paul Doumer",
      "street_number": 10,
      "turnover": null,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CUGNAUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760664,
      "email": null,
      "id": 50379,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 562872872",
      "postal_code": "31270",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Boite à Pizza",
      "street": "avenue Georges Pompidou",
      "street_number": null,
      "turnover": null,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTAUBAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760666,
      "email": null,
      "id": 50380,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 563204204",
      "postal_code": "82000",
      "siren": "443163936",
      "siret": "44316393600026",
      "status": "EMPTY_STATUS",
      "store_name": "La Boite A Pizza",
      "street": "rue Jean Monnet",
      "street_number": 12,
      "turnover": null,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LUCENAY",
      "client_creation_date": "2012-01-13",
      "closing_days_ids": [],
      "datlinq_code": 760775,
      "email": null,
      "id": 39,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0277E001",
      "location_areas_ids": [],
      "owner_name": "PAPIN LAURENT",
      "phone_number": "0474670610",
      "postal_code": "69480",
      "siren": "539157412",
      "siret": "53915741200013",
      "status": "M",
      "store_name": "Boulangerie aux Pains d'Antan",
      "street": "route d Anse",
      "street_number": 114,
      "turnover": 192000,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST OUEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760777,
      "email": null,
      "id": 41413,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-49212020",
      "postal_code": "93400",
      "siren": "525310967",
      "siret": "52531096700019",
      "status": "P",
      "store_name": "Class'croute",
      "street": "avenue Gabriel Peri",
      "street_number": 50,
      "turnover": 100000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RUEIL MALMAISON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760811,
      "email": null,
      "id": 32423,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0545B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-41421344",
      "postal_code": "92500",
      "siren": "432126787",
      "siret": "43212678700014",
      "status": "P",
      "store_name": "Snack Alibi",
      "street": "rue des 2 Gares",
      "street_number": 1,
      "turnover": 100000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CHAMOND",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760909,
      "email": null,
      "id": 772,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0349A001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-77228883",
      "postal_code": "42400",
      "siren": "419822374",
      "siret": "41982237400015",
      "status": "P",
      "store_name": "Cal'Pain",
      "street": "rue Victor Hugo",
      "street_number": 8,
      "turnover": 145318,
      "user_id": 62,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST ESTEVE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 760922,
      "email": null,
      "id": 773,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468381657",
      "postal_code": "66240",
      "siren": "432520567",
      "siret": "43252056700012",
      "status": "P",
      "store_name": "Crêperie Sucrée Salée",
      "street": "avenue du General de Gaulle",
      "street_number": 2,
      "turnover": 10000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAMPAGNE AU MONT D OR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761067,
      "email": "lyon-dardilly@classcroute.com",
      "id": 41414,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-37460575",
      "postal_code": "69410",
      "siren": "340550524",
      "siret": "34055052400284",
      "status": "EMPTY_STATUS",
      "store_name": "Class'croute",
      "street": "rue des Rosieristes",
      "street_number": 10,
      "turnover": null,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GUYANCOURT",
      "client_creation_date": "18/08/2003",
      "closing_days_ids": [],
      "datlinq_code": 761071,
      "email": null,
      "id": 41415,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-30436060",
      "postal_code": "78280",
      "siren": "449901198",
      "siret": "44990119800019",
      "status": "P",
      "store_name": "Class'croute",
      "street": "rue Jean Moulin",
      "street_number": 18,
      "turnover": 668800,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANTONY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761074,
      "email": "antony@classcroute.com",
      "id": 41416,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42377766",
      "postal_code": "92160",
      "siren": "340550524",
      "siret": "34055052400102",
      "status": "P",
      "store_name": "Sandwicherie Class'croute",
      "street": "rue Alexis de Tocqueville",
      "street_number": 4,
      "turnover": 240000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAUGUES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761163,
      "email": null,
      "id": 32424,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "ME181001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-71778333",
      "postal_code": "43170",
      "siren": "329910186",
      "siret": "32991018600017",
      "status": "P",
      "store_name": "Pâtisserie Vernet",
      "street": "rue de l Hotel de Ville",
      "street_number": null,
      "turnover": 90000,
      "user_id": 54,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AUSSOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761179,
      "email": null,
      "id": 780,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79204948",
      "postal_code": "73500",
      "siren": "398904375",
      "siret": "39890437500019",
      "status": "P",
      "store_name": "La Grignott'",
      "street": "rue Plan Champ",
      "street_number": 1,
      "turnover": 250000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAUMONT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761181,
      "email": null,
      "id": 32425,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010870252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 325024270",
      "postal_code": "52000",
      "siren": "422849422",
      "siret": "42284942200015",
      "status": "P",
      "store_name": "L'entracte",
      "street": "rue du Docteur Michel",
      "street_number": 2,
      "turnover": 40000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA MURE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761183,
      "email": null,
      "id": 47550,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76304958",
      "postal_code": "38350",
      "siren": "323694869",
      "siret": "32369486900039",
      "status": "P",
      "store_name": "Boulangerie l'Encas",
      "street": "avenue Chion Ducollet",
      "street_number": 3,
      "turnover": 180000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTELIMAR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761280,
      "email": null,
      "id": 32426,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "26202001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-75017910",
      "postal_code": "26200",
      "siren": "389304049",
      "siret": "38930404900015",
      "status": "G",
      "store_name": "Sandwicherie Astor",
      "street": "avenue Saint Lazare",
      "street_number": 51,
      "turnover": 1217235,
      "user_id": 170,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE MESNIL AMELOT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761283,
      "email": null,
      "id": 41417,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Gosset",
      "phone_number": "01-60032344",
      "postal_code": "77990",
      "siren": "753779420",
      "siret": "75377942000011",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie du Mesnil",
      "street": "rue de Claye",
      "street_number": 42,
      "turnover": null,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BONNEUIL SUR MARNE",
      "client_creation_date": "1-1-1998",
      "closing_days_ids": [],
      "datlinq_code": 761324,
      "email": null,
      "id": 4846,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BOUGGUENA",
      "phone_number": "000-000",
      "postal_code": "94380",
      "siren": "413663071",
      "siret": "41366307100020",
      "status": "P",
      "store_name": "Boulangerie Au Bon Pain Chaud",
      "street": "rue Jean Moulin",
      "street_number": 7,
      "turnover": 100000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANTELEU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761327,
      "email": null,
      "id": 32427,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012400252110",
      "location_areas_ids": [],
      "owner_name": "CRETOT CHRISTINE",
      "phone_number": "+33 235360402",
      "postal_code": "76380",
      "siren": "441246220",
      "siret": "44124622000012",
      "status": "P",
      "store_name": "Restaurant au Cailly Saveurs",
      "street": "rue du Canal",
      "street_number": 40,
      "turnover": 200000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST LAURENT DU VAR",
      "client_creation_date": "2009-01-01",
      "closing_days_ids": [],
      "datlinq_code": 761333,
      "email": null,
      "id": 785,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SCAMUZZI",
      "phone_number": "04-92120909",
      "postal_code": "06700",
      "siren": "510163405",
      "siret": "51016340500010",
      "status": "P",
      "store_name": "Au Coin Gourmand",
      "street": "avenue des Pugets",
      "street_number": 21,
      "turnover": 300000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AYTRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761365,
      "email": null,
      "id": 788,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "27136001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46310052",
      "postal_code": "17440",
      "siren": "403856008",
      "siret": "40385600800012",
      "status": "G",
      "store_name": "Au Pain Dore",
      "street": "avenue Edmond Grasset",
      "street_number": 1,
      "turnover": 850000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761379,
      "email": null,
      "id": 789,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ZHANG YALI",
      "phone_number": "+33 534665510",
      "postal_code": "31400",
      "siren": "519463624",
      "siret": "51946362400022",
      "status": "P",
      "store_name": "Snack Bomi",
      "street": "avenue Antoine de Saint Exupery",
      "street_number": 25,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "OYONNAX",
      "client_creation_date": "2000-07-01",
      "closing_days_ids": [],
      "datlinq_code": 761390,
      "email": null,
      "id": 792,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "VITOR JOSE BACALHAU",
      "phone_number": "+33 474813948",
      "postal_code": "01100",
      "siren": "529936981",
      "siret": "52993698100024",
      "status": "P",
      "store_name": "Au P'Tit Creux",
      "street": "Rue Pierre Brunet",
      "street_number": 3,
      "turnover": 62600,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SARLAT LA CANEDA",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761391,
      "email": null,
      "id": 793,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "24200",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Au P'tit Creux",
      "street": "lieu dit La Croix Rouge",
      "street_number": null,
      "turnover": null,
      "user_id": 198,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LIMOGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761417,
      "email": null,
      "id": 799,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-55343170",
      "postal_code": "87000",
      "siren": "348111980",
      "siret": "34811198000036",
      "status": "P",
      "store_name": "Autef",
      "street": "rue Porte Tourny",
      "street_number": 6,
      "turnover": 85000,
      "user_id": 199,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761441,
      "email": null,
      "id": 39897,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "09363001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43385029",
      "postal_code": "75010",
      "siren": "437825011",
      "siret": "43782501100012",
      "status": "P",
      "store_name": "Boulangerie aux Delices de Belleville",
      "street": "rue du Faubourg du Temple",
      "street_number": 108,
      "turnover": 150000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LARDY",
      "client_creation_date": "22-2-2005",
      "closing_days_ids": [],
      "datlinq_code": 761444,
      "email": null,
      "id": 800,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MARC BAREZ",
      "phone_number": "01-60821228",
      "postal_code": "91510",
      "siren": "480966977",
      "siret": "48096697700013",
      "status": "P",
      "store_name": "Sandwicherie des Delices du Fournil",
      "street": "place des Droits de l Homme",
      "street_number": 7,
      "turnover": 102000,
      "user_id": 86,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-1-1993",
      "closing_days_ids": [],
      "datlinq_code": 761466,
      "email": null,
      "id": 801,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DIEUPART Jean Pierre",
      "phone_number": "01-44530453",
      "postal_code": "75009",
      "siren": "393173034",
      "siret": "39317303400033",
      "status": "M",
      "store_name": "Epicerie au Pipalotte Gourmande",
      "street": "rue de Rochechouart",
      "street_number": 49,
      "turnover": 550050,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRAND COURONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761469,
      "email": null,
      "id": 802,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235672811",
      "postal_code": "76530",
      "siren": "443448576",
      "siret": "44344857600019",
      "status": "P",
      "store_name": "Aux P'Tits Creux",
      "street": "rue Georges Clemenceau",
      "street_number": 66,
      "turnover": 120000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUTIRAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761477,
      "email": null,
      "id": 4848,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Piquet",
      "phone_number": "05-56675761",
      "postal_code": "33640",
      "siren": "799901731",
      "siret": "79990173100023",
      "status": "G",
      "store_name": "Les Saveurs du Fournil",
      "street": "route Nationale 113",
      "street_number": 68,
      "turnover": 900000,
      "user_id": 202,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MERIGNAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761478,
      "email": null,
      "id": 4849,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXE71001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56131912",
      "postal_code": "33700",
      "siren": "413735911",
      "siret": "41373591100013",
      "status": "M",
      "store_name": "Boulangerie Le Pain  De Beutre",
      "street": "avenue de l Argonne",
      "street_number": 221,
      "turnover": 421570,
      "user_id": 205,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE BILLANCOURT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761486,
      "email": null,
      "id": 803,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "92100",
      "siren": "399393347",
      "siret": "39939334700014",
      "status": "M",
      "store_name": "Le Pain a la Bouche",
      "street": "rue d Aguesseau",
      "street_number": 33,
      "turnover": 230000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FREYMING MERLEBACH",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761514,
      "email": null,
      "id": 47551,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387046401",
      "postal_code": "57800",
      "siren": null,
      "siret": "45087504200027",
      "status": "P",
      "store_name": "Sandwicherie Aygul Freres",
      "street": "avenue Erckmann Chatrian",
      "street_number": 57,
      "turnover": 220000,
      "user_id": 395,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "1987-04-01",
      "closing_days_ids": [],
      "datlinq_code": 761548,
      "email": null,
      "id": 40,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "CN026001",
      "location_areas_ids": [],
      "owner_name": "Macquet Patrick",
      "phone_number": "04-78307593",
      "postal_code": "69004",
      "siren": "322251042",
      "siret": "32225104200030",
      "status": "M",
      "store_name": "Sandwicherie les Trois Brioches",
      "street": "place de la Croix Rousse",
      "street_number": 8,
      "turnover": 225000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAVIGNY LE TEMPLE",
      "client_creation_date": "1-2-1999",
      "closing_days_ids": [],
      "datlinq_code": 761582,
      "email": null,
      "id": 807,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R3019001",
      "location_areas_ids": [],
      "owner_name": "BAHUT",
      "phone_number": "01-60630603",
      "postal_code": "77176",
      "siren": "421956947",
      "siret": "42195694700012",
      "status": "P",
      "store_name": "Sandwicherie le Pain Dore",
      "street": "avenue de l Europe",
      "street_number": 251,
      "turnover": 280000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEJUIF",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761589,
      "email": null,
      "id": 32430,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0998E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42118743",
      "postal_code": "94800",
      "siren": "453525388",
      "siret": "45352538800014",
      "status": "EMPTY_STATUS",
      "store_name": "Picola Roma......",
      "street": "avenue Paul Vaillant Couturier",
      "street_number": 49,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761597,
      "email": null,
      "id": 32431,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010001987252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 788103650",
      "postal_code": "62190",
      "siren": "784032658",
      "siret": "78403265800055",
      "status": "P",
      "store_name": "La Sandwicherie",
      "street": "rue de Verdun",
      "street_number": 31,
      "turnover": 50000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AVESNES SUR HELPE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761601,
      "email": null,
      "id": 809,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 674743000",
      "postal_code": "59440",
      "siren": "790267611",
      "siret": "79026761100016",
      "status": "P",
      "store_name": "Friterie la Fringale",
      "street": "rue d Albret",
      "street_number": 1,
      "turnover": 100000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761620,
      "email": null,
      "id": 50381,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328140381",
      "postal_code": "59800",
      "siren": "483140356",
      "siret": "48314035600039",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie Honey & Pie",
      "street": "Rue des Manneliers",
      "street_number": 5,
      "turnover": null,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PETIT CAUX",
      "client_creation_date": "2012-01-01",
      "closing_days_ids": [],
      "datlinq_code": 761662,
      "email": null,
      "id": 4851,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1041B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235838043",
      "postal_code": "76370",
      "siren": "750490005",
      "siret": "75049000500014",
      "status": "P",
      "store_name": "Boulangerie Cresson Furon",
      "street": "rue Pasteur",
      "street_number": 6,
      "turnover": 200000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HAM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761709,
      "email": null,
      "id": 37298,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1453W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "80400",
      "siren": "437544695",
      "siret": "43754469500012",
      "status": "P",
      "store_name": "Pizza Anna",
      "street": "rue du General Leclerc",
      "street_number": 45,
      "turnover": 50000,
      "user_id": 121,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761787,
      "email": null,
      "id": 38116,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 534455894",
      "postal_code": "31000",
      "siren": "318906591",
      "siret": "31890659100686",
      "status": "EMPTY_STATUS",
      "store_name": "La Brioche Dorée",
      "street": "rue d Alsace Lorraine",
      "street_number": 85,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COULOMMIERS",
      "client_creation_date": "1-4-1993",
      "closing_days_ids": [],
      "datlinq_code": 761881,
      "email": null,
      "id": 821,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BENAIM",
      "phone_number": "01-64207811",
      "postal_code": "77120",
      "siren": "330140534",
      "siret": "33014053400026",
      "status": "EMPTY_STATUS",
      "store_name": "Croissanterie La Mie",
      "street": "rue du Marche",
      "street_number": 6,
      "turnover": null,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761898,
      "email": null,
      "id": 4852,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ELKADDOURI M'HAMED",
      "phone_number": "+33 534601183",
      "postal_code": "31100",
      "siren": "402100473",
      "siret": "40210047300014",
      "status": "P",
      "store_name": "Boulangerie le Buffet Apain",
      "street": "rue de l Universite du Mirail",
      "street_number": 5,
      "turnover": 210136,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 761935,
      "email": null,
      "id": 38117,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-44530652",
      "postal_code": "75009",
      "siren": "494501794",
      "siret": "49450179400015",
      "status": "P",
      "store_name": "La Paille D'Or",
      "street": "rue du Faubourg Poissonniere",
      "street_number": 163,
      "turnover": 10000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOURGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 761962,
      "email": null,
      "id": 826,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "18000",
      "siren": "451839211",
      "siret": "45183921100013",
      "status": "P",
      "store_name": "La Grignote Du Boomerang",
      "street": "avenue Marcel Sembat",
      "street_number": null,
      "turnover": 90000,
      "user_id": 51,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST AVE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762056,
      "email": null,
      "id": 38118,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0147W001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-97618566",
      "postal_code": "56890",
      "siren": "477976674",
      "siret": "47797667400044",
      "status": "G",
      "store_name": "A La Cabane A Pizza",
      "street": "rue Marcel Dassault",
      "street_number": 4,
      "turnover": 400000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHALONS EN CHAMPAGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762204,
      "email": null,
      "id": 50382,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326701010",
      "postal_code": "51000",
      "siren": "499425759",
      "siret": "49942575900010",
      "status": "EMPTY_STATUS",
      "store_name": "La Boite A Pizza",
      "street": "rue Jean Jaures",
      "street_number": 65,
      "turnover": null,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762273,
      "email": null,
      "id": 47552,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "09-83986878",
      "postal_code": "64000",
      "siren": "514356963",
      "siret": "51435696300017",
      "status": "EMPTY_STATUS",
      "store_name": "SandwicherieCroq'Delyne",
      "street": "rue de Liege",
      "street_number": 10,
      "turnover": null,
      "user_id": 208,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MURET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762274,
      "email": null,
      "id": 835,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561510930",
      "postal_code": "31600",
      "siren": "349727842",
      "siret": "34972784200016",
      "status": "M",
      "store_name": "La Petite Muretaine",
      "street": "avenue Roger Tissandie",
      "street_number": 20,
      "turnover": 300000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRENOBLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762289,
      "email": null,
      "id": 837,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76841609",
      "postal_code": "38000",
      "siren": "445253750",
      "siret": "44525375000027",
      "status": "P",
      "store_name": "Snack le Petit Casse",
      "street": "cours Berriat",
      "street_number": 67,
      "turnover": 30000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BASTIA",
      "client_creation_date": "8-1-2004",
      "closing_days_ids": [],
      "datlinq_code": 762296,
      "email": "crysteleric@aol.com",
      "id": 4854,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RLI35001",
      "location_areas_ids": [],
      "owner_name": "LAZARINI",
      "phone_number": "04-95327275",
      "postal_code": "20200",
      "siren": "478307366",
      "siret": "47830736600011",
      "status": "M",
      "store_name": "Boulangerie Lazarini",
      "street": "rue Cesar Vezzani",
      "street_number": null,
      "turnover": 248400,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MENTON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762332,
      "email": null,
      "id": 838,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "06500",
      "siren": "480360817",
      "siret": "48036081700013",
      "status": "P",
      "store_name": "Pains Chauds Du Jardin",
      "street": "place du Petit Port",
      "street_number": 4,
      "turnover": 1000,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANGERS",
      "client_creation_date": "2013-01-01",
      "closing_days_ids": [],
      "datlinq_code": 762356,
      "email": null,
      "id": 37299,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007434252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241876622",
      "postal_code": "49100",
      "siren": "751524612",
      "siret": "75152461200015",
      "status": "G",
      "store_name": "Snack la Fabrique du Mil'Pates",
      "street": "rue Plantagenet",
      "street_number": 61,
      "turnover": 475000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOCMINE",
      "client_creation_date": "2014-06-01",
      "closing_days_ids": [],
      "datlinq_code": 762443,
      "email": null,
      "id": 4856,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DEUDON",
      "phone_number": "02-97600646",
      "postal_code": "56500",
      "siren": "490932100",
      "siret": "49093210000020",
      "status": "P",
      "store_name": "Boulangerie Deudon La Baguette D Or",
      "street": "place Saint Antoine",
      "street_number": 6,
      "turnover": 300000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANGOULINS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762453,
      "email": null,
      "id": 4857,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "PEROLLE",
      "phone_number": "05-46510791",
      "postal_code": "17690",
      "siren": "752559732",
      "siret": "75255973200017",
      "status": "M",
      "store_name": "Boulangerie Patisserie Les Fourneaux",
      "street": "avenue Albert Denis",
      "street_number": null,
      "turnover": 340000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BORDEAUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762454,
      "email": null,
      "id": 841,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56922222",
      "postal_code": "33000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Brioche Doree",
      "street": "place de la Victoire",
      "street_number": 12,
      "turnover": null,
      "user_id": 204,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762455,
      "email": null,
      "id": 842,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45613158",
      "postal_code": "75008",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Brioche Doree",
      "street": "avenue des Champs Elysees",
      "street_number": 144,
      "turnover": null,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TALMONT SUR GIRONDE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762469,
      "email": null,
      "id": 844,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "17120",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Plaisirs Sucres",
      "street": "Grande Rue Du Port",
      "street_number": 15,
      "turnover": null,
      "user_id": 152,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA CHARTRE SUR LE LOIR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762470,
      "email": null,
      "id": 845,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243791648",
      "postal_code": "72340",
      "siren": "378065593",
      "siret": "37806559300030",
      "status": "P",
      "store_name": "La Grignote",
      "street": "rue Nationale",
      "street_number": 17,
      "turnover": 100000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROUBAIX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762501,
      "email": null,
      "id": 848,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320737878",
      "postal_code": "59100",
      "siren": "393222880",
      "siret": "39322288000022",
      "status": "M",
      "store_name": "Bs Viennoiserie",
      "street": "boulevard du General Leclerc",
      "street_number": 53,
      "turnover": 220900,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PERPIGNAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762505,
      "email": "starkebab66@gmail.com",
      "id": 47553,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468510046",
      "postal_code": "66000",
      "siren": "493100572",
      "siret": "49310057200020",
      "status": "M",
      "store_name": "Star d'Or Kebab",
      "street": "avenue du General de Gaulle",
      "street_number": 11,
      "turnover": 200000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RENNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762550,
      "email": null,
      "id": 39899,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0523F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-23210210",
      "postal_code": "35700",
      "siren": "493585962",
      "siret": "49358596200027",
      "status": "P",
      "store_name": "Pizza Tempo",
      "street": "rue de Fougeres",
      "street_number": 130,
      "turnover": 100000,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATILLON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762615,
      "email": null,
      "id": 32434,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0709E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-40929356",
      "postal_code": "92320",
      "siren": "393474978",
      "siret": "39347497800011",
      "status": "M",
      "store_name": "Cafe Babak",
      "street": "avenue de la Republique",
      "street_number": 181,
      "turnover": 200000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ORLEANS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762623,
      "email": null,
      "id": 852,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 238625092",
      "postal_code": "45000",
      "siren": "312733702",
      "siret": "31273370200111",
      "status": "EMPTY_STATUS",
      "store_name": "La Croissanterie",
      "street": "rue Nicolas Copernic",
      "street_number": 2,
      "turnover": null,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CARRIERES SUR SEINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762699,
      "email": null,
      "id": 857,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-39134797",
      "postal_code": "78420",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant la Cabane a Sucre",
      "street": "rue du Moulin",
      "street_number": 45,
      "turnover": null,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762782,
      "email": null,
      "id": 859,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47971818",
      "postal_code": "75020",
      "siren": "394797005",
      "siret": "39479700500011",
      "status": "EMPTY_STATUS",
      "store_name": "Carthage",
      "street": "rue des Pyrenees",
      "street_number": 239,
      "turnover": null,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BANYULS SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762824,
      "email": null,
      "id": 863,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468880125",
      "postal_code": "66650",
      "siren": "404856759",
      "siret": "40485675900018",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie la Ganotte",
      "street": "place de la Mediterranee",
      "street_number": null,
      "turnover": null,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SALEILLES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762948,
      "email": null,
      "id": 864,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468229061",
      "postal_code": "66280",
      "siren": "450047485",
      "siret": "45004748500013",
      "status": "P",
      "store_name": "O Soleil Gourmand",
      "street": "avenue du Clair Soleil",
      "street_number": 1,
      "turnover": 10000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLERMONT FERRAND",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 762955,
      "email": null,
      "id": 865,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-73364128",
      "postal_code": "63000",
      "siren": "339990004",
      "siret": "33999000400022",
      "status": "P",
      "store_name": "Le P'Tit Creux",
      "street": "rue du 11 Novembre",
      "street_number": 2,
      "turnover": 98000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SEVRIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763106,
      "email": null,
      "id": 4861,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50526576",
      "postal_code": "74320",
      "siren": "338046741",
      "siret": "33804674100017",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Les Boulangers Chevallier",
      "street": "chemin du Brouillet",
      "street_number": null,
      "turnover": null,
      "user_id": 61,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "POISY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763107,
      "email": null,
      "id": 4862,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50226364",
      "postal_code": "74330",
      "siren": "338046741",
      "siret": "33804674100058",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Les Boulangers Chevallier",
      "street": "route des Creusettes",
      "street_number": 30,
      "turnover": null,
      "user_id": 61,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MARTIN BELLEVUE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763108,
      "email": null,
      "id": 4863,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50602057",
      "postal_code": "74370",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Les Boulangers Chevallier",
      "street": "route des Diacquenots",
      "street_number": null,
      "turnover": null,
      "user_id": 58,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA BALME DE SILLINGY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763109,
      "email": null,
      "id": 4864,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50688075",
      "postal_code": "74330",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Chevallier",
      "street": "chez lieu",
      "street_number": null,
      "turnover": null,
      "user_id": 61,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALBENS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763110,
      "email": null,
      "id": 4865,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79541642",
      "postal_code": "73410",
      "siren": "338046741",
      "siret": "33804674100116",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Les Boulangers Chevallier",
      "street": "route de Rumilly",
      "street_number": null,
      "turnover": null,
      "user_id": 61,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANNECY LE VIEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763111,
      "email": null,
      "id": 4866,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50098842",
      "postal_code": "74940",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie les Boulangers Chevallier",
      "street": "rue de Lachat",
      "street_number": 17,
      "turnover": null,
      "user_id": 61,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 763215,
      "email": null,
      "id": 38119,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "75009",
      "siren": "538819269",
      "siret": "53881926900019",
      "status": "P",
      "store_name": "Chocoline",
      "street": "rue de Mogador",
      "street_number": 29,
      "turnover": 180000,
      "user_id": 90,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 763216,
      "email": null,
      "id": 876,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42255104",
      "postal_code": "75008",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Croissanterie Chocoline",
      "street": "rue Jean Mermoz",
      "street_number": 24,
      "turnover": 100,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE GRAND BORNAND",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987608,
      "email": null,
      "id": 19638,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-50022071",
      "postal_code": "74450",
      "siren": "382725281",
      "siret": "38272528100010",
      "status": "M",
      "store_name": "Boulangerie Vulliet Freres",
      "street": "place de l Eglise",
      "street_number": null,
      "turnover": 522000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CROZON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987655,
      "email": null,
      "id": 19663,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-98272942",
      "postal_code": "29160",
      "siren": "387965668",
      "siret": "38796566800016",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Gerard Le Corre",
      "street": "rue Graveran",
      "street_number": 35,
      "turnover": null,
      "user_id": 149,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RUAN",
      "client_creation_date": "2011-01-01",
      "closing_days_ids": [],
      "datlinq_code": 987688,
      "email": null,
      "id": 19678,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Pascal Bourdeau",
      "phone_number": "+33 238800280",
      "postal_code": "45410",
      "siren": "389926957",
      "siret": "38992695700017",
      "status": "P",
      "store_name": "Boulangerie Gerard Dufour",
      "street": "rue de la Pie Hardie",
      "street_number": 63,
      "turnover": 166127,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JEAN D ELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987753,
      "email": null,
      "id": 19706,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233561690",
      "postal_code": "50810",
      "siren": "395398563",
      "siret": "39539856300019",
      "status": "P",
      "store_name": "Boulangerie Michel Genty",
      "street": "le Fourchet",
      "street_number": 1,
      "turnover": 170000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAVAL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987829,
      "email": "les-lavallois@hotmail.fr",
      "id": 19749,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010009732252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243564181",
      "postal_code": "53000",
      "siren": "402942197",
      "siret": "40294219700011",
      "status": "G",
      "store_name": "Boulangerie Pacilly",
      "street": "rue du Lycee",
      "street_number": 8,
      "turnover": 161483,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-5-2000",
      "closing_days_ids": [],
      "datlinq_code": 987871,
      "email": null,
      "id": 19759,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "02625001",
      "location_areas_ids": [],
      "owner_name": "JULIEN GONTRAN",
      "phone_number": "01-43597876",
      "postal_code": "75008",
      "siren": "431280254",
      "siret": "43128025400019",
      "status": "P",
      "store_name": "Boulangerie l Angelique Julien",
      "street": "avenue Franklin Delano Roosevelt",
      "street_number": 73,
      "turnover": 800000,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HAUTERIVES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 987884,
      "email": null,
      "id": 19764,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-75689006",
      "postal_code": "26390",
      "siren": "381931815",
      "siret": "38193181500017",
      "status": "P",
      "store_name": "Boulangerie Goudey",
      "street": "Grande Rue",
      "street_number": 12,
      "turnover": 180000,
      "user_id": 170,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST JOUIN BRUNEVAL",
      "client_creation_date": "2006-01-12",
      "closing_days_ids": [],
      "datlinq_code": 987933,
      "email": "lefournildesfalaises@orange.fr",
      "id": 19787,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003123252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235207413",
      "postal_code": "76280",
      "siren": "488354002",
      "siret": "48835400200013",
      "status": "P",
      "store_name": "Le Fournil des Falaises",
      "street": "rue du General de Gaulle",
      "street_number": 21,
      "turnover": 120000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CAST LE GUILDO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988003,
      "email": null,
      "id": 19825,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MIRIEL JACQUES",
      "phone_number": "02-96411866",
      "postal_code": "22380",
      "siren": "394792220",
      "siret": "39479222000011",
      "status": "M",
      "store_name": "Boulangerie Miriel",
      "street": "boulevard de l Arguenon",
      "street_number": 13,
      "turnover": 350000,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SCEAUX SUR HUISNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988030,
      "email": null,
      "id": 19842,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010014610252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243933543",
      "postal_code": "72160",
      "siren": "505383141",
      "siret": "50538314100015",
      "status": "M",
      "store_name": "Boulangerie Garcia",
      "street": "avenue General de Gaulle",
      "street_number": 10,
      "turnover": 170000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MILLAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988045,
      "email": null,
      "id": 32936,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016079252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 565601557",
      "postal_code": "12100",
      "siren": "399978030",
      "siret": "39997803000019",
      "status": "P",
      "store_name": "Boulangerie Le Fournil De Saint Jacques",
      "street": "avenue Jean Jaures",
      "street_number": 3,
      "turnover": 191810,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST PRIVAT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988060,
      "email": null,
      "id": 19855,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-55282682",
      "postal_code": "19220",
      "siren": "401754411",
      "siret": "40175441100023",
      "status": "P",
      "store_name": "Boulangerie Maison Guillaume Tible",
      "street": "rue de la Xaintrie",
      "street_number": 39,
      "turnover": 140000,
      "user_id": 196,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURNON D AUVERGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988072,
      "email": null,
      "id": 19861,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1014F001",
      "location_areas_ids": [],
      "owner_name": "PASQUIER",
      "phone_number": "04-73849632",
      "postal_code": "63800",
      "siren": "751806621",
      "siret": "75180662100023",
      "status": "M",
      "store_name": "Boulangerie des Domes",
      "street": "avenue des Domes",
      "street_number": 5,
      "turnover": 482500,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GARGES LES GONESSE",
      "client_creation_date": "1-4-1997",
      "closing_days_ids": [],
      "datlinq_code": 988169,
      "email": null,
      "id": 19915,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BELHADJ",
      "phone_number": "01-34455414",
      "postal_code": "95140",
      "siren": "411694474",
      "siret": "41169447400015",
      "status": "P",
      "store_name": "Boulangerie Pain Chaud de la Gare",
      "street": "place de l Hotel de Ville",
      "street_number": null,
      "turnover": 347060,
      "user_id": 79,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIC SUR SEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988211,
      "email": null,
      "id": 19936,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010025777252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387011047",
      "postal_code": "57630",
      "siren": "414275107",
      "siret": "41427510700012",
      "status": "P",
      "store_name": "Boulangerie Banette Bleeker",
      "street": "place Jeanne d Arc",
      "street_number": 8,
      "turnover": 175000,
      "user_id": 395,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LEVALLOIS PERRET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988372,
      "email": null,
      "id": 32950,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "R9189001",
      "location_areas_ids": [],
      "owner_name": "Chevret",
      "phone_number": "01-47561402",
      "postal_code": "92300",
      "siren": "511363145",
      "siret": "51136314500018",
      "status": "G",
      "store_name": "Chevret And Co",
      "street": "rue Baudin",
      "street_number": 80,
      "turnover": 579000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VERNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988450,
      "email": null,
      "id": 19945,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232511753",
      "postal_code": "27200",
      "siren": "511590572",
      "siret": "51159057200026",
      "status": "EMPTY_STATUS",
      "store_name": "La Grignoterie",
      "street": "boulevard Jean Jaures",
      "street_number": null,
      "turnover": null,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOEUILLY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988781,
      "email": null,
      "id": 19966,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-22381315",
      "postal_code": "80160",
      "siren": "419723846",
      "siret": "41972384600038",
      "status": "P",
      "store_name": "Boulangerie Fortin",
      "street": "rue d Amiens",
      "street_number": 35,
      "turnover": 130000,
      "user_id": 121,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SUCE SUR ERDRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988841,
      "email": null,
      "id": 19995,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-40779637",
      "postal_code": "44240",
      "siren": "532926391",
      "siret": "53292639100014",
      "status": "EMPTY_STATUS",
      "store_name": "Au Pain Suceen",
      "street": "residence les Champs Ronds",
      "street_number": 5,
      "turnover": null,
      "user_id": 144,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALENCON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988863,
      "email": null,
      "id": 20013,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003906252110",
      "location_areas_ids": [],
      "owner_name": "FOUILLARD",
      "phone_number": "+33 233270082",
      "postal_code": "61000",
      "siren": "442114690",
      "siret": "44211469000013",
      "status": "P",
      "store_name": "Boulangerie Fouillard",
      "street": "rue Ernest Marchand Saillant",
      "street_number": 100,
      "turnover": 120000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FOURQUES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988867,
      "email": null,
      "id": 20017,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 490932924",
      "postal_code": "30300",
      "siren": "324674464",
      "siret": "32467446400049",
      "status": "P",
      "store_name": "Boulangerie Le Petrin Fourquesien",
      "street": "rue de la Republique",
      "street_number": 23,
      "turnover": 150000,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURNEMIRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988900,
      "email": null,
      "id": 20036,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005839252110",
      "location_areas_ids": [],
      "owner_name": "CRISTOL OLIVIER",
      "phone_number": "+33 565599084",
      "postal_code": "12250",
      "siren": "419951637",
      "siret": "41995163700018",
      "status": "P",
      "store_name": "Boulangerie Bellevue",
      "street": "avenue Hippolyte Puech",
      "street_number": null,
      "turnover": 93884,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ABONDANT",
      "client_creation_date": "2009-08-18",
      "closing_days_ids": [],
      "datlinq_code": 988915,
      "email": null,
      "id": 20050,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "GEFFROY",
      "phone_number": "+33 237487369",
      "postal_code": "28410",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Geffroy Sebastien",
      "street": "Grande Rue",
      "street_number": 31,
      "turnover": 250000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AIGUES VIVES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 988924,
      "email": null,
      "id": 20056,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 615336714",
      "postal_code": "30670",
      "siren": "435196019",
      "siret": "43519601900028",
      "status": "P",
      "store_name": "Boulangerie Pains et Gourmandises",
      "street": "Grand Rue",
      "street_number": 52,
      "turnover": 110000,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTAGNY LES BEAUNE",
      "client_creation_date": "2004-04-01",
      "closing_days_ids": [],
      "datlinq_code": 988955,
      "email": null,
      "id": 20080,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Néault",
      "phone_number": "+33 380242614",
      "postal_code": "21200",
      "siren": "452649619",
      "siret": "45264961900015",
      "status": "P",
      "store_name": "Boulangerie Emmanuel",
      "street": "rue de la Solle",
      "street_number": 16,
      "turnover": 210000,
      "user_id": 409,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-2-2010",
      "closing_days_ids": [],
      "datlinq_code": 988983,
      "email": null,
      "id": 20096,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "L0808001",
      "location_areas_ids": [],
      "owner_name": "RUSSEL EMIL",
      "phone_number": "01-43543969",
      "postal_code": "75005",
      "siren": "519673800",
      "siret": "51967380000016",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie aux Delices de Jussieu",
      "street": "rue Jussieu",
      "street_number": 23,
      "turnover": 403319,
      "user_id": 91,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MOREUIL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989024,
      "email": "0620442119@sfr.fr",
      "id": 20124,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "A1249001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-22097113",
      "postal_code": "80110",
      "siren": "443317409",
      "siret": "44331740900029",
      "status": "M",
      "store_name": "Boulangerie Marchesi David",
      "street": "rue Veuve Thibauville",
      "street_number": 35,
      "turnover": 210000,
      "user_id": 121,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MOIRANS EN MONTAGNE",
      "client_creation_date": "1963-01-01",
      "closing_days_ids": [],
      "datlinq_code": 989065,
      "email": null,
      "id": 20152,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005256252110",
      "location_areas_ids": [],
      "owner_name": "Hufschmid",
      "phone_number": "+33 384420143",
      "postal_code": "39260",
      "siren": "314155649",
      "siret": "31415564900036",
      "status": "M",
      "store_name": "Boulangerie Hufschmid Philippe",
      "street": "place de Verdun",
      "street_number": 4,
      "turnover": 270882,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE TOUVET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989164,
      "email": null,
      "id": 20218,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76085000",
      "postal_code": "38660",
      "siren": "418355327",
      "siret": "41835532700010",
      "status": "P",
      "store_name": "Boulangerie Metay Maurice Marcel",
      "street": "place de l Eglise",
      "street_number": 1,
      "turnover": 100000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOUCY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989276,
      "email": null,
      "id": 32959,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016384252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386441489",
      "postal_code": "89130",
      "siren": "430000067",
      "siret": "43000006700016",
      "status": "G",
      "store_name": "Pâtisserie Durand",
      "street": "rue Paul Bert",
      "street_number": 2,
      "turnover": 300000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FAVIERES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989286,
      "email": null,
      "id": 20270,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83251326",
      "postal_code": "54115",
      "siren": "431328327",
      "siret": "43132832700017",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Aubertin Olivier Maurice Andre",
      "street": "rue du Docteur Liebault",
      "street_number": 22,
      "turnover": null,
      "user_id": 102,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-6-2000",
      "closing_days_ids": [],
      "datlinq_code": 989291,
      "email": null,
      "id": 2568,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SEBBAN MAURICE",
      "phone_number": "01-42089990",
      "postal_code": "75019",
      "siren": "431719343",
      "siret": "43171934300011",
      "status": "P",
      "store_name": "Sandwicherie chez Akol",
      "street": "rue d Hautpoul",
      "street_number": 67,
      "turnover": 2000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989305,
      "email": "boulangerie-patisserie-fardin@orange.fr",
      "id": 20279,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007833252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231822389",
      "postal_code": "14000",
      "siren": "432405462",
      "siret": "43240546200016",
      "status": "G",
      "store_name": "Boulangerie aux Délices de la Guérinièr",
      "street": "rue de la Gueriniere",
      "street_number": 35,
      "turnover": 619163,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA FOUILLADE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989318,
      "email": null,
      "id": 20283,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DELMUR BRUNO",
      "phone_number": "+33 565657004",
      "postal_code": "12270",
      "siren": "433035680",
      "siret": "43303568000019",
      "status": "G",
      "store_name": "Boulangerie Delmur Hubert",
      "street": "route du Segala",
      "street_number": 10,
      "turnover": 600000,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GOURNAY EN BRAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989337,
      "email": null,
      "id": 20294,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235900461",
      "postal_code": "76220",
      "siren": "489030882",
      "siret": "48903088200018",
      "status": "M",
      "store_name": "Boulangerie Hequet",
      "street": "rue de l Abreuvoir",
      "street_number": 30,
      "turnover": 249592,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST QUENTIN LA POTERIE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989455,
      "email": null,
      "id": 20348,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466222584",
      "postal_code": "30700",
      "siren": "443839790",
      "siret": "44383979000013",
      "status": "P",
      "store_name": "Boulangerie Pesin",
      "street": "Grand Rue",
      "street_number": null,
      "turnover": 150000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DURMENACH",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989480,
      "email": null,
      "id": 20364,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-89258110",
      "postal_code": "68480",
      "siren": "447835703",
      "siret": "44783570300011",
      "status": "P",
      "store_name": "Boulangerie Isler Cyrille",
      "street": "rue de l Ill",
      "street_number": 25,
      "turnover": 250000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ATHIS VAL DE ROUVRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989508,
      "email": null,
      "id": 20374,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233662066",
      "postal_code": "61100",
      "siren": "449401876",
      "siret": "44940187600015",
      "status": "P",
      "store_name": "Boulangerie Hergault",
      "street": "lieu dit Le Bourg",
      "street_number": null,
      "turnover": 145000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BELLEY",
      "client_creation_date": "2003-03-21",
      "closing_days_ids": [],
      "datlinq_code": 989604,
      "email": null,
      "id": 20428,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ABRY",
      "phone_number": "+33 479810450",
      "postal_code": "01300",
      "siren": "447712613",
      "siret": "44771261300010",
      "status": "M",
      "store_name": "Boulangerie Patisserie Abry",
      "street": "rue Saint Martin",
      "street_number": 18,
      "turnover": 323500,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST ROMAIN DE POPEY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989608,
      "email": null,
      "id": 20432,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-74058043",
      "postal_code": "69490",
      "siren": "449303338",
      "siret": "44930333800015",
      "status": "P",
      "store_name": "Boulangerie Gilardon",
      "street": "place du Popey",
      "street_number": null,
      "turnover": 125000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PIENNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989637,
      "email": null,
      "id": 32971,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010627252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 382217343",
      "postal_code": "54490",
      "siren": "451753933",
      "siret": "45175393300014",
      "status": "M",
      "store_name": "Patisserie Pecci Ludovic",
      "street": "rue de Verdun",
      "street_number": 23,
      "turnover": 250000,
      "user_id": 393,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSAC EN LIVRADOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989672,
      "email": null,
      "id": 20471,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "2567E001",
      "location_areas_ids": [],
      "owner_name": "FRUGERE",
      "phone_number": "04-73956032",
      "postal_code": "63940",
      "siren": "453789885",
      "siret": "45378988500010",
      "status": "P",
      "store_name": "Snc Boulangerie Patisserie Frugere",
      "street": "rue des Ecoles",
      "street_number": 21,
      "turnover": 120000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUCHAMP",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989677,
      "email": null,
      "id": 20475,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "11363001",
      "location_areas_ids": [],
      "owner_name": "Bourg Jean Christophe",
      "phone_number": "01-34181938",
      "postal_code": "95250",
      "siren": "453939027",
      "siret": "45393902700018",
      "status": "M",
      "store_name": "Boulangerie Bourg Jean Christophe",
      "street": "avenue de la Gare",
      "street_number": 14,
      "turnover": 300000,
      "user_id": 80,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STRASBOURG",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989746,
      "email": null,
      "id": 46595,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1427F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-88353737",
      "postal_code": "67000",
      "siren": "821546215",
      "siret": "82154621500012",
      "status": "M",
      "store_name": "Salon de Thé Goehry",
      "street": "rue des Recollets",
      "street_number": 3,
      "turnover": 350000,
      "user_id": 112,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LES MARCHES",
      "client_creation_date": "2005",
      "closing_days_ids": [],
      "datlinq_code": 989767,
      "email": null,
      "id": 20529,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79706508",
      "postal_code": "73800",
      "siren": "482908613",
      "siret": "48290861300011",
      "status": "G",
      "store_name": "Boulangerie aux Delices des Marches",
      "street": "route du Gresivaudan",
      "street_number": 24,
      "turnover": 303156,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHALONS EN CHAMPAGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989822,
      "email": null,
      "id": 20554,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326681575",
      "postal_code": "51000",
      "siren": "488219692",
      "siret": "48821969200016",
      "status": "P",
      "store_name": "Boulangerie au Pain d'Antan",
      "street": "rue Carnot",
      "street_number": 27,
      "turnover": 300000,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BENET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989859,
      "email": null,
      "id": 20584,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0937D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-51873364",
      "postal_code": "85490",
      "siren": "388231250",
      "siret": "38823125000027",
      "status": "G",
      "store_name": "Boulangerie la Barque a Pain",
      "street": "rue de la Combe",
      "street_number": 1,
      "turnover": 358000,
      "user_id": 153,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURNON SUR RHONE",
      "client_creation_date": "2008-01-01",
      "closing_days_ids": [],
      "datlinq_code": 989874,
      "email": null,
      "id": 20597,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 475080251",
      "postal_code": "07300",
      "siren": "492803945",
      "siret": "49280394500012",
      "status": "P",
      "store_name": "Boulangerie Patisserie Juge",
      "street": "place Jean Jaures",
      "street_number": 19,
      "turnover": 180000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DOMPIERRE SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989903,
      "email": null,
      "id": 20620,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Fageon",
      "phone_number": "05-46353142",
      "postal_code": "17139",
      "siren": "503439226",
      "siret": "50343922600013",
      "status": "M",
      "store_name": "Boulangerie Kara",
      "street": "rue du General de Gaulle",
      "street_number": 36,
      "turnover": 228300,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST DIDIER SUR CHALARONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989905,
      "email": null,
      "id": 20622,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 474040353",
      "postal_code": "01140",
      "siren": "498903673",
      "siret": "49890367300016",
      "status": "P",
      "store_name": "Boulangerie Guillin Nicolas",
      "street": "rue de l Eglise",
      "street_number": 29,
      "turnover": 140000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DISSAY SOUS COURCILLON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989940,
      "email": null,
      "id": 20652,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243440917",
      "postal_code": "72500",
      "siren": "413473802",
      "siret": "41347380200028",
      "status": "P",
      "store_name": "Boulangerie Rottier",
      "street": "place Marcel Morand",
      "street_number": 7,
      "turnover": 135000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIEILLE EGLISE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 989945,
      "email": null,
      "id": 20657,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0010035349252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321193231",
      "postal_code": "62162",
      "siren": "504655317",
      "siret": "50465531700015",
      "status": "G",
      "store_name": "Fournil deux Eglises",
      "street": "rue du Fort Batard",
      "street_number": 185,
      "turnover": 600000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BESANCON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990014,
      "email": null,
      "id": 20716,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 381884877",
      "postal_code": "25000",
      "siren": "321646580",
      "siret": "32164658000027",
      "status": "P",
      "store_name": "Boulangerie Maison Christe",
      "street": "rue Paul Bert",
      "street_number": 11,
      "turnover": 20000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NAVENNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990015,
      "email": "les4sapins@orange.fr",
      "id": 20717,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005958252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 384969419",
      "postal_code": "70000",
      "siren": "433885894",
      "siret": "43388589400025",
      "status": "M",
      "store_name": "Boulangerie Richer Manuel",
      "street": "rue Victor Hugo",
      "street_number": 15,
      "turnover": 200000,
      "user_id": 411,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PUY EN VELAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990022,
      "email": null,
      "id": 20721,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Mathieu RANCON",
      "phone_number": "04-71055703",
      "postal_code": "43000",
      "siren": "479621997",
      "siret": "47962199700010",
      "status": "P",
      "store_name": "Boulangerie Le Bon Pain De France",
      "street": "boulevard George Sand",
      "street_number": 7,
      "turnover": 160000,
      "user_id": 54,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST AGREVE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990036,
      "email": "bardej@wanadoo.fr",
      "id": 20732,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010014957252110",
      "location_areas_ids": [],
      "owner_name": "Barde",
      "phone_number": "+33 475301050",
      "postal_code": "07320",
      "siren": "492428958",
      "siret": "49242895800010",
      "status": "M",
      "store_name": "Boulangerie Barde",
      "street": "Grande Rue",
      "street_number": 74,
      "turnover": 180000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANGERS",
      "client_creation_date": "2007-09-12",
      "closing_days_ids": [],
      "datlinq_code": 990078,
      "email": null,
      "id": 20770,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "GUILLOT",
      "phone_number": "+33 241663586",
      "postal_code": "49000",
      "siren": "429934946",
      "siret": "42993494600022",
      "status": "P",
      "store_name": "Boulangerie Au Doux Peche",
      "street": "rue Saumuroise",
      "street_number": 200,
      "turnover": 240000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LOUHANS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990124,
      "email": null,
      "id": 20795,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 385750364",
      "postal_code": "71500",
      "siren": "393973540",
      "siret": "39397354000031",
      "status": "P",
      "store_name": "Boulangerie Ridet",
      "street": "rue du Jura",
      "street_number": 9,
      "turnover": 150000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VAILHAUQUES",
      "client_creation_date": "2016-01-01",
      "closing_days_ids": [],
      "datlinq_code": 990184,
      "email": null,
      "id": 20836,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467844502",
      "postal_code": "34570",
      "siren": "441936150",
      "siret": "44193615000024",
      "status": "M",
      "store_name": "Boulangerie Art Gourmand/le fournil",
      "street": "CCommercial le Salet",
      "street_number": null,
      "turnover": 280000,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA GUERCHE DE BRETAGNE",
      "client_creation_date": "2007-03-28",
      "closing_days_ids": [],
      "datlinq_code": 990191,
      "email": null,
      "id": 20843,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BRIAND",
      "phone_number": "02-99963043",
      "postal_code": "35130",
      "siren": "495086670",
      "siret": "49508667000017",
      "status": "P",
      "store_name": "Boulangerie la Huche AaPains",
      "street": "rue de Rennes",
      "street_number": 21,
      "turnover": 260000,
      "user_id": 151,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MORLAIX",
      "client_creation_date": "2008",
      "closing_days_ids": [],
      "datlinq_code": 990220,
      "email": null,
      "id": 20863,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Vignard Olivier",
      "phone_number": "02-98624058",
      "postal_code": "29600",
      "siren": "504291733",
      "siret": "50429173300013",
      "status": "P",
      "store_name": "Boulangerie Vignard",
      "street": "place du General de Gaulle",
      "street_number": 27,
      "turnover": 250000,
      "user_id": 147,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990271,
      "email": null,
      "id": 20871,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42655690",
      "postal_code": "75008",
      "siren": "421246281",
      "siret": "42124628100024",
      "status": "P",
      "store_name": "Boulangerie Louvard",
      "street": "rue de Miromesnil",
      "street_number": 43,
      "turnover": 856203,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTBELIARD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990444,
      "email": null,
      "id": 20879,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 381985537",
      "postal_code": "25200",
      "siren": "484145347",
      "siret": "48414534700015",
      "status": "P",
      "store_name": "La Panetière",
      "street": "rue Maurice Ravel",
      "street_number": 5,
      "turnover": 190000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAGNANVILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990525,
      "email": null,
      "id": 2591,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-30332384",
      "postal_code": "78200",
      "siren": "530775030",
      "siret": "53077503000014",
      "status": "P",
      "store_name": "Sanwicherie Bread & Break",
      "street": "place des Droits de l Homme",
      "street_number": 2,
      "turnover": 80000,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATEAU THIERRY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 990865,
      "email": null,
      "id": 20901,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MOREAU",
      "phone_number": "+33 323830229",
      "postal_code": "02400",
      "siren": "522418961",
      "siret": "52241896100010",
      "status": "M",
      "store_name": "Boulangerie Moreau",
      "street": "rue Carnot",
      "street_number": 47,
      "turnover": 250000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ILLE SUR TET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991135,
      "email": null,
      "id": 20909,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468806310",
      "postal_code": "66130",
      "siren": "509367264",
      "siret": "50936726400017",
      "status": "P",
      "store_name": "Boulangerie Le Pain Du Jour",
      "street": "avenue Pasteur",
      "street_number": 109,
      "turnover": 389400,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VAULX EN VELIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991192,
      "email": null,
      "id": 2614,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-72836801",
      "postal_code": "69120",
      "siren": "428138598",
      "siret": "42813859800027",
      "status": "EMPTY_STATUS",
      "store_name": "Croissanterie",
      "street": "rue Jacquard",
      "street_number": 2,
      "turnover": null,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LABENNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991262,
      "email": null,
      "id": 20915,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-59457930",
      "postal_code": "40530",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Bancel Boulangerie Patisserie",
      "street": "avenue General de Gaulle",
      "street_number": 49,
      "turnover": null,
      "user_id": 209,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "THOUROTTE",
      "client_creation_date": "1-6-2012",
      "closing_days_ids": [],
      "datlinq_code": 991338,
      "email": null,
      "id": 20919,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "HDIDI MOHAMED",
      "phone_number": "03-44760147",
      "postal_code": "60150",
      "siren": "752355586",
      "siret": "75235558600013",
      "status": "P",
      "store_name": "Boulangerie la Huche",
      "street": "rue de la Republique",
      "street_number": 67,
      "turnover": 140000,
      "user_id": 311,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AGEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991402,
      "email": null,
      "id": 20925,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Chapelier",
      "phone_number": "05-53666882",
      "postal_code": "47000",
      "siren": "507711349",
      "siret": "50771134900013",
      "status": "M",
      "store_name": "De Bles En Bles",
      "street": "boulevard Edouard Lacour",
      "street_number": 47,
      "turnover": 950000,
      "user_id": 200,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BLAGNAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991605,
      "email": null,
      "id": 2626,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561167051",
      "postal_code": "31700",
      "siren": "750348179",
      "siret": "75034817900052",
      "status": "P",
      "store_name": "Pomme de Pain",
      "street": "Aeroport De Toulouse Blagnac",
      "street_number": 1,
      "turnover": 100,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WAMBRECHIES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991670,
      "email": null,
      "id": 32986,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005946252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320556405",
      "postal_code": "59118",
      "siren": "472501055",
      "siret": "47250105500058",
      "status": "EMPTY_STATUS",
      "store_name": "Lille Automatique Distribution",
      "street": "rue Marie Curie",
      "street_number": 60,
      "turnover": null,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MEDARD DE GUIZIERES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 991838,
      "email": null,
      "id": 20955,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-57696157",
      "postal_code": "33230",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Patisserie Nouvelle",
      "street": "rue de la Republique",
      "street_number": 73,
      "turnover": null,
      "user_id": 203,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DIVION",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 992277,
      "email": null,
      "id": 20986,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010034537252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321627061",
      "postal_code": "62460",
      "siren": "522729094",
      "siret": "52272909400014",
      "status": "M",
      "store_name": "Boulangerie Le Fournil De La Biette",
      "street": "rue Louis Pasteur",
      "street_number": 4,
      "turnover": 260000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ORLY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 992519,
      "email": null,
      "id": 2648,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-49757828",
      "postal_code": "94310",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "Aeroport Orly Sud",
      "street_number": null,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLENEUVE ST GEORGES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 993112,
      "email": null,
      "id": 21031,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43869619",
      "postal_code": "94190",
      "siren": "791112915",
      "siret": "0",
      "status": "P",
      "store_name": "Boulangerie Espace Gourmand",
      "street": "rue Thimonnier",
      "street_number": 2,
      "turnover": 240000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BELLEGARDE SUR VALSERINE",
      "client_creation_date": "1991-03-11",
      "closing_days_ids": [],
      "datlinq_code": 993976,
      "email": "s.cop@neuf.fr",
      "id": 32992,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013661252110",
      "location_areas_ids": [],
      "owner_name": "COP",
      "phone_number": "+33 450566227",
      "postal_code": "01200",
      "siren": "381269448",
      "siret": "38126944800027",
      "status": "P",
      "store_name": "Boulangerie le Jardin des Delices",
      "street": "rue Joseph Marion",
      "street_number": 2,
      "turnover": 160000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAVENT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 994033,
      "email": null,
      "id": 21044,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231780008",
      "postal_code": "14860",
      "siren": "523464642",
      "siret": "52346464200017",
      "status": "P",
      "store_name": "Boulangerie Plaisirs Normands",
      "street": "rue du Lavoir",
      "street_number": 16,
      "turnover": 200000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ISTRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 994082,
      "email": null,
      "id": 21049,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-42550585",
      "postal_code": "13800",
      "siren": "524022241",
      "siret": "52402224100011",
      "status": "P",
      "store_name": "Boulangerie Blé et Seigle",
      "street": "avenue Helene Boucher",
      "street_number": 10,
      "turnover": 10000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DECINES CHARPIEU",
      "client_creation_date": "2010-07-08",
      "closing_days_ids": [],
      "datlinq_code": 994132,
      "email": null,
      "id": 324,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "JL120001",
      "location_areas_ids": [],
      "owner_name": "NORMAND",
      "phone_number": "04-78491226",
      "postal_code": "69150",
      "siren": "523391365",
      "siret": "52339136500013",
      "status": "G",
      "store_name": "Boulangerie la Mie de la Flute",
      "street": "rue de la Republique",
      "street_number": 131,
      "turnover": 367810,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PERREUX SUR MARNE",
      "client_creation_date": "2010",
      "closing_days_ids": [],
      "datlinq_code": 994188,
      "email": null,
      "id": 21057,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0786G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-43242022",
      "postal_code": "94170",
      "siren": "523415305",
      "siret": null,
      "status": "M",
      "store_name": "Boulangerie Sonia et Fabrice",
      "street": "avenue du 8 Mai 1945",
      "street_number": 157,
      "turnover": 200000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NOVES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 994457,
      "email": null,
      "id": 21068,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-90950552",
      "postal_code": "13550",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie des Palus de Names",
      "street": "avenue Francois Marcel Roudier",
      "street_number": 50,
      "turnover": 20000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURCOING",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 994871,
      "email": null,
      "id": 21081,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 960509773",
      "postal_code": "59200",
      "siren": "523515641",
      "siret": "52351564100018",
      "status": "P",
      "store_name": "Lenoir",
      "street": "rue de Lille",
      "street_number": 16,
      "turnover": 250000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "USTARITZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 994955,
      "email": null,
      "id": 47680,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1823G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-59703112",
      "postal_code": "64480",
      "siren": "833180938",
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Pizza Gourmande",
      "street": "Chemin Rural",
      "street_number": 11,
      "turnover": null,
      "user_id": 209,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "EYZIN PINET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 995437,
      "email": null,
      "id": 21090,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BERTHIER et EXCOFFIER",
      "phone_number": "04-74580863",
      "postal_code": "38780",
      "siren": "504798562",
      "siret": "50479856200014",
      "status": "M",
      "store_name": "Boulangerie la Corbeille à Pain",
      "street": "place du Village",
      "street_number": 10,
      "turnover": 164890,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST DIDIER DE LA TOUR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 995626,
      "email": null,
      "id": 21126,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "JEAN MARC PERRIN",
      "phone_number": "04-74974837",
      "postal_code": "38110",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie les Gourmands Disent",
      "street": "route de Chambery",
      "street_number": 2,
      "turnover": 100000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALLAURIS",
      "client_creation_date": "2007-09-01",
      "closing_days_ids": [],
      "datlinq_code": 995631,
      "email": "lefournildesanges@orange.fr",
      "id": 326,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "M2733001",
      "location_areas_ids": [],
      "owner_name": "TRIPODI Louis",
      "phone_number": "04-93634498",
      "postal_code": "06220",
      "siren": "500016332",
      "siret": "50001633200016",
      "status": "M",
      "store_name": "Boulangerie le Fournil des Anges",
      "street": "avenue de la Liberte",
      "street_number": 92,
      "turnover": 362000,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATTE",
      "client_creation_date": "2010",
      "closing_days_ids": [],
      "datlinq_code": 996007,
      "email": null,
      "id": 21163,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1621F001",
      "location_areas_ids": [],
      "owner_name": "PORNIN",
      "phone_number": "04-76381895",
      "postal_code": "38160",
      "siren": "520068669",
      "siret": "52006866900016",
      "status": "M",
      "store_name": "Boulangerie le Pain d'Ange",
      "street": "place de la Republique",
      "street_number": 18,
      "turnover": 163120,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DUNKERQUE",
      "client_creation_date": "2010-01-01",
      "closing_days_ids": [],
      "datlinq_code": 997333,
      "email": "loicsue@hotmail.fr",
      "id": 21221,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007067252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 361388804",
      "postal_code": "59140",
      "siren": "753339001",
      "siret": "75333900100012",
      "status": "M",
      "store_name": "Boulangerie le Campagnard",
      "street": "rue Alfred Dumont",
      "street_number": 30,
      "turnover": 150000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 998435,
      "email": null,
      "id": 41573,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-22095855",
      "postal_code": "06000",
      "siren": "513684431",
      "siret": "51368443100010",
      "status": "P",
      "store_name": "Sandwicherie la Casa della Piadina",
      "street": "rue Gioffredo",
      "street_number": 52,
      "turnover": 2000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LESSAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 998926,
      "email": null,
      "id": 21266,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233464095",
      "postal_code": "50430",
      "siren": "524173549",
      "siret": "52417354900014",
      "status": "P",
      "store_name": "Boulangerie Jacquette",
      "street": "rue de la Sainte Croix",
      "street_number": 19,
      "turnover": 230000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEAUZELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 999422,
      "email": null,
      "id": 21285,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "00-000",
      "postal_code": "31700",
      "siren": "440166726",
      "siret": "44016672600024",
      "status": "P",
      "store_name": "Le Fournil de l'Aeroport",
      "street": "rue des Pins",
      "street_number": 79,
      "turnover": 240000,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STE SAVINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1000437,
      "email": null,
      "id": 21287,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Marie Jeanne Bellanger",
      "phone_number": "+33 325792473",
      "postal_code": "10300",
      "siren": "501574982",
      "siret": "50157498200010",
      "status": "P",
      "store_name": "Boulangerie Marie Jeanne",
      "street": "avenue du General Leclerc",
      "street_number": 70,
      "turnover": 90000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1000809,
      "email": null,
      "id": 21290,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243379085",
      "postal_code": "53160",
      "siren": "524477635",
      "siret": "52447763500014",
      "status": "P",
      "store_name": "Boulangerie Rouland",
      "street": "rue de la Poste",
      "street_number": 3,
      "turnover": 300000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "2014-04-01",
      "closing_days_ids": [],
      "datlinq_code": 1002099,
      "email": null,
      "id": 332,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0631D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-93357094",
      "postal_code": "06200",
      "siren": "481305944",
      "siret": "48130594400037",
      "status": "G",
      "store_name": "Les Delices de la Pignata",
      "street": "avenue de Fabron",
      "street_number": 242,
      "turnover": 830000,
      "user_id": 183,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOBIGNY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1002305,
      "email": null,
      "id": 41578,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "93000",
      "siren": "512817917",
      "siret": "51281791700010",
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie B' Nina",
      "street": "avenue Edouard Vaillant",
      "street_number": 30,
      "turnover": null,
      "user_id": 74,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DURY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1003532,
      "email": null,
      "id": 33014,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011470252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321552753",
      "postal_code": "62156",
      "siren": "514497882",
      "siret": "51449788200019",
      "status": "P",
      "store_name": "L Hippocampe",
      "street": "rue du Calvaire",
      "street_number": 3,
      "turnover": 100000,
      "user_id": 418,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE VALTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1003612,
      "email": null,
      "id": 21338,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "88230",
      "siren": "524427788",
      "siret": "52442778800012",
      "status": "P",
      "store_name": "Boulangerie Maison Gollette",
      "street": "le Village",
      "street_number": 23,
      "turnover": 120000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRENADE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1003681,
      "email": null,
      "id": 21346,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "THOA JEAN FRANCOIS",
      "phone_number": "000-000",
      "postal_code": "31330",
      "siren": "524478112",
      "siret": "52447811200021",
      "status": "P",
      "store_name": "Chocolatine et compagnie",
      "street": "rue de la Republique",
      "street_number": 17,
      "turnover": 127300,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1004222,
      "email": null,
      "id": 2741,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45423763",
      "postal_code": "75014",
      "siren": "388767105",
      "siret": "38876710500017",
      "status": "EMPTY_STATUS",
      "store_name": "Capricia",
      "street": "rue Didot",
      "street_number": 75,
      "turnover": null,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "YERRES",
      "client_creation_date": "2-9-2010",
      "closing_days_ids": [],
      "datlinq_code": 1004484,
      "email": null,
      "id": 21394,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "Z0535001",
      "location_areas_ids": [],
      "owner_name": "BERTAL",
      "phone_number": "01-69488752",
      "postal_code": "91330",
      "siren": "524643947",
      "siret": "52464394700012",
      "status": "M",
      "store_name": "Boulangerie Aux Gourmandises D Enola",
      "street": "rue Pierre Brossolette",
      "street_number": 67,
      "turnover": 283400,
      "user_id": 84,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HALLUIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1004547,
      "email": null,
      "id": 2743,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 682234149",
      "postal_code": "59250",
      "siren": "513529735",
      "siret": "51352973500013",
      "status": "P",
      "store_name": "Viennoiserie de l Europe",
      "street": "rue de Lille",
      "street_number": 19,
      "turnover": 124800,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HALLUIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1004548,
      "email": null,
      "id": 2744,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 699352104",
      "postal_code": "59250",
      "siren": "519347215",
      "siret": "51934721500013",
      "status": "P",
      "store_name": "Viennoiserie du Centre",
      "street": "rue Marthe Nollet",
      "street_number": 18,
      "turnover": 45700,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VOISINS LE BRETONNEUX",
      "client_creation_date": "13-12-2006",
      "closing_days_ids": [],
      "datlinq_code": 1004617,
      "email": null,
      "id": 21404,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ROIDOR",
      "phone_number": "01-39442815",
      "postal_code": "78960",
      "siren": "493138523",
      "siret": "49313852300011",
      "status": "M",
      "store_name": "Boulangerie Atelier Roidor",
      "street": "rue Alfred de Vigny",
      "street_number": 5,
      "turnover": 450000,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURNEHEM SUR LA HEM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1004639,
      "email": null,
      "id": 21407,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011542252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321356077",
      "postal_code": "62890",
      "siren": "491024915",
      "siret": "49102491500028",
      "status": "P",
      "store_name": "Boulangerie le Fournil des Sarrazins",
      "street": "rue du General de Gaulle",
      "street_number": 57,
      "turnover": 145000,
      "user_id": 422,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ENVERMEU",
      "client_creation_date": "2010-03-29",
      "closing_days_ids": [],
      "datlinq_code": 1004660,
      "email": null,
      "id": 21409,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235857292",
      "postal_code": "76630",
      "siren": "384771135",
      "siret": "38477113500058",
      "status": "P",
      "store_name": "Boulangerie Vallery",
      "street": "rue des Canadiens",
      "street_number": 1,
      "turnover": 250000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURBEVOIE",
      "client_creation_date": "1 juillet 2010",
      "closing_days_ids": [],
      "datlinq_code": 1004781,
      "email": null,
      "id": 2751,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47683065",
      "postal_code": "92400",
      "siren": "523495349",
      "siret": "52349534900012",
      "status": "P",
      "store_name": "Sandwicherie la Gourmandise",
      "street": "avenue Gambetta",
      "street_number": 65,
      "turnover": 100000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DOUARNENEZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1004873,
      "email": null,
      "id": 2752,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-98929496",
      "postal_code": "29100",
      "siren": "438068777",
      "siret": "43806877700012",
      "status": "EMPTY_STATUS",
      "store_name": "La Pidz",
      "street": "rue Duguay Trouin",
      "street_number": 5,
      "turnover": null,
      "user_id": 149,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": "2005",
      "closing_days_ids": [],
      "datlinq_code": 1005068,
      "email": null,
      "id": 21438,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91523102",
      "postal_code": "13007",
      "siren": "520136870",
      "siret": "52013687000018",
      "status": "P",
      "store_name": "Boulangerie la Mascotte",
      "street": "rue d Endoume",
      "street_number": 250,
      "turnover": 200000,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE PRAZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1005155,
      "email": null,
      "id": 21439,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79085821",
      "postal_code": "73120",
      "siren": "349332429",
      "siret": "34933242900050",
      "status": "EMPTY_STATUS",
      "store_name": "Au Pain d Antan",
      "street": "Immeuble Or Blanc",
      "street_number": null,
      "turnover": null,
      "user_id": 61,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DONZERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1005494,
      "email": null,
      "id": 21454,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0543B001",
      "location_areas_ids": [],
      "owner_name": "SARRAZIN",
      "phone_number": "04-75539452",
      "postal_code": "26290",
      "siren": "540045481",
      "siret": "54004548100012",
      "status": "G",
      "store_name": "Boulangerie Madelice",
      "street": "centre commercial Plein Sud",
      "street_number": null,
      "turnover": 400000,
      "user_id": 170,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST PIERRE MONTLIMART",
      "client_creation_date": "2010-09-01",
      "closing_days_ids": [],
      "datlinq_code": 1005624,
      "email": null,
      "id": 21460,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "TOUBLANC",
      "phone_number": "+33 241635744",
      "postal_code": "49110",
      "siren": "524994258",
      "siret": "52499425800019",
      "status": "G",
      "store_name": "Boulangerie Coquelicot",
      "street": "avenue du Bordage",
      "street_number": 1,
      "turnover": 458000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TRELAZE",
      "client_creation_date": "2010-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1005628,
      "email": null,
      "id": 21461,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010009971252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241340095",
      "postal_code": "49800",
      "siren": "525066734",
      "siret": "52506673400019",
      "status": "G",
      "store_name": "Boulangerie le Fournil des Allumettes",
      "street": "rue Jean Jaures",
      "street_number": 206,
      "turnover": 290000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1005982,
      "email": null,
      "id": 21475,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "LEGAY CHOC",
      "phone_number": "01-48876812",
      "postal_code": "75004",
      "siren": "439064445",
      "siret": "43906444500034",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Victor 1920",
      "street": "rue Rambuteau",
      "street_number": 33,
      "turnover": 1525793,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "HORBOURG WIHR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1006435,
      "email": null,
      "id": 21493,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "70072001",
      "location_areas_ids": [],
      "owner_name": "SESSA",
      "phone_number": "03-89247042",
      "postal_code": "68180",
      "siren": "514078906",
      "siret": "51407890600021",
      "status": "M",
      "store_name": "Boulangerie d'Holtzbachoffa",
      "street": "Grand Rue",
      "street_number": 73,
      "turnover": 350000,
      "user_id": 111,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TRELAZE",
      "client_creation_date": "2010-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1006652,
      "email": null,
      "id": 21502,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005218252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241605415",
      "postal_code": "49800",
      "siren": "525231544",
      "siret": "52523154400012",
      "status": "G",
      "store_name": "Boulangerie Le Fournil Du Buisson",
      "street": "boulevard Dautel",
      "street_number": 26,
      "turnover": 533000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTROUGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1006676,
      "email": null,
      "id": 21504,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42531724",
      "postal_code": "92120",
      "siren": "527590632",
      "siret": "52759063200016",
      "status": "P",
      "store_name": "Boulangerie au Peche Mignon",
      "street": "avenue de la Republique",
      "street_number": 112,
      "turnover": 230000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1007467,
      "email": null,
      "id": 2780,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "CN024001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78420033",
      "postal_code": "69002",
      "siren": "325049377",
      "siret": "32504937700022",
      "status": "G",
      "store_name": "Les 3 Brioches",
      "street": "rue de la Republique",
      "street_number": 69,
      "turnover": 1361000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LES CLAYES SOUS BOIS",
      "client_creation_date": "8-10-2010",
      "closing_days_ids": [],
      "datlinq_code": 1008124,
      "email": null,
      "id": 21561,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0904A001",
      "location_areas_ids": [],
      "owner_name": "DUREL",
      "phone_number": "000-000",
      "postal_code": "78340",
      "siren": "414258772",
      "siret": "41425877200022",
      "status": "M",
      "store_name": "Boulangerie Durel",
      "street": "avenue Maurice Jouet",
      "street_number": 50,
      "turnover": 400000,
      "user_id": 97,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COMBS LA VILLE",
      "client_creation_date": "01/10/2010",
      "closing_days_ids": [],
      "datlinq_code": 1008259,
      "email": null,
      "id": 21572,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "COSSON",
      "phone_number": "01-60607110",
      "postal_code": "77380",
      "siren": "527863831",
      "siret": "52786383100014",
      "status": "P",
      "store_name": "Boulangerie la Fournee d'Antan",
      "street": "avenue de la Republique",
      "street_number": 40,
      "turnover": 210000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRATENTOUR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008286,
      "email": null,
      "id": 21576,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ROUJAS JEAN JACQUES",
      "phone_number": "+33 534277820",
      "postal_code": "31150",
      "siren": "527877229",
      "siret": "52787722900015",
      "status": "P",
      "store_name": "Boulangerie Ludojac",
      "street": "rue Leo Ferre",
      "street_number": 6,
      "turnover": 233991,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTERRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008505,
      "email": null,
      "id": 21589,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47212381",
      "postal_code": "92000",
      "siren": "410389795",
      "siret": "41038979500031",
      "status": "G",
      "store_name": "Maître Pain",
      "street": "rue Maurice Thorez",
      "street_number": 85,
      "turnover": 1000006,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE VESINET",
      "client_creation_date": "1-1-2010",
      "closing_days_ids": [],
      "datlinq_code": 1008512,
      "email": null,
      "id": 21596,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SALAGNAC",
      "phone_number": "01-39763128",
      "postal_code": "78110",
      "siren": "483583282",
      "siret": "48358328200023",
      "status": "M",
      "store_name": "Boulangerie Au Gourmet du Vézinet",
      "street": "place de l Eglise",
      "street_number": 14,
      "turnover": 1100000,
      "user_id": 96,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SCHILTIGHEIM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008541,
      "email": null,
      "id": 21621,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-88331995",
      "postal_code": "67300",
      "siren": "520156464",
      "siret": "52015646400015",
      "status": "P",
      "store_name": "Boulangerie Pâtisserie Michael",
      "street": "rue de Vendenheim",
      "street_number": 20,
      "turnover": 180000,
      "user_id": 112,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CAST LE GUILDO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008661,
      "email": null,
      "id": 21717,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BOULIN JULIEN",
      "phone_number": "02-96416189",
      "postal_code": "22380",
      "siren": "522589290",
      "siret": "52258929000025",
      "status": "P",
      "store_name": "Boulangerie De La Rotonde",
      "street": "rue du Guesclin",
      "street_number": 2,
      "turnover": 160000,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MERVILLE",
      "client_creation_date": "2005-04-19",
      "closing_days_ids": [],
      "datlinq_code": 1008716,
      "email": null,
      "id": 21765,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016745252110",
      "location_areas_ids": [],
      "owner_name": "CEROUTER",
      "phone_number": "+33 328483053",
      "postal_code": "59660",
      "siren": "481840304",
      "siret": "48184030400010",
      "status": "G",
      "store_name": "Au Fournil des 2 Ponts",
      "street": "rue du General de Gaulle",
      "street_number": 58,
      "turnover": 474000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST RAPHAEL",
      "client_creation_date": "2008-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1008722,
      "email": null,
      "id": 21771,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010030489252110",
      "location_areas_ids": [],
      "owner_name": "DENIS MOTTET",
      "phone_number": "+33 494192466",
      "postal_code": "83700",
      "siren": "340153964",
      "siret": "34015396400069",
      "status": "M",
      "store_name": "Fournil Monsieur Denis Mottet",
      "street": "rue Charles Goujon",
      "street_number": 126,
      "turnover": 520000,
      "user_id": 451,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURVILLE LA RIVIERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008739,
      "email": null,
      "id": 21784,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235775865",
      "postal_code": "76410",
      "siren": "502832066",
      "siret": "50283206600018",
      "status": "M",
      "store_name": "Boulangerie Froissard",
      "street": "rue Jean Jaures",
      "street_number": 15,
      "turnover": 280843,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRANDCAMP MAISY",
      "client_creation_date": "2010-10-01",
      "closing_days_ids": [],
      "datlinq_code": 1008742,
      "email": "yannickcika@hotmail.com",
      "id": 21787,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010012295252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231226322",
      "postal_code": "14450",
      "siren": "443084025",
      "siret": "44308402500024",
      "status": "G",
      "store_name": "Boulangerie Aux Petits Délices",
      "street": "rue Aristide Briand",
      "street_number": 64,
      "turnover": 400000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEDOUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008829,
      "email": null,
      "id": 21827,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXE40001",
      "location_areas_ids": [],
      "owner_name": "Herve",
      "phone_number": "05-46685090",
      "postal_code": "17230",
      "siren": "528074180",
      "siret": "52807418000019",
      "status": "M",
      "store_name": "Boulangerie Fournil De Villedoux",
      "street": "rue de la Liberte",
      "street_number": 22,
      "turnover": 240000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTREUX CHATEAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008849,
      "email": null,
      "id": 21830,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 384462014",
      "postal_code": "90130",
      "siren": "528145980",
      "siret": "52814598000017",
      "status": "P",
      "store_name": "La Fontaine Aux Delices",
      "street": "rue du General Charles de Gaulle",
      "street_number": 14,
      "turnover": 180000,
      "user_id": 411,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SANTA MARIA DI LOTA",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1008950,
      "email": null,
      "id": 21843,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "VENTURA",
      "phone_number": "04-95323481",
      "postal_code": "20200",
      "siren": "520884354",
      "siret": "52088435400017",
      "status": "M",
      "store_name": "Boulangerie Patisserie Ventura",
      "street": "route du Cap",
      "street_number": 55,
      "turnover": 1048000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRANGES SUR VOLOGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009164,
      "email": null,
      "id": 33035,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "3118E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-29511313",
      "postal_code": "88640",
      "siren": "528227606",
      "siret": "52822760600019",
      "status": "P",
      "store_name": "La Petite Myrtille",
      "street": "quai de Vologne",
      "street_number": 5,
      "turnover": 180000,
      "user_id": 109,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NICE",
      "client_creation_date": "2010-10-01",
      "closing_days_ids": [],
      "datlinq_code": 1009183,
      "email": null,
      "id": 21911,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "06300",
      "siren": "528061617",
      "siret": "52806161700015",
      "status": "P",
      "store_name": "Le Fournil de Saint Roch",
      "street": "boulevard Pierre Semard",
      "street_number": 5,
      "turnover": 150423,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GEREON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009240,
      "email": null,
      "id": 21915,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "44150",
      "siren": "527984876",
      "siret": "52798487600013",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie MB Ancenis",
      "street": "boulevard de la Prairie",
      "street_number": 831,
      "turnover": null,
      "user_id": 138,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST MALO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009292,
      "email": null,
      "id": 21943,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "30176001",
      "location_areas_ids": [],
      "owner_name": "Deborde",
      "phone_number": "02-99819678",
      "postal_code": "35400",
      "siren": "491165551",
      "siret": "49116555100012",
      "status": "M",
      "store_name": "Boulangerie Deborde Philippe",
      "street": "rue Ville Pepin",
      "street_number": 82,
      "turnover": 170000,
      "user_id": 148,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAREUIL LE PORT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009294,
      "email": null,
      "id": 21945,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010006849252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326583196",
      "postal_code": "51700",
      "siren": "511364630",
      "siret": "51136463000026",
      "status": "P",
      "store_name": "Boulangerie aux Delices",
      "street": "avenue Paul Doumer",
      "street_number": 50,
      "turnover": 195000,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CORBEIL ESSONNES",
      "client_creation_date": "1-1-2000",
      "closing_days_ids": [],
      "datlinq_code": 1009320,
      "email": null,
      "id": 21968,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "U0953001",
      "location_areas_ids": [],
      "owner_name": "Samir Bensalem",
      "phone_number": "01-60892840",
      "postal_code": "91100",
      "siren": "429439847",
      "siret": "42943984700014",
      "status": "M",
      "store_name": "Boulangerie Val de l'Essonne",
      "street": "rue de Paris",
      "street_number": 31,
      "turnover": 292000,
      "user_id": 86,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE CREUSOT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009338,
      "email": null,
      "id": 21982,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "HAUF",
      "phone_number": "+33 385787911",
      "postal_code": "71200",
      "siren": "492304456",
      "siret": "49230445600014",
      "status": "P",
      "store_name": "Boulangerie Hauf",
      "street": "rue Marceau",
      "street_number": 58,
      "turnover": 150000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARQUETTE-LEZ-LILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009388,
      "email": null,
      "id": 22029,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010028815252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320407075",
      "postal_code": "59520",
      "siren": "494112592",
      "siret": "49411259200014",
      "status": "M",
      "store_name": "Boulangerie Patisserie Monsieur Cyril Lenne",
      "street": "Rue d'Ypres",
      "street_number": 139,
      "turnover": 320000,
      "user_id": 421,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTIGNY LES METZ",
      "client_creation_date": "2009-10-01",
      "closing_days_ids": [],
      "datlinq_code": 1009468,
      "email": null,
      "id": 37380,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005788252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387637518",
      "postal_code": "57950",
      "siren": "823588116",
      "siret": "82358811600017",
      "status": "P",
      "store_name": "Boulangerie Marie-Blanche",
      "street": "rue du General Franiatte",
      "street_number": 54,
      "turnover": 90000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOUHY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009491,
      "email": null,
      "id": 22107,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 386264927",
      "postal_code": "58310",
      "siren": "501562128",
      "siret": "50156212800014",
      "status": "P",
      "store_name": "Boulangerie Syniec",
      "street": "le Bourg",
      "street_number": null,
      "turnover": 170000,
      "user_id": 414,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALENCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1009509,
      "email": null,
      "id": 22122,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 563292402",
      "postal_code": "82400",
      "siren": "508441060",
      "siret": "50844106000011",
      "status": "M",
      "store_name": "Boulangerie Este",
      "street": "boulevard Victor Guilhem",
      "street_number": 28,
      "turnover": 270000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GERMAIN DU CORBEIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1010259,
      "email": "auxdouceurscorbenoises@hotmail.fr",
      "id": 22223,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "CHASTELLIER",
      "phone_number": "+33 233265235",
      "postal_code": "61000",
      "siren": "531374940",
      "siret": "53137494000017",
      "status": "P",
      "store_name": "Boulangerie Chastellier",
      "street": "place de l Eglise",
      "street_number": 5,
      "turnover": 140000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIVIER AU COURT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1011483,
      "email": null,
      "id": 22258,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010030791252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 324361968",
      "postal_code": "08440",
      "siren": "522291822",
      "siret": "52229182200016",
      "status": "P",
      "store_name": "Boulangerie Zanelli Vincent",
      "street": "rue Jean Rogissart",
      "street_number": 1,
      "turnover": 220000,
      "user_id": 397,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE MEE SUR SEINE",
      "client_creation_date": "1-2-2010",
      "closing_days_ids": [],
      "datlinq_code": 1011870,
      "email": null,
      "id": 22264,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SAMAD",
      "phone_number": "09-54736395",
      "postal_code": "77350",
      "siren": "520372780",
      "siret": "52037278000012",
      "status": "G",
      "store_name": "Boulangerie Sarah",
      "street": "avenue de Corbeil",
      "street_number": null,
      "turnover": 542000,
      "user_id": 72,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA ROCHELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1012039,
      "email": null,
      "id": 22271,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "LI314001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46412695",
      "postal_code": "17000",
      "siren": "501614770",
      "siret": "50161477000029",
      "status": "P",
      "store_name": "Patisserie d' Jolly",
      "street": "rue Chaudrier",
      "street_number": 16,
      "turnover": 420000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANGOULEME",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1012072,
      "email": null,
      "id": 22273,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-45950509",
      "postal_code": "16000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La biscuiterie Lolmede",
      "street": "rue des Arceaux",
      "street_number": 3,
      "turnover": null,
      "user_id": 155,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANCY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1012795,
      "email": null,
      "id": 22303,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-83339687",
      "postal_code": "54000",
      "siren": "528822562",
      "siret": "52882256200013",
      "status": "EMPTY_STATUS",
      "store_name": "Les Delices d Astride",
      "street": "avenue du 20eme Corps",
      "street_number": 3,
      "turnover": null,
      "user_id": 106,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHALON SUR SAONE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1015782,
      "email": null,
      "id": 22321,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010031426252110",
      "location_areas_ids": [],
      "owner_name": "Ines",
      "phone_number": "+33 385931663",
      "postal_code": "71100",
      "siren": "531294627",
      "siret": "53129462700017",
      "status": "G",
      "store_name": "Boulangerie Si Felipe",
      "street": "avenue Pierre Nugues",
      "street_number": 15,
      "turnover": 400000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST AVERTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1015844,
      "email": null,
      "id": 2823,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-47750357",
      "postal_code": "37550",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Le Fournil de pierre",
      "street": "avenue du Lac",
      "street_number": 16,
      "turnover": 600000,
      "user_id": 142,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SARZEAU",
      "client_creation_date": "2010-12-09",
      "closing_days_ids": [],
      "datlinq_code": 1017677,
      "email": "sirocodu56@hotmail.fr",
      "id": 22358,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31589001",
      "location_areas_ids": [],
      "owner_name": "BROHAN",
      "phone_number": "02-97417190",
      "postal_code": "56370",
      "siren": "528900046",
      "siret": "52890004600012",
      "status": "G",
      "store_name": "Boulangerie Au Plaisir Gourmand",
      "street": "rue du General de Gaulle",
      "street_number": 20,
      "turnover": 948938,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ETRICOURT MANANCOURT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1017846,
      "email": null,
      "id": 37383,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "Y1168001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-22830045",
      "postal_code": "80360",
      "siren": "499736155",
      "siret": "49973615500015",
      "status": "P",
      "store_name": "Chez Domi",
      "street": "Grande Rue",
      "street_number": 15,
      "turnover": 100000,
      "user_id": 119,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CASTELNAUDARY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1018043,
      "email": null,
      "id": 47690,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468605663",
      "postal_code": "11400",
      "siren": "529040560",
      "siret": "52904056000011",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Pains et Passions (Bassin)",
      "street": "avenue Francois Mitterrand",
      "street_number": 29,
      "turnover": null,
      "user_id": 440,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VANNES",
      "client_creation_date": "2010-12-28",
      "closing_days_ids": [],
      "datlinq_code": 1018126,
      "email": null,
      "id": 22386,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31559001",
      "location_areas_ids": [],
      "owner_name": "MORIO",
      "phone_number": "02-97407296",
      "postal_code": "56000",
      "siren": "529111163",
      "siret": "52911116300018",
      "status": "G",
      "store_name": "Boulangerie Morio",
      "street": "rue Henri Dunant",
      "street_number": 13,
      "turnover": 550000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STAINS",
      "client_creation_date": "1-3-2012",
      "closing_days_ids": [],
      "datlinq_code": 1018233,
      "email": null,
      "id": 2831,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0261G001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48225442",
      "postal_code": "93240",
      "siren": "750497232",
      "siret": "75049723200017",
      "status": "P",
      "store_name": "Sandwicherie le Bon Pain de Stains",
      "street": "rue Roger Salengro",
      "street_number": 64,
      "turnover": 74000,
      "user_id": 77,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRASSE",
      "client_creation_date": "2009-06-09",
      "closing_days_ids": [],
      "datlinq_code": 1019108,
      "email": null,
      "id": 22426,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "SILVA PAULO",
      "phone_number": "04-93601991",
      "postal_code": "06130",
      "siren": "512956319",
      "siret": "51295631900010",
      "status": "G",
      "store_name": "Boulangerie Au Pain De Baptiste",
      "street": "route de Mouans Sartoux",
      "street_number": 3,
      "turnover": 1000000,
      "user_id": 182,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BEZIERS",
      "client_creation_date": "2011-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1019282,
      "email": null,
      "id": 22437,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010029772252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467764040",
      "postal_code": "34500",
      "siren": "490695855",
      "siret": "49069585500026",
      "status": "M",
      "store_name": "Boulangerie La Marquise",
      "street": "boulevard de la Liberte",
      "street_number": 46,
      "turnover": 245000,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1020246,
      "email": null,
      "id": 33045,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "1250B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-45557975",
      "postal_code": "75007",
      "siren": "519167878",
      "siret": "51916787800015",
      "status": "P",
      "store_name": "Couleurs de Ferme",
      "street": "avenue de la Motte Picquet",
      "street_number": 33,
      "turnover": 0,
      "user_id": 93,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTERRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1020279,
      "email": null,
      "id": 2849,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1785D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-42044498",
      "postal_code": "92000",
      "siren": "524525920",
      "siret": "52452592000020",
      "status": "P",
      "store_name": "Le Fournil Clemenceau",
      "street": "avenue Georges Clemenceau",
      "street_number": 346,
      "turnover": 100000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LUNEL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1020416,
      "email": null,
      "id": 2854,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 499645686",
      "postal_code": "34400",
      "siren": "513372953",
      "siret": "51337295300010",
      "status": "P",
      "store_name": "Sandwicherie le Fournil de Lunel",
      "street": "avenue du Marechal de Lattre de Tassigny",
      "street_number": 399,
      "turnover": 10000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": "25 Décembre 2010",
      "closing_days_ids": [],
      "datlinq_code": 1020512,
      "email": "philippe.ferrer@dbmail.com",
      "id": 22521,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "RLN69001",
      "location_areas_ids": [],
      "owner_name": "FERRER",
      "phone_number": "04-91893181",
      "postal_code": "13012",
      "siren": "518564992",
      "siret": "51856499200015",
      "status": "G",
      "store_name": "Boulangerie L'Atelier D'Audrey",
      "street": "avenue du 24 Avril 1915",
      "street_number": 3,
      "turnover": 622500,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CALVI",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1020549,
      "email": "sarlcalviboul@gmail.com",
      "id": 33047,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1618D001",
      "location_areas_ids": [],
      "owner_name": "Garsi",
      "phone_number": "0631802376",
      "postal_code": "20260",
      "siren": "530293521",
      "siret": "53029352100015",
      "status": "G",
      "store_name": "Boulangerie Garsi",
      "street": "avenue Santa Maria",
      "street_number": 5,
      "turnover": 703900,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHARTRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1020711,
      "email": null,
      "id": 37018,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 237229820",
      "postal_code": "28000",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Subway",
      "street": "place des Epars",
      "street_number": 6,
      "turnover": null,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA ROCHELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1020928,
      "email": null,
      "id": 37384,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "20198001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-46412671",
      "postal_code": "17000",
      "siren": "498676766",
      "siret": "49867676600013",
      "status": "P",
      "store_name": "Restaurant Basilic'O",
      "street": "rue du Palais",
      "street_number": 41,
      "turnover": 20000,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1021642,
      "email": null,
      "id": 41587,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78027171",
      "postal_code": "69007",
      "siren": "525062139",
      "siret": "52506213900015",
      "status": "EMPTY_STATUS",
      "store_name": "Class'croute",
      "street": "avenue Debourg",
      "street_number": 35,
      "turnover": null,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROISSY EN FRANCE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1021654,
      "email": null,
      "id": 34234,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47234837",
      "postal_code": "95700",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Sandwicherie Bert's",
      "street": "aeroport Charles de Gaulle - Terminal 2F",
      "street_number": null,
      "turnover": null,
      "user_id": 79,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CLAMART",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1021947,
      "email": null,
      "id": 22578,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "Z0795001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-46327085",
      "postal_code": "92140",
      "siren": "530494657",
      "siret": "53049465700014",
      "status": "P",
      "store_name": "Boulangerie la Clamartoise Mr Aligue ",
      "street": "route du Pave Blanc",
      "street_number": 71,
      "turnover": 320000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1022284,
      "email": null,
      "id": 2881,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 562478267",
      "postal_code": "31500",
      "siren": "702045519",
      "siret": "70204551900056",
      "status": "EMPTY_STATUS",
      "store_name": "Le Fournil de Pierre",
      "street": "chemin de la Terrasse",
      "street_number": 2,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FRONTON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1022424,
      "email": null,
      "id": 22621,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005185252110",
      "location_areas_ids": [],
      "owner_name": "PESCAY PHILIPPE",
      "phone_number": "+33 561355289",
      "postal_code": "31620",
      "siren": "519120174",
      "siret": "51912017400015",
      "status": "G",
      "store_name": "Boulangerie Pescay Philippe",
      "street": "avenue de Toulouse",
      "street_number": 115,
      "turnover": 821400,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAMPTOCE SUR LOIRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1022563,
      "email": null,
      "id": 22631,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241399233",
      "postal_code": "49123",
      "siren": "530353481",
      "siret": "53035348100019",
      "status": "P",
      "store_name": "Boulangerie Leroi Et Associés",
      "street": "rue Gilles de Rais",
      "street_number": 9,
      "turnover": 279000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NEUVILLE DE POITOU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1023006,
      "email": null,
      "id": 22646,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "23192001",
      "location_areas_ids": [],
      "owner_name": "JACQUET",
      "phone_number": "05-49512009",
      "postal_code": "86170",
      "siren": "528672520",
      "siret": "52867252000012",
      "status": "M",
      "store_name": "La Briole",
      "street": "rue du Sergent Bangoura Moride",
      "street_number": 10,
      "turnover": 220000,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "L ILE ROUSSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1025993,
      "email": "info@hotel-cotesud.com",
      "id": 33055,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "RLQ41001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-95630170",
      "postal_code": "20220",
      "siren": "452025265",
      "siret": "45202526500011",
      "status": "M",
      "store_name": "Hotel l'Escale Cote Sud",
      "street": "rue Notre Dame",
      "street_number": 22,
      "turnover": 450600,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CLAUD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1027710,
      "email": null,
      "id": 22709,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-45713247",
      "postal_code": "16450",
      "siren": "511029969",
      "siret": "51102996900017",
      "status": "P",
      "store_name": "Boulangerie au Fin Palais St Claudais",
      "street": "place Sadi Carnot",
      "street_number": null,
      "turnover": 187000,
      "user_id": 155,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RANDAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1027956,
      "email": null,
      "id": 22719,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "TUPONE",
      "phone_number": "04-70415565",
      "postal_code": "63310",
      "siren": "403671860",
      "siret": "40367186000019",
      "status": "G",
      "store_name": "Boulangerie Tupone",
      "street": "place des Sports",
      "street_number": 10,
      "turnover": 1030000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PONT DE VAUX",
      "client_creation_date": "2006-11-23",
      "closing_days_ids": [],
      "datlinq_code": 1028282,
      "email": "pas passer mercredi",
      "id": 22753,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MILLOUX",
      "phone_number": "+33 385303433",
      "postal_code": "01190",
      "siren": "492785464",
      "siret": "49278546400016",
      "status": "P",
      "store_name": "Boulangerie Banette Passions Gourmandes",
      "street": "place Legrand",
      "street_number": 17,
      "turnover": 300000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PALLUAU SUR INDRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1028745,
      "email": null,
      "id": 33066,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0109A001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-54384614",
      "postal_code": "36500",
      "siren": "533564746",
      "siret": "53356474600014",
      "status": "M",
      "store_name": "Au Marche d'Agnes",
      "street": "rue Basse",
      "street_number": 20,
      "turnover": 250000,
      "user_id": 52,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROUEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1028781,
      "email": null,
      "id": 22791,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232100079",
      "postal_code": "76000",
      "siren": "418678645",
      "siret": "41867864500023",
      "status": "P",
      "store_name": "Boulangerie Bastien",
      "street": "place de la Pucelle",
      "street_number": 29,
      "turnover": 210000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DOLE",
      "client_creation_date": "2010-05-01",
      "closing_days_ids": [],
      "datlinq_code": 1028992,
      "email": null,
      "id": 22802,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Alexandre",
      "phone_number": "+33 384709726",
      "postal_code": "39100",
      "siren": "523113629",
      "siret": "52311362900019",
      "status": "P",
      "store_name": "Alexandre Boulangerie",
      "street": "rue des Arenes",
      "street_number": 68,
      "turnover": 250000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SEMECOURT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1029338,
      "email": null,
      "id": 2925,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387804036",
      "postal_code": "57280",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "centre Commercial Auchan",
      "street_number": null,
      "turnover": null,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BESANCON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1029585,
      "email": null,
      "id": 2931,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 381885597",
      "postal_code": "25048",
      "siren": "501803076",
      "siret": "50180307600014",
      "status": "P",
      "store_name": "Boulangerie Paul",
      "street": "ZAC de Valentin",
      "street_number": null,
      "turnover": 250000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1029605,
      "email": null,
      "id": 2949,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78928916",
      "postal_code": "69002",
      "siren": "452085632",
      "siret": "45208563200035",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "rue des Remparts d Ainay",
      "street_number": 14,
      "turnover": null,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA VILLE DU BOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1029610,
      "email": null,
      "id": 2954,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-69806889",
      "postal_code": "91620",
      "siren": "450939616",
      "siret": "45093961600014",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Paul",
      "street": "centre Commercial Carrefour",
      "street_number": null,
      "turnover": null,
      "user_id": 86,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIROFLAY",
      "client_creation_date": "1-1-2010",
      "closing_days_ids": [],
      "datlinq_code": 1030078,
      "email": null,
      "id": 22871,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0378B001",
      "location_areas_ids": [],
      "owner_name": "LAISNE",
      "phone_number": "01-30244796",
      "postal_code": "78220",
      "siren": "530338334",
      "siret": "53033833400010",
      "status": "M",
      "store_name": "la Boulangerie D'antoine",
      "street": "avenue du General Leclerc",
      "street_number": 35,
      "turnover": 310000,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TRIGUERES",
      "client_creation_date": "2009-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1030650,
      "email": null,
      "id": 22923,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003293252110",
      "location_areas_ids": [],
      "owner_name": "PINSON",
      "phone_number": "+33 238940497",
      "postal_code": "45220",
      "siren": "453331647",
      "siret": "45333164700025",
      "status": "M",
      "store_name": "Boulangerie Pinson Rodrigue",
      "street": "Grande Rue",
      "street_number": 5,
      "turnover": 213000,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURBEVOIE",
      "client_creation_date": "20-5-2011",
      "closing_days_ids": [],
      "datlinq_code": 1031195,
      "email": null,
      "id": 22963,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MOUSSET MONIQUE",
      "phone_number": "01-43331670",
      "postal_code": "92400",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "Boulangerie Tentation Mousset",
      "street": "rue de Colombes",
      "street_number": 109,
      "turnover": 764200,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHARTRES",
      "client_creation_date": "2007-11-06",
      "closing_days_ids": [],
      "datlinq_code": 1031810,
      "email": null,
      "id": 23018,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "AVERT",
      "phone_number": "+33 237282000",
      "postal_code": "28000",
      "siren": "512980913",
      "siret": "51298091300010",
      "status": "M",
      "store_name": "Cote Drive l'Instant Pain",
      "street": "Avenue d'Orléans",
      "street_number": 46,
      "turnover": 700000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LIGNOL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1031827,
      "email": null,
      "id": 23022,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "56160",
      "siren": "507727303",
      "siret": "50772730300012",
      "status": "P",
      "store_name": "Boulangerie Bara Mod Kozh",
      "street": "place Corentin le Floch",
      "street_number": 9,
      "turnover": 180000,
      "user_id": 145,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOIS COLOMBES",
      "client_creation_date": "22-5-2007",
      "closing_days_ids": [],
      "datlinq_code": 1032155,
      "email": null,
      "id": 23053,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BEN JEDIANE BECHIR",
      "phone_number": "01-42421227",
      "postal_code": "92270",
      "siren": "497898809",
      "siret": "49789880900015",
      "status": "M",
      "store_name": "Boulangerie aux Delices de la Gare",
      "street": "rue du General Leclerc",
      "street_number": 39,
      "turnover": 570200,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA GARENNE COLOMBES",
      "client_creation_date": "1-1-2010",
      "closing_days_ids": [],
      "datlinq_code": 1033372,
      "email": null,
      "id": 23086,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "David GOUDENHOOFT",
      "phone_number": "01-47822188",
      "postal_code": "92250",
      "siren": "520295999",
      "siret": "52029599900012",
      "status": "P",
      "store_name": "Boulangerie Maison Goudenhooft",
      "street": "place de la Liberte",
      "street_number": 7,
      "turnover": 703000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA VARENNE ST HILAIRE",
      "client_creation_date": "2007",
      "closing_days_ids": [],
      "datlinq_code": 1033442,
      "email": null,
      "id": 3008,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-48832501",
      "postal_code": "94210",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Pizza del Piano",
      "street": "boulevard de Champigny",
      "street_number": 81,
      "turnover": 250000,
      "user_id": 82,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLEJUIF",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1033586,
      "email": null,
      "id": 23096,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "94800",
      "siren": "431230853",
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Check et Raouf",
      "street": "boulevard Maxime Gorki",
      "street_number": 175,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RIVEDOUX PLAGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1033816,
      "email": null,
      "id": 23138,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "LEYSSENOT",
      "phone_number": "05-46098250",
      "postal_code": "17940",
      "siren": "521326769",
      "siret": "52132676900028",
      "status": "G",
      "store_name": "Boulangerie Pâtisserie Maison des Pains",
      "street": "rue Edouard Herriot",
      "street_number": 49,
      "turnover": 1209500,
      "user_id": 154,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RIBERAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1033857,
      "email": null,
      "id": 23160,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-53900036",
      "postal_code": "24600",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Patisserie Bordelaise",
      "street": "place Nationale",
      "street_number": 6,
      "turnover": null,
      "user_id": 197,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PORTETS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1033869,
      "email": null,
      "id": 23164,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56863120",
      "postal_code": "33640",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie le Comptoir des Pains",
      "street": "route des Graves",
      "street_number": 29,
      "turnover": 715000,
      "user_id": 202,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARSEILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1034762,
      "email": null,
      "id": 23193,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91894230",
      "postal_code": "13011",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Moulin de Galette",
      "street": "centre Commercial la Valentine",
      "street_number": null,
      "turnover": 10000,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PLAN DE CUQUES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1034797,
      "email": null,
      "id": 3025,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-91050722",
      "postal_code": "13380",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Pizza Bea",
      "street": "avenue Paul Sirvent",
      "street_number": null,
      "turnover": null,
      "user_id": 176,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE GRAU DU ROI",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1037018,
      "email": null,
      "id": 23263,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466515401",
      "postal_code": "30240",
      "siren": "417710837",
      "siret": "41771083700010",
      "status": "G",
      "store_name": "Boulangerie Banette Le Friand II",
      "street": "place de la Liberation",
      "street_number": null,
      "turnover": 450000,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MULHOUSE",
      "client_creation_date": "1975-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1037020,
      "email": null,
      "id": 23265,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "2143E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-89422045",
      "postal_code": "68200",
      "siren": "305839177",
      "siret": "30583917700014",
      "status": "G",
      "store_name": "Boulangerie Pâtisserie Dirringer",
      "street": "rue Franklin",
      "street_number": 20,
      "turnover": 781000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALLOIRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1038621,
      "email": null,
      "id": 23303,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-79590294",
      "postal_code": "73450",
      "siren": "452233539",
      "siret": "45223353900017",
      "status": "P",
      "store_name": "Boulangerie Gros",
      "street": "rue de la Setaz",
      "street_number": null,
      "turnover": 533000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "1-4-1995",
      "closing_days_ids": [],
      "datlinq_code": 1041339,
      "email": null,
      "id": 23378,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MAXIME",
      "phone_number": "01-42002766",
      "postal_code": "75019",
      "siren": "400573648",
      "siret": "40057364800039",
      "status": "P",
      "store_name": "Boulangerie aux Delices De Maxime",
      "street": "rue Petit",
      "street_number": 70,
      "turnover": 2000,
      "user_id": 88,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BAGNOLS SUR CEZE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1042130,
      "email": "laurence.vivier0837@orange.fr",
      "id": 23399,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007614252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466895661",
      "postal_code": "30200",
      "siren": "380012666",
      "siret": "38001266600018",
      "status": "G",
      "store_name": "Au Fournil de Bagnols (Vivier)",
      "street": "boulevard Theodore Lacombe",
      "street_number": 43,
      "turnover": 350000,
      "user_id": 443,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TARASCON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1042134,
      "email": null,
      "id": 23403,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-90910117",
      "postal_code": "13150",
      "siren": "501010516",
      "siret": "50101051600018",
      "status": "P",
      "store_name": "Patisserie la Tarasque",
      "street": "rue des Halles",
      "street_number": 56,
      "turnover": 250000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PERONNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1042426,
      "email": null,
      "id": 3079,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "80200",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Au Petit Creux",
      "street": "Place du Commandant Louis Daud",
      "street_number": 5,
      "turnover": 223300,
      "user_id": 126,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": "2009-10-31",
      "closing_days_ids": [],
      "datlinq_code": 1042863,
      "email": null,
      "id": 23431,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235462155",
      "postal_code": "76620",
      "siren": "421502352",
      "siret": "42150235200022",
      "status": "P",
      "store_name": "Boulangerie Bardin",
      "street": "rue Romain Rolland",
      "street_number": 7,
      "turnover": 342200,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CALAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1042963,
      "email": null,
      "id": 23502,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011527252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321363700",
      "postal_code": "62100",
      "siren": "523881357",
      "siret": "52388135700017",
      "status": "P",
      "store_name": "Boulangerie Petitprès",
      "street": "boulevard Pasteur",
      "street_number": 11,
      "turnover": 140000,
      "user_id": 422,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROZERIEULLES",
      "client_creation_date": "2008-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1042971,
      "email": null,
      "id": 23510,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011159252110",
      "location_areas_ids": [],
      "owner_name": "Raphaël Morisset",
      "phone_number": "+33 387805227",
      "postal_code": "57160",
      "siren": "501580716",
      "siret": "50158071600014",
      "status": "P",
      "store_name": "Boulangerie Banette Morisset",
      "street": "rue Jean Burger",
      "street_number": 54,
      "turnover": 280000,
      "user_id": 394,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROTHAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1043618,
      "email": null,
      "id": 23527,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-67074450",
      "postal_code": "67570",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie au Bon Pain",
      "street": "place du General de Gaulle",
      "street_number": 12,
      "turnover": 100000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST LOUIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1043662,
      "email": null,
      "id": 33091,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "80029001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-89678842",
      "postal_code": "68300",
      "siren": "424365534",
      "siret": "42436553400017",
      "status": "P",
      "store_name": "Restaurant Elbistan 68",
      "street": "avenue du General de Gaulle",
      "street_number": 14,
      "turnover": 150000,
      "user_id": 111,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MITTELBRONN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1043699,
      "email": null,
      "id": 23532,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 387080396",
      "postal_code": "57370",
      "siren": "451259766",
      "siret": "45125976600025",
      "status": "EMPTY_STATUS",
      "store_name": "Boulangerie Martini",
      "street": "rue Saint Augustin Schoeffler",
      "street_number": 20,
      "turnover": null,
      "user_id": 395,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRANDVILLIERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1043732,
      "email": null,
      "id": 23560,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-44467810",
      "postal_code": "60210",
      "siren": "443167739",
      "siret": "44316773900020",
      "status": "P",
      "store_name": "Boulangerie Banette Guerin Thierry",
      "street": "rue du General Leclerc",
      "street_number": 5,
      "turnover": 240000,
      "user_id": 78,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALRAS PLAGE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1044390,
      "email": null,
      "id": 3105,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467983788",
      "postal_code": "34350",
      "siren": "510860240",
      "siret": "51086024000017",
      "status": "P",
      "store_name": "Le Pain Dore",
      "street": "Avenue Des Elysees",
      "street_number": 16,
      "turnover": 115000,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DAX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1045372,
      "email": null,
      "id": 33097,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "03016001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-58740075",
      "postal_code": "40100",
      "siren": "402205819",
      "siret": "40220581900046",
      "status": "P",
      "store_name": "Traiteur La Tourtière",
      "street": "rue Saint Vincent",
      "street_number": 12,
      "turnover": 840000,
      "user_id": 210,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PEYREHORADE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1045680,
      "email": null,
      "id": 37393,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RP467001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-58730078",
      "postal_code": "40300",
      "siren": "325741221",
      "siret": "32574122100015",
      "status": "P",
      "store_name": "Commerce Barthouil",
      "street": "route de Hastingues",
      "street_number": 378,
      "turnover": 100,
      "user_id": 209,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ASCAIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1045702,
      "email": "boulangerie.susperregui@orange.fr",
      "id": 23601,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RP564001",
      "location_areas_ids": [],
      "owner_name": "larronde alain",
      "phone_number": "05-59540045",
      "postal_code": "64310",
      "siren": "499546620",
      "siret": "49954662000018",
      "status": "G",
      "store_name": "Boulangerie Susperregui",
      "street": "rue Ernest Fourneau",
      "street_number": 0,
      "turnover": 747500,
      "user_id": 214,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SANTES",
      "client_creation_date": "2010-09-28",
      "closing_days_ids": [],
      "datlinq_code": 1045923,
      "email": null,
      "id": 23620,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011546252110",
      "location_areas_ids": [],
      "owner_name": "DROQUE",
      "phone_number": "+33 320071089",
      "postal_code": "59211",
      "siren": "525061867",
      "siret": "52506186700012",
      "status": "M",
      "store_name": "Boulangerie Droque",
      "street": "rue Albert Bernard",
      "street_number": 49,
      "turnover": 160000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST OMER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1045937,
      "email": null,
      "id": 23634,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321391141",
      "postal_code": "62500",
      "siren": "491384467",
      "siret": "49138446700016",
      "status": "P",
      "store_name": "Boulangerie de Lyzel",
      "street": "rue Saint Martin",
      "street_number": 50,
      "turnover": 214000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAPPELLE LA GRANDE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1045947,
      "email": null,
      "id": 23644,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328219310",
      "postal_code": "59180",
      "siren": "518677984",
      "siret": "51867798400016",
      "status": "P",
      "store_name": "Boulangerie Geoffrey",
      "street": "rue Anatole France",
      "street_number": 55,
      "turnover": 230000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHATELAUDREN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1048927,
      "email": null,
      "id": 33102,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31504001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-96741054",
      "postal_code": "22170",
      "siren": "510266539",
      "siret": "51026653900012",
      "status": "P",
      "store_name": "Boucherie Chez Christophe",
      "street": "place de la Republique",
      "street_number": 37,
      "turnover": 100000,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MARCIAC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1049413,
      "email": "Verge-borderolle.thierry@orange.fr",
      "id": 23728,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007521252110",
      "location_areas_ids": [],
      "owner_name": "VERGE BORDEROLLE",
      "phone_number": "+33 562093869",
      "postal_code": "32230",
      "siren": "503352098",
      "siret": "50335209800019",
      "status": "G",
      "store_name": "Verge Borderolle Marciac",
      "street": "Rue Henri Laignoux",
      "street_number": 1,
      "turnover": 345809,
      "user_id": 448,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST EVARZEC",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1051711,
      "email": null,
      "id": 3179,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-98562700",
      "postal_code": "29170",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Le Botticelli",
      "street": "Place De L'eglise",
      "street_number": 1,
      "turnover": null,
      "user_id": 149,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COMPIEGNE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1052104,
      "email": null,
      "id": 37396,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0621E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "60200",
      "siren": "186008603",
      "siret": null,
      "status": "P",
      "store_name": "Ctre De Formation App",
      "street": "Rue Joseph Cugnot",
      "street_number": 3,
      "turnover": 1000,
      "user_id": 311,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LESCAR",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1054055,
      "email": null,
      "id": 3204,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "larquier",
      "phone_number": "05-59622003",
      "postal_code": "64230",
      "siren": "499144392",
      "siret": "49914439200010",
      "status": "M",
      "store_name": "Les Delices de Melody",
      "street": "avenue Marguerite de Navarre",
      "street_number": null,
      "turnover": 350000,
      "user_id": 211,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHAMPAGNE EN VALROMEY",
      "client_creation_date": "2011-06-14",
      "closing_days_ids": [],
      "datlinq_code": 1054175,
      "email": null,
      "id": 23806,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "MATHIEU CRETIN",
      "phone_number": "+33 479876029",
      "postal_code": "01260",
      "siren": "494981467",
      "siret": "49498146700017",
      "status": "G",
      "store_name": "Boulangerie la Valromeysanne",
      "street": "Grande Rue",
      "street_number": 298,
      "turnover": 493300,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "2011-11-04",
      "closing_days_ids": [],
      "datlinq_code": 1055079,
      "email": "lemoulindelea@gmail.com",
      "id": 386,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0740A001",
      "location_areas_ids": [],
      "owner_name": "Hervé connay-stofft",
      "phone_number": "04-78272433",
      "postal_code": "69004",
      "siren": "533208385",
      "siret": "53320838500021",
      "status": "G",
      "store_name": "Boulangerie le Moulin de Lea (LEHA)",
      "street": "Grande Rue de la Croix Rousse",
      "street_number": 56,
      "turnover": 718135,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [
        1
      ],
      "average_ticket": 3.45,
      "city": "MONTLHERY",
      "client_creation_date": "26-7-2011",
      "closing_days_ids": [
        13,
        14
      ],
      "datlinq_code": 1055693,
      "email": null,
      "id": 23946,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": true,
      "local_id": "K0711001",
      "location_areas_ids": [
        2,
        1
      ],
      "owner_name": "HUSSON ET TESSIER",
      "phone_number": "01-64490337",
      "postal_code": "91310",
      "siren": "533762290",
      "siret": "53376229000013",
      "status": "G",
      "store_name": "Au Fournil de la Tour",
      "street": "place du Marche",
      "street_number": 20,
      "turnover": 800000,
      "user_id": 86,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CALAIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1055700,
      "email": null,
      "id": 33125,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011633252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321170546",
      "postal_code": "62100",
      "siren": "533571204",
      "siret": "53357120400015",
      "status": "G",
      "store_name": "Pain et Levain",
      "street": "rue Gutenberg",
      "street_number": 0,
      "turnover": 500000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1055715,
      "email": null,
      "id": 23949,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "HAVART",
      "phone_number": "+33 321316992",
      "postal_code": "62200",
      "siren": "533848750",
      "siret": "53384875000014",
      "status": "P",
      "store_name": "Boulangerie Havart",
      "street": "rue Louis Faidherbe",
      "street_number": 9,
      "turnover": 200000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AMILLY",
      "client_creation_date": "2011-08-05",
      "closing_days_ids": [],
      "datlinq_code": 1056888,
      "email": null,
      "id": 24009,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "LAUGERAY",
      "phone_number": "+33 237329429",
      "postal_code": "28300",
      "siren": "533950051",
      "siret": "53395005100011",
      "status": "P",
      "store_name": "Boulangerie l'Authentique",
      "street": "rue de la Republique",
      "street_number": 4,
      "turnover": 240000,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTPELLIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1056916,
      "email": null,
      "id": 24014,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "34070",
      "siren": "533750568",
      "siret": "53375056800016",
      "status": "P",
      "store_name": "Boulangerie Croissant de Lune",
      "street": "rue Eurydice",
      "street_number": 42,
      "turnover": 10000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SERMAISES",
      "client_creation_date": "2011-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1056987,
      "email": null,
      "id": 24018,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "NAU",
      "phone_number": "+33 238397607",
      "postal_code": "45300",
      "siren": "534099619",
      "siret": "53409961900015",
      "status": "M",
      "store_name": "Boulangerie Banette Le Petit Gourmand",
      "street": "rue Guy Renier",
      "street_number": 18,
      "turnover": 175000,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MESNILS SUR ITON",
      "client_creation_date": "1905-07-03",
      "closing_days_ids": [],
      "datlinq_code": 1057016,
      "email": null,
      "id": 24020,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005579252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232345089",
      "postal_code": "27240",
      "siren": "534141767",
      "siret": "53414176700028",
      "status": "M",
      "store_name": "Boulangerie le Fournil des Saveurs",
      "street": "rue de Verdun",
      "street_number": 11,
      "turnover": 289825,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VAUREAL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1057312,
      "email": null,
      "id": 3265,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-34250332",
      "postal_code": "95490",
      "siren": "534137211",
      "siret": "53413721100015",
      "status": "EMPTY_STATUS",
      "store_name": "Alan Pizza",
      "street": "av de la Revolution Francaise",
      "street_number": 2,
      "turnover": null,
      "user_id": 80,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MAUBEUGE",
      "client_creation_date": "2000-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1057519,
      "email": null,
      "id": 3271,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011519252110",
      "location_areas_ids": [],
      "owner_name": "AIT SAID AMNI MOHAMED",
      "phone_number": "+33 327399031",
      "postal_code": "59600",
      "siren": "534751102",
      "siret": "53475110200011",
      "status": "G",
      "store_name": "Croissant De Lune",
      "street": "rue de Douzies",
      "street_number": 57,
      "turnover": 900000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CORTE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1058129,
      "email": null,
      "id": 33461,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0407D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-95610470",
      "postal_code": "20250",
      "siren": "313063927",
      "siret": "31306392700013",
      "status": "M",
      "store_name": "Maison de Retraite Ehpad U Serenu",
      "street": "rue Colonel Ferracci",
      "street_number": 5,
      "turnover": 300000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURCELLES SUR SEINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1058139,
      "email": null,
      "id": 3287,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "27940",
      "siren": "534525043",
      "siret": "53452504300012",
      "status": "EMPTY_STATUS",
      "store_name": "Tabac Le Stop",
      "street": "route des Andelys",
      "street_number": 3,
      "turnover": null,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LANDERNEAU",
      "client_creation_date": "2011",
      "closing_days_ids": [],
      "datlinq_code": 1058266,
      "email": "boedechenry@hotmail.fr",
      "id": 24117,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "31696001",
      "location_areas_ids": [],
      "owner_name": "Boedec Henry",
      "phone_number": "02-98215918",
      "postal_code": "29800",
      "siren": "534517446",
      "siret": "53451744600017",
      "status": "M",
      "store_name": "Boulangerie Banette Plaisirs Sucrés",
      "street": "rue Chanoine Kerbrat",
      "street_number": 10,
      "turnover": 256000,
      "user_id": 147,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ENGLEFONTAINE",
      "client_creation_date": "2005-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1058498,
      "email": null,
      "id": 24138,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "A6403001",
      "location_areas_ids": [],
      "owner_name": "FIEVET",
      "phone_number": "+33 327416656",
      "postal_code": "59530",
      "siren": "534569496",
      "siret": "53456949600019",
      "status": "G",
      "store_name": "Boulangerie Fievet",
      "street": "Chaussee Brunehaut",
      "street_number": 48,
      "turnover": 600000,
      "user_id": 415,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": "2013-04-26",
      "closing_days_ids": [],
      "datlinq_code": 1058673,
      "email": null,
      "id": 24154,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016454252110",
      "location_areas_ids": [],
      "owner_name": "DEMORY/DESCAMPS",
      "phone_number": "+33 320921962",
      "postal_code": "59000",
      "siren": "792529596",
      "siret": "79252959600019",
      "status": "G",
      "store_name": "Boulangerie Au P'tit Louis",
      "street": "place de la Solidarite",
      "street_number": 5,
      "turnover": 380000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHERBOURG EN COTENTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1058936,
      "email": "elvire.giot@yahoo.com",
      "id": 24182,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003410252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233531383",
      "postal_code": "50130",
      "siren": "535149397",
      "siret": "53514939700015",
      "status": "P",
      "store_name": "Boulangerie Giot",
      "street": "rue Sadi Carnot",
      "street_number": 134,
      "turnover": 100000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "EVREUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1059607,
      "email": null,
      "id": 24246,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 232330191",
      "postal_code": "27000",
      "siren": "449261304",
      "siret": "44926130400025",
      "status": "M",
      "store_name": "Boulangerie Thezo",
      "street": "rue Victor Hugo",
      "street_number": 57,
      "turnover": 634600,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DIVES SUR MER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1059618,
      "email": null,
      "id": 24256,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231910511",
      "postal_code": "14160",
      "siren": "509914750",
      "siret": "50991475000021",
      "status": "P",
      "store_name": "Boulangerie la Maison du Pain",
      "street": "rue du General de Gaulle",
      "street_number": 69,
      "turnover": 100000,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NOTRE DAME DE GRAVENCHON",
      "client_creation_date": "2001-04-01",
      "closing_days_ids": [],
      "datlinq_code": 1059630,
      "email": null,
      "id": 24267,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010028620252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235382125",
      "postal_code": "76330",
      "siren": "435334701",
      "siret": null,
      "status": "G",
      "store_name": "Boulangerie aux Delices de Gravenchon ( Lerosey)",
      "street": "centre Commercial la Hetraie",
      "street_number": 1,
      "turnover": 945000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": "2000",
      "closing_days_ids": [],
      "datlinq_code": 1059788,
      "email": null,
      "id": 24327,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "DALHOUMI",
      "phone_number": "000-000",
      "postal_code": "75018",
      "siren": "537712606",
      "siret": "53771260600012",
      "status": "M",
      "store_name": "Boulangerie les Délices de Ramey",
      "street": "rue Ramey",
      "street_number": 28,
      "turnover": 300000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MANTRY",
      "client_creation_date": "2011-10-01",
      "closing_days_ids": [],
      "datlinq_code": 1059822,
      "email": null,
      "id": 24328,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 384257355",
      "postal_code": "39230",
      "siren": "535304836",
      "siret": "53530483600013",
      "status": "P",
      "store_name": "Boulangerie au Plaisir Gourmand",
      "street": "route de Mauffans",
      "street_number": null,
      "turnover": 140000,
      "user_id": 413,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MATHAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1059938,
      "email": null,
      "id": 24334,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 381353948",
      "postal_code": "25700",
      "siren": "535365860",
      "siret": "53536586000019",
      "status": "P",
      "store_name": "Boulangerie Patisserie Julien",
      "street": "avenue Charles de Gaulle",
      "street_number": 223,
      "turnover": 300000,
      "user_id": 412,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAINTES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1060028,
      "email": null,
      "id": 3329,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "17100",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Tendance Choc",
      "street": "rue de la Champagne St Georges",
      "street_number": 15,
      "turnover": null,
      "user_id": 152,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NOGENT LE ROTROU",
      "client_creation_date": "2010-10-13",
      "closing_days_ids": [],
      "datlinq_code": 1060086,
      "email": null,
      "id": 24348,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "CARON",
      "phone_number": "+33 237523707",
      "postal_code": "28400",
      "siren": "408509917",
      "siret": "40850991700022",
      "status": "P",
      "store_name": "Boulangerie Caron",
      "street": "rue Saint Hilaire",
      "street_number": 129,
      "turnover": 270000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANNES",
      "client_creation_date": "1979-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1060444,
      "email": null,
      "id": 3334,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Giorgio michelle",
      "phone_number": "04-93480304",
      "postal_code": "06150",
      "siren": "315416230",
      "siret": "31541623000011",
      "status": "P",
      "store_name": "Sandwicherie Kiosque du Marche",
      "street": "avenue Francis Tonner",
      "street_number": 76,
      "turnover": 80000,
      "user_id": 181,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GRENOBLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1060829,
      "email": null,
      "id": 3344,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-76560467",
      "postal_code": "38000",
      "siren": "482925955",
      "siret": "48292595500015",
      "status": "P",
      "store_name": "Sandwicherie Am'Stram Miam",
      "street": "avenue Alsace Lorraine",
      "street_number": 33,
      "turnover": 102000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "FOUCARMONT",
      "client_creation_date": "2009-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1061369,
      "email": null,
      "id": 24467,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235937156",
      "postal_code": "76340",
      "siren": "397477555",
      "siret": "39747755500023",
      "status": "P",
      "store_name": "Boulangerie Graindorge",
      "street": "rue des Halles",
      "street_number": 4,
      "turnover": 180000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TALLARD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1061484,
      "email": null,
      "id": 24559,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RLL86001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-92240563",
      "postal_code": "05130",
      "siren": "511961237",
      "siret": "51196123700019",
      "status": "G",
      "store_name": "Boulangerie Ludy",
      "street": "lieu dit Le Moulin de Rousine",
      "street_number": null,
      "turnover": 677000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "QUIMPERLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1061591,
      "email": null,
      "id": 24594,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-98960417",
      "postal_code": "29300",
      "siren": "326188257",
      "siret": "32618825700025",
      "status": "P",
      "store_name": "Boulangerie Colleaux Dominique",
      "street": "place Hervo",
      "street_number": 6,
      "turnover": 200000,
      "user_id": 262,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA ROCHE BERNARD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1062050,
      "email": null,
      "id": 3374,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "56130",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "La Baraque A Biloute Pizzas Aldo",
      "street": "rue de Nantes",
      "street_number": 48,
      "turnover": null,
      "user_id": 262,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTPELLIER",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1062184,
      "email": null,
      "id": 3379,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467042424",
      "postal_code": "34090",
      "siren": "402799829",
      "siret": "40279982900039",
      "status": "M",
      "store_name": "Fournil de la Fac",
      "street": "rue du Professeur Joseph Anglada",
      "street_number": 1036,
      "turnover": 421900,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST SATURNIN LES AVIGNON",
      "client_creation_date": "17-11-2011",
      "closing_days_ids": [],
      "datlinq_code": 1062518,
      "email": null,
      "id": 24656,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0020B001",
      "location_areas_ids": [],
      "owner_name": "Sébastien Rouet",
      "phone_number": "000-000",
      "postal_code": "84450",
      "siren": "537924870",
      "siret": "53792487000018",
      "status": "P",
      "store_name": "Boulangerie Rouet",
      "street": "avenue de la Liberation",
      "street_number": 8,
      "turnover": 160000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LILLE",
      "client_creation_date": "2003-07-29",
      "closing_days_ids": [],
      "datlinq_code": 1062738,
      "email": null,
      "id": 24667,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "VAUCAMPS FREDERIC",
      "phone_number": "+33 320548110",
      "postal_code": "59000",
      "siren": "478409352",
      "siret": "47840935200026",
      "status": "G",
      "store_name": "Boulangerie Patrick Hermand",
      "street": "rue Leon Gambetta",
      "street_number": 324,
      "turnover": 1834200,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LEVALLOIS PERRET",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1062816,
      "email": null,
      "id": 39975,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "09-64243369",
      "postal_code": "92300",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Daily Monop",
      "street": "place Georges Pompidou",
      "street_number": 18,
      "turnover": null,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ORBEY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063236,
      "email": null,
      "id": 24683,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "2865E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "03-89271428",
      "postal_code": "68370",
      "siren": "538309162",
      "siret": "53830916200013",
      "status": "P",
      "store_name": "Boulangerie du Petit Beck",
      "street": "rue de l Eglise",
      "street_number": 9,
      "turnover": 206000,
      "user_id": 114,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PRALOGNAN LA VANOISE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063303,
      "email": null,
      "id": 3402,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "73710",
      "siren": "538592569",
      "siret": "53859256900015",
      "status": "P",
      "store_name": "Snack La Ripaille",
      "street": "avenue de Chasseforet",
      "street_number": null,
      "turnover": 170000,
      "user_id": 306,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "COURRIERES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063359,
      "email": null,
      "id": 24690,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007772252110",
      "location_areas_ids": [],
      "owner_name": "Concalves",
      "phone_number": "+33 361485147",
      "postal_code": "62710",
      "siren": "538269689",
      "siret": "53826968900013",
      "status": "G",
      "store_name": "Boulangerie O' Fournil de Tom",
      "street": "rue Arthur Lamendin",
      "street_number": 68,
      "turnover": 250000,
      "user_id": 416,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BROYE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063490,
      "email": null,
      "id": 24697,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "BARDET",
      "phone_number": "+33 385861771",
      "postal_code": "71190",
      "siren": "538796418",
      "siret": "53879641800019",
      "status": "P",
      "store_name": "Boulangerie Bardet",
      "street": "rue du Bourg",
      "street_number": null,
      "turnover": 82000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BIGANOS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063565,
      "email": null,
      "id": 24701,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RXE32001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-56267383",
      "postal_code": "33380",
      "siren": "519737290",
      "siret": "51973729000022",
      "status": "G",
      "store_name": "Boulangerie le Pain Gourmand",
      "street": "avenue de la Liberation",
      "street_number": 51,
      "turnover": 639672,
      "user_id": 206,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RUEIL MALMAISON",
      "client_creation_date": "1-12-2011",
      "closing_days_ids": [],
      "datlinq_code": 1063675,
      "email": null,
      "id": 24707,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0546B001",
      "location_areas_ids": [],
      "owner_name": "Ramzy Khalfet",
      "phone_number": "01-80469641",
      "postal_code": "92500",
      "siren": "538515826",
      "siret": "53851582600013",
      "status": "G",
      "store_name": "Boulangerie Baguette Eclair",
      "street": "route de l Empereur",
      "street_number": 147,
      "turnover": 840000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SOREZE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063741,
      "email": null,
      "id": 24710,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 563741039",
      "postal_code": "81540",
      "siren": "538492745",
      "siret": "53849274500012",
      "status": "G",
      "store_name": "Boulangerie le Croustet",
      "street": "Allees de la Liberation",
      "street_number": 6,
      "turnover": 400000,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WORMHOUT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1063913,
      "email": null,
      "id": 24718,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 328656034",
      "postal_code": "59470",
      "siren": "534918669",
      "siret": "53491866900019",
      "status": "P",
      "store_name": "Boulangerie Acket",
      "street": "place du General de Gaulle",
      "street_number": 8,
      "turnover": 230000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROGNONAS",
      "client_creation_date": "19-10-2011",
      "closing_days_ids": [],
      "datlinq_code": 1064059,
      "email": null,
      "id": 24721,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "fligeat",
      "phone_number": "04-90948635",
      "postal_code": "13870",
      "siren": "535369235",
      "siret": "53536923500028",
      "status": "P",
      "store_name": "Boulangerie l'Arlésienne",
      "street": "avenue de la Liberation",
      "street_number": 38,
      "turnover": 183000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST SATURNIN LES APT",
      "client_creation_date": "22/11/2010",
      "closing_days_ids": [],
      "datlinq_code": 1064078,
      "email": null,
      "id": 24722,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Chafik",
      "phone_number": "04-90754136",
      "postal_code": "84490",
      "siren": "528516404",
      "siret": "52851640400019",
      "status": "M",
      "store_name": "Boulangerie Chafik",
      "street": "place de la Fraternite",
      "street_number": null,
      "turnover": 268000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AUZAT LA COMBELLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1064310,
      "email": null,
      "id": 24725,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0088B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-73961139",
      "postal_code": "63570",
      "siren": "492023981",
      "siret": "49202398100029",
      "status": "M",
      "store_name": "Boulangerie les Sapins",
      "street": "avenue Laurent Delhaye",
      "street_number": 6,
      "turnover": 180000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LERY",
      "client_creation_date": "2012-02-14",
      "closing_days_ids": [],
      "datlinq_code": 1064423,
      "email": null,
      "id": 24730,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Lefrançois",
      "phone_number": "+33 232594497",
      "postal_code": "27690",
      "siren": "538500109",
      "siret": "53850010900011",
      "status": "P",
      "store_name": "Boulangerie Lefrancois",
      "street": "rue du 8 Mai",
      "street_number": 1,
      "turnover": 209000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PEPIEUX",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1064631,
      "email": null,
      "id": 24735,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010032563252110",
      "location_areas_ids": [],
      "owner_name": "Busschots",
      "phone_number": "+33 468493420",
      "postal_code": "11700",
      "siren": "791246473",
      "siret": "79124647300015",
      "status": "P",
      "store_name": "Boulangerie les Pains de Corlet",
      "street": "rue du 11 Novembre 1918",
      "street_number": 2,
      "turnover": 120000,
      "user_id": 440,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOLQUERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1064685,
      "email": null,
      "id": 24736,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013316252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468300133",
      "postal_code": "66210",
      "siren": "531405967",
      "siret": "53140596700013",
      "status": "G",
      "store_name": "Boulangerie de P2",
      "street": "route de la Foret",
      "street_number": null,
      "turnover": 450000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BINAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1064700,
      "email": null,
      "id": 24737,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 254804187",
      "postal_code": "41240",
      "siren": "402307292",
      "siret": "40230729200035",
      "status": "P",
      "store_name": "Boulangerie aux Delices de Binas",
      "street": "rue du 8 Mai 1945",
      "street_number": 12,
      "turnover": 200000,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1064943,
      "email": null,
      "id": 3445,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-44700410",
      "postal_code": "75008",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Restaurant Midore",
      "street": "rue de la Pepiniere",
      "street_number": 28,
      "turnover": null,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAGNES SUR MER",
      "client_creation_date": "2010-03-01",
      "closing_days_ids": [],
      "datlinq_code": 1065193,
      "email": null,
      "id": 34434,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "02932001",
      "location_areas_ids": [],
      "owner_name": "NOTO",
      "phone_number": "04-93228833",
      "postal_code": "06800",
      "siren": "512524430",
      "siret": "51252443000018",
      "status": "M",
      "store_name": "Boulangerie le Moulin de Flor",
      "street": "avenue de Nice",
      "street_number": 161,
      "turnover": 300000,
      "user_id": 180,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTIGNY LE BRETONNEUX",
      "client_creation_date": "20-12-2011",
      "closing_days_ids": [],
      "datlinq_code": 1065195,
      "email": null,
      "id": 3449,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0007B001",
      "location_areas_ids": [],
      "owner_name": "BOUCHOU",
      "phone_number": "01-30489687",
      "postal_code": "78180",
      "siren": "538622226",
      "siret": "53862222600016",
      "status": "M",
      "store_name": "Boulangerie O Pain du Lac",
      "street": "place de Wicklow",
      "street_number": 13,
      "turnover": 300000,
      "user_id": 95,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065232,
      "email": null,
      "id": 24749,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1624F001",
      "location_areas_ids": [],
      "owner_name": "MEYZAUD",
      "phone_number": "01-42648133",
      "postal_code": "75018",
      "siren": "538913872",
      "siret": "53891387200015",
      "status": "G",
      "store_name": "Boulangerie La Bould'ange de Montmartre",
      "street": "rue Damremont",
      "street_number": 42,
      "turnover": 487000,
      "user_id": 92,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TRAINEL",
      "client_creation_date": "2012-02-11",
      "closing_days_ids": [],
      "datlinq_code": 1065243,
      "email": null,
      "id": 24750,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016365252110",
      "location_areas_ids": [],
      "owner_name": "Gandoin",
      "phone_number": "+33 325391034",
      "postal_code": "10400",
      "siren": "504085796",
      "siret": "53888191300015",
      "status": "M",
      "store_name": "Boulangerie la Viennoise",
      "street": "rue du Jeu de Paume",
      "street_number": null,
      "turnover": 230000,
      "user_id": 399,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VINGRAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065252,
      "email": null,
      "id": 33157,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010005835252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468346330",
      "postal_code": "66600",
      "siren": "538831983",
      "siret": "53883198300019",
      "status": "P",
      "store_name": "Le Fournil de Vingrau",
      "street": "rue Marechal Joffre",
      "street_number": 14,
      "turnover": 140000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PARIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065267,
      "email": "idoudi2008@live.fr",
      "id": 24752,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "L0116001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "06-29513821",
      "postal_code": "75013",
      "siren": "538857533",
      "siret": "53885753300011",
      "status": "P",
      "store_name": "Boulangerie Les Delices de la Place des Alpes",
      "street": "boulevard Vincent Auriol",
      "street_number": 162,
      "turnover": 336055,
      "user_id": 91,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ANGERS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065270,
      "email": null,
      "id": 3451,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 241779296",
      "postal_code": "49100",
      "siren": "538624073",
      "siret": "53862407300010",
      "status": "P",
      "store_name": "Sandwicherie Lili Gourmande",
      "street": "rue Saint Denis",
      "street_number": 2,
      "turnover": 150000,
      "user_id": 424,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LA LONDE LES MAURES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065271,
      "email": null,
      "id": 3452,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "De bono",
      "phone_number": "000-000",
      "postal_code": "83250",
      "siren": "538592791",
      "siret": "53859279100015",
      "status": "P",
      "store_name": "Boulangerie O Four et O Moulin",
      "street": "avenue de la Baie des Iles",
      "street_number": null,
      "turnover": 94000,
      "user_id": 188,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CACHAN",
      "client_creation_date": "1-1-2008",
      "closing_days_ids": [],
      "datlinq_code": 1065288,
      "email": null,
      "id": 24754,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "K1201001",
      "location_areas_ids": [],
      "owner_name": "AIT MOULOUD",
      "phone_number": "0663273947",
      "postal_code": "94230",
      "siren": "538713587",
      "siret": "53871358700011",
      "status": "P",
      "store_name": "Boulangerie Ô Pain Chic",
      "street": "rue Francois Villon",
      "street_number": 10,
      "turnover": 150000,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "JUNAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065343,
      "email": null,
      "id": 24757,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466809189",
      "postal_code": "30250",
      "siren": "494658024",
      "siret": "49465802400026",
      "status": "P",
      "store_name": "Boulangerie au Moulin à Pains",
      "street": "place de l Avenir",
      "street_number": 1,
      "turnover": 160000,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ROUEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065537,
      "email": null,
      "id": 3462,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 235718733",
      "postal_code": "76000",
      "siren": "524938768",
      "siret": "52493876800057",
      "status": "P",
      "store_name": "Boulangerie Paul",
      "street": "rue Ganterie",
      "street_number": 2,
      "turnover": 200000,
      "user_id": 426,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LESQUIN",
      "client_creation_date": "2007-09-04",
      "closing_days_ids": [],
      "datlinq_code": 1065671,
      "email": null,
      "id": 24763,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010011850252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 320503336",
      "postal_code": "59810",
      "siren": "412794463",
      "siret": "41279446300023",
      "status": "G",
      "store_name": "Boulangerie Au Fournil",
      "street": "rue Jean Jaures",
      "street_number": 35,
      "turnover": 430000,
      "user_id": 419,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PEZENAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065681,
      "email": null,
      "id": 24764,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010004574252110",
      "location_areas_ids": [],
      "owner_name": "MAILLLET",
      "phone_number": "+33 467983770",
      "postal_code": "34120",
      "siren": "513039727",
      "siret": "51303972700013",
      "status": "P",
      "store_name": "Boulangerie Maillet",
      "street": "cours Jean Jaures",
      "street_number": 6,
      "turnover": 227100,
      "user_id": 441,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CHARTRES",
      "client_creation_date": "2011-02-10",
      "closing_days_ids": [],
      "datlinq_code": 1065764,
      "email": null,
      "id": 24768,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "VIRON",
      "phone_number": "+33 237211630",
      "postal_code": "28000",
      "siren": "530240217",
      "siret": "53024021700014",
      "status": "P",
      "store_name": "Boulangerie Faubourg",
      "street": "rue du Grand Faubourg",
      "street_number": 17,
      "turnover": 737200,
      "user_id": 430,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE HAVRE",
      "client_creation_date": "2011-01-01",
      "closing_days_ids": [],
      "datlinq_code": 1065964,
      "email": "celine.piek@orange.fr",
      "id": 24774,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010007801252110",
      "location_areas_ids": [],
      "owner_name": "BREBANT",
      "phone_number": "+33 235212958",
      "postal_code": "76600",
      "siren": "491832465",
      "siret": "49183246500026",
      "status": "P",
      "store_name": "Boulangerie le Fournil St Roch",
      "street": "rue Georges Braque",
      "street_number": 21,
      "turnover": 210000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAUSSET LES PINS",
      "client_creation_date": "1-1-2013",
      "closing_days_ids": [],
      "datlinq_code": 1065985,
      "email": "lafourneesaussetoise@free.fr",
      "id": 24775,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0500A001",
      "location_areas_ids": [],
      "owner_name": "PARPEIX Philippe",
      "phone_number": "04-42066952",
      "postal_code": "13960",
      "siren": "533652491",
      "siret": "53365249100010",
      "status": "G",
      "store_name": "Boulangerie La Fournée Saussetoise",
      "street": "avenue de la Cote Bleue",
      "street_number": 34,
      "turnover": 800000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NIMES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1065986,
      "email": null,
      "id": 3470,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 466382367",
      "postal_code": "30000",
      "siren": "799291612",
      "siret": "79929161200015",
      "status": "EMPTY_STATUS",
      "store_name": "Fournil Saint Nicolas",
      "street": "rue de Beaucaire",
      "street_number": 68,
      "turnover": null,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOURNAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066068,
      "email": null,
      "id": 37405,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0869E001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "65190",
      "siren": "519240345",
      "siret": "51924034500016",
      "status": "EMPTY_STATUS",
      "store_name": "Pâtisserie Le Café Croissant",
      "street": "place d Astarac",
      "street_number": 11,
      "turnover": null,
      "user_id": 208,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "AURIOL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066192,
      "email": null,
      "id": 3474,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-42701028",
      "postal_code": "13390",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Label Pizza",
      "street": "cours de Verdun",
      "street_number": 5,
      "turnover": null,
      "user_id": 172,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LAROQUE D OLMES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066255,
      "email": null,
      "id": 24783,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "09600",
      "siren": "538890104",
      "siret": "53889010400028",
      "status": "P",
      "store_name": "Boulangerie Riviere d'Olmes",
      "street": "centre Commercial le Castillane",
      "street_number": null,
      "turnover": 245000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "L ISLE D ABEAU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066284,
      "email": null,
      "id": 24786,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "JEROME DOVILLEZ",
      "phone_number": "000-000",
      "postal_code": "38080",
      "siren": "538891508",
      "siret": "53889150800011",
      "status": "M",
      "store_name": "Boulangerie Mjd Tradition",
      "street": "place Gabriel Peri",
      "street_number": null,
      "turnover": 236000,
      "user_id": 310,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANCY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066301,
      "email": null,
      "id": 24787,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0049F001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "54000",
      "siren": "538927500",
      "siret": "53892750000016",
      "status": "P",
      "store_name": "Boulangerie Sauvage",
      "street": "rue du Marechal Oudinot",
      "street_number": 50,
      "turnover": 170000,
      "user_id": 106,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CAEN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066311,
      "email": null,
      "id": 24788,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 231502983",
      "postal_code": "14000",
      "siren": "538794025",
      "siret": "53879402500014",
      "status": "P",
      "store_name": "Boulangerie le Trady",
      "street": "rue Caponiere",
      "street_number": 28,
      "turnover": 151800,
      "user_id": 429,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE MANS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066339,
      "email": null,
      "id": 24789,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 243841664",
      "postal_code": "72000",
      "siren": "538938044",
      "siret": "53893804400012",
      "status": "P",
      "store_name": "Boulangerie Aux Douceurs de Washington",
      "street": "rue Nationale",
      "street_number": 196,
      "turnover": 160000,
      "user_id": 423,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST GEORGES D OLERON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066350,
      "email": null,
      "id": 24791,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-17254520",
      "postal_code": "17190",
      "siren": "538751520",
      "siret": "53875152000015",
      "status": "P",
      "store_name": "Boulangerie des Lys",
      "street": "rue de la Couture",
      "street_number": 15,
      "turnover": 150000,
      "user_id": 155,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "REIMS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066351,
      "email": null,
      "id": 3484,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326058102",
      "postal_code": "51100",
      "siren": "538685827",
      "siret": "53868582700015",
      "status": "P",
      "store_name": "Sanwicherie les Gourmandises de Gauthier",
      "street": "rue de l Etape",
      "street_number": 24,
      "turnover": 80000,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BLENDECQUES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066367,
      "email": null,
      "id": 24792,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010032696252110",
      "location_areas_ids": [],
      "owner_name": "DEWAELE",
      "phone_number": "000-000",
      "postal_code": "62575",
      "siren": "538819053",
      "siret": "53881905300017",
      "status": "P",
      "store_name": "Boulangerie Dewaele",
      "street": "rue Jean Baptiste Lebas",
      "street_number": 21,
      "turnover": 130000,
      "user_id": 417,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "CANET EN ROUSSILLON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066418,
      "email": null,
      "id": 3487,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010000063252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 963647565",
      "postal_code": "66140",
      "siren": "538866112",
      "siret": "53886611200013",
      "status": "P",
      "store_name": "Migan",
      "street": "avenue de Saint Nazaire",
      "street_number": 5,
      "turnover": 168707,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "STE SIGOLENE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066444,
      "email": null,
      "id": 24794,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "43600",
      "siren": "539096875",
      "siret": "53909687500015",
      "status": "P",
      "store_name": "Boulangerie Les Douceurs du Fournil",
      "street": "rue de la Victoire",
      "street_number": 9,
      "turnover": 175000,
      "user_id": 54,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLENAVE D ORNON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066598,
      "email": null,
      "id": 3491,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "33140",
      "siren": null,
      "siret": null,
      "status": "EMPTY_STATUS",
      "store_name": "Louka Pizza",
      "street": "route de Toulouse",
      "street_number": 571,
      "turnover": null,
      "user_id": 202,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ARGENTON SUR CREUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066612,
      "email": null,
      "id": 24797,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-54475791",
      "postal_code": "36200",
      "siren": "495395196",
      "siret": "49539519600027",
      "status": "P",
      "store_name": "Boulangerie Merlin",
      "street": "rue Grande",
      "street_number": 26,
      "turnover": 286700,
      "user_id": 52,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LYON",
      "client_creation_date": "2007",
      "closing_days_ids": [],
      "datlinq_code": 1066618,
      "email": null,
      "id": 3492,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "09-86327509",
      "postal_code": "69009",
      "siren": "803185578",
      "siret": "80318557800017",
      "status": "P",
      "store_name": "Snack le Pause Midi",
      "street": "rue Louis Loucheur",
      "street_number": 8,
      "turnover": 390000,
      "user_id": 59,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NEUVILLE DE POITOU",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066782,
      "email": null,
      "id": 24802,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "RENAUD",
      "phone_number": "05-49513403",
      "postal_code": "86170",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Renaud",
      "street": "route de Clan",
      "street_number": 77,
      "turnover": 200000,
      "user_id": 156,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GERZAT",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1066863,
      "email": null,
      "id": 24805,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "ANTONIO",
      "phone_number": "04-73256759",
      "postal_code": "63360",
      "siren": "508161130",
      "siret": "50816113000010",
      "status": "M",
      "store_name": "Boulangerie Antonio",
      "street": "rue des Martyrs",
      "street_number": 3,
      "turnover": 480000,
      "user_id": 56,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GALAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067091,
      "email": null,
      "id": 24809,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "RP889001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "05-81509106",
      "postal_code": "65330",
      "siren": "411745052",
      "siret": "41174505200034",
      "status": "P",
      "store_name": "Boulangerie La Chocolatine",
      "street": "place de la Bastide",
      "street_number": 10,
      "turnover": 130000,
      "user_id": 208,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067117,
      "email": null,
      "id": 3506,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561002001",
      "postal_code": "31000",
      "siren": "532007135",
      "siret": "53200713500025",
      "status": "P",
      "store_name": "Pizza Cap",
      "street": "rue du Languedoc",
      "street_number": 26,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067126,
      "email": null,
      "id": 50511,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561124821",
      "postal_code": "31000",
      "siren": "527567200",
      "siret": "52756720000011",
      "status": "EMPTY_STATUS",
      "store_name": "Columbus Café & Co",
      "street": "rue du Taur",
      "street_number": 10,
      "turnover": null,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MEUDON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067220,
      "email": null,
      "id": 24820,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0823G001",
      "location_areas_ids": [],
      "owner_name": "Mr aubid ",
      "phone_number": "01-41285869",
      "postal_code": "92360",
      "siren": "538949983",
      "siret": "53894998300018",
      "status": "P",
      "store_name": "Boulangerie Casa Four",
      "street": "allee Marcel Simon",
      "street_number": 26,
      "turnover": 300000,
      "user_id": 100,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067330,
      "email": null,
      "id": 3512,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010013305252110",
      "location_areas_ids": [],
      "owner_name": "IZARN NADINE",
      "phone_number": "+33 562895610",
      "postal_code": "31000",
      "siren": "448836163",
      "siret": "44883616300023",
      "status": "P",
      "store_name": "Sandwicherie l'Epicurien",
      "street": "rue de Metz",
      "street_number": 47,
      "turnover": 175849,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CLAR DE RIVIERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067331,
      "email": null,
      "id": 24824,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "L5705001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 562238714",
      "postal_code": "31600",
      "siren": "533680559",
      "siret": "53368055900010",
      "status": "P",
      "store_name": "Boulangerie Le Pain Gourmand",
      "street": "Grand Place",
      "street_number": 38,
      "turnover": 180000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALBI",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067332,
      "email": null,
      "id": 24825,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "RIMBAUX NICOLAS",
      "phone_number": "+33 563542729",
      "postal_code": "81000",
      "siren": "532875812",
      "siret": "53287581200010",
      "status": "P",
      "store_name": "Boulangerie Banette Rimbaux Boisloret",
      "street": "avenue Colonel Teyssier",
      "street_number": 123,
      "turnover": 114481,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TOULOUSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067333,
      "email": null,
      "id": 24826,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "NEDJARI ABDELKADER",
      "phone_number": "+33 567687799",
      "postal_code": "31400",
      "siren": "439526153",
      "siret": "43952615300028",
      "status": "P",
      "store_name": "Boulangerie le Palais Gourmand",
      "street": "avenue Antoine de Saint Exupery",
      "street_number": 32,
      "turnover": 100,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ALBIAS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067433,
      "email": null,
      "id": 24833,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 965321119",
      "postal_code": "82350",
      "siren": null,
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Castel Jean",
      "street": "place de la Liberation",
      "street_number": null,
      "turnover": 350000,
      "user_id": 444,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LHERM",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067437,
      "email": null,
      "id": 24836,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561561574",
      "postal_code": "31600",
      "siren": "522996388",
      "siret": "52299638800024",
      "status": "P",
      "store_name": "Boulangerie O Croustet du Lherm",
      "street": "place de l Eglise",
      "street_number": 33,
      "turnover": 150000,
      "user_id": 446,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VITRY SUR SEINE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067494,
      "email": null,
      "id": 24839,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47180429",
      "postal_code": "94400",
      "siren": "501431647",
      "siret": "50143164700012",
      "status": "EMPTY_STATUS",
      "store_name": "Elhadi Boulangerie",
      "street": "avenue Rouget de Lisle",
      "street_number": 139,
      "turnover": null,
      "user_id": 85,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VENISSIEUX",
      "client_creation_date": "2012",
      "closing_days_ids": [],
      "datlinq_code": 1067529,
      "email": null,
      "id": 404,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0675B001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-78701024",
      "postal_code": "69200",
      "siren": "538950825",
      "siret": "53895082500017",
      "status": "P",
      "store_name": "Boulangerie la Huche aux Pains",
      "street": "rue Paul Bert",
      "street_number": 14,
      "turnover": 184700,
      "user_id": 60,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST CHAPTES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067538,
      "email": null,
      "id": 24843,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010027720252110",
      "location_areas_ids": [],
      "owner_name": "ALMARIC",
      "phone_number": "+33 466812438",
      "postal_code": "30190",
      "siren": "530092980",
      "siret": "53009298000016",
      "status": "P",
      "store_name": "Boulangerie les Gourmandises de Saint Chaptes",
      "street": "avenue Raoul Vezol",
      "street_number": 17,
      "turnover": 320000,
      "user_id": 439,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RODEZ",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067539,
      "email": null,
      "id": 24844,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010032487252110",
      "location_areas_ids": [],
      "owner_name": "ANGLADE GHISLAIN",
      "phone_number": "+33 982582328",
      "postal_code": "12000",
      "siren": "539030106",
      "siret": "53903010600014",
      "status": "G",
      "store_name": "Boulangerie au Four Gourmand",
      "street": "avenue de Toulouse",
      "street_number": 66,
      "turnover": 450000,
      "user_id": 447,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DESVRES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067542,
      "email": null,
      "id": 24847,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010016794252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 321915363",
      "postal_code": "62240",
      "siren": "478211196",
      "siret": "47821119600025",
      "status": "G",
      "store_name": "Boulangerie Carpentier",
      "street": "place Leon Blum",
      "street_number": 32,
      "turnover": 306000,
      "user_id": 420,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PERPIGNAN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067546,
      "email": null,
      "id": 24850,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 468544921",
      "postal_code": "66000",
      "siren": "535284889",
      "siret": "53528488900016",
      "status": "P",
      "store_name": "Boulangerie Les Gourmands Disent...",
      "street": "rue Pascal Marie Agasse",
      "street_number": 79,
      "turnover": 150000,
      "user_id": 437,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BOULOGNE SUR GESSE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067549,
      "email": null,
      "id": 24853,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 561886141",
      "postal_code": "31350",
      "siren": "522055284",
      "siret": "52205528400023",
      "status": "G",
      "store_name": "Boulangerie le Coin des Gourmets",
      "street": "rue Porte de Dessus",
      "street_number": null,
      "turnover": 460000,
      "user_id": 445,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "WITRY LES REIMS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067555,
      "email": null,
      "id": 24857,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 326970337",
      "postal_code": "51420",
      "siren": "429494529",
      "siret": "42949452900036",
      "status": "M",
      "store_name": "Boulangerie Marest",
      "street": "rue de la Paix",
      "street_number": 8,
      "turnover": 339308,
      "user_id": 398,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "RASTEAU",
      "client_creation_date": "13-11-2009",
      "closing_days_ids": [],
      "datlinq_code": 1067566,
      "email": null,
      "id": 24864,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "begani",
      "phone_number": "04-90622884",
      "postal_code": "84110",
      "siren": "517943239",
      "siret": "51794323900023",
      "status": "P",
      "store_name": "Boulangerie au Fournil dee Sabine",
      "street": "rue du Vieux Moulin",
      "street_number": 1,
      "turnover": 218000,
      "user_id": 178,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONT PRES CHAMBORD",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067567,
      "email": null,
      "id": 24865,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 254707232",
      "postal_code": "41250",
      "siren": "488625401",
      "siret": "48862540100028",
      "status": "P",
      "store_name": "Boulangerie la Chabardiere",
      "street": "rue de la Chabardiere",
      "street_number": 33,
      "turnover": 230000,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "ST AUNES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067574,
      "email": null,
      "id": 24867,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010006967252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 467708256",
      "postal_code": "34130",
      "siren": "524480365",
      "siret": "52448036500013",
      "status": "M",
      "store_name": "Boulangerie Js Delices et Traditions",
      "street": "avenue des Costieres",
      "street_number": 475,
      "turnover": 180000,
      "user_id": 438,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "BLOIS",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067575,
      "email": "f.durasnel@gmail.com",
      "id": 24868,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010003797252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 254780922",
      "postal_code": "41000",
      "siren": "538122029",
      "siret": "53812202900019",
      "status": "G",
      "store_name": "Boulangerie Durasnel",
      "street": "rue Porte Chartraine",
      "street_number": 53,
      "turnover": 300000,
      "user_id": 425,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "PUYLOUBIER",
      "client_creation_date": "21-8-2008",
      "closing_days_ids": [],
      "datlinq_code": 1067577,
      "email": null,
      "id": 24870,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-42663786",
      "postal_code": "13114",
      "siren": "507612356",
      "siret": "50761235600018",
      "status": "P",
      "store_name": "Boulangerie Feb la Gourmandine",
      "street": "avenue Francis Meano",
      "street_number": 6,
      "turnover": 90500,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "LE BOUPERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067580,
      "email": null,
      "id": 24872,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "1339D001",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-51914173",
      "postal_code": "85510",
      "siren": "533741286",
      "siret": "53374128600017",
      "status": "M",
      "store_name": "Boulangerie l'Atelier des Délices",
      "street": "rue General de Gaulle",
      "street_number": 13,
      "turnover": 210000,
      "user_id": 153,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GOURNAY EN BRAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067584,
      "email": null,
      "id": 24874,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "000-000",
      "postal_code": "76620",
      "siren": "534419098",
      "siret": "53441909800015",
      "status": "P",
      "store_name": "Boulangerie Lemitre Mickael",
      "street": "avenue de la 1ere Armee",
      "street_number": 28,
      "turnover": 180000,
      "user_id": 427,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GARGAS",
      "client_creation_date": "1-7-2007",
      "closing_days_ids": [],
      "datlinq_code": 1067592,
      "email": null,
      "id": 24879,
      "is_deleted": false,
      "is_prospect": false,
      "is_restaurant_place": null,
      "local_id": "0631F001",
      "location_areas_ids": [],
      "owner_name": "Ballere Mathieu",
      "phone_number": "04-90745491",
      "postal_code": "84400",
      "siren": "498777663",
      "siret": null,
      "status": "P",
      "store_name": "Boulangerie Les Gourmandises de Fontaine",
      "street": "quartier la Grande Fontaine",
      "street_number": null,
      "turnover": 174000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VALENSOLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067593,
      "email": null,
      "id": 24880,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": "Gauthier",
      "phone_number": "04-92748101",
      "postal_code": "04210",
      "siren": "491201174",
      "siret": "49120117400019",
      "status": "P",
      "store_name": "Boulangerie Le Palais D'Or",
      "street": "place de la Fontaine",
      "street_number": null,
      "turnover": 283000,
      "user_id": 187,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTCEAU LES MINES",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067600,
      "email": null,
      "id": 24885,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010025790252110",
      "location_areas_ids": [],
      "owner_name": "PEGUESSE",
      "phone_number": "+33 385581877",
      "postal_code": "71300",
      "siren": "539027433",
      "siret": "53902743300017",
      "status": "M",
      "store_name": "Boulangerie Peguesse",
      "street": "rue de la Coudraie",
      "street_number": 58,
      "turnover": 200000,
      "user_id": 410,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "TREDANIEL",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067604,
      "email": null,
      "id": 24889,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "02-96735350",
      "postal_code": "22510",
      "siren": "510945900",
      "siret": "51094590000015",
      "status": "P",
      "store_name": "Boulangerie Versabeau",
      "street": "Centre Commercial l Enseigne",
      "street_number": null,
      "turnover": 200000,
      "user_id": 146,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VILLE DI PIETRABUGNO",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067633,
      "email": null,
      "id": 3520,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "04-95331603",
      "postal_code": "20200",
      "siren": "525255592",
      "siret": "52525559200012",
      "status": "P",
      "store_name": "Pizza Pietrabugno",
      "street": "hameau Guaitella",
      "street_number": 67,
      "turnover": 10000,
      "user_id": 184,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "VIRANDEVILLE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067688,
      "email": null,
      "id": 3521,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 670935354",
      "postal_code": "50690",
      "siren": "530743467",
      "siret": "53074346700017",
      "status": "EMPTY_STATUS",
      "store_name": "Seb Pizza",
      "street": "le Moulin",
      "street_number": 3,
      "turnover": null,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "GAVRAY",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067694,
      "email": null,
      "id": 24902,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233614079",
      "postal_code": "50450",
      "siren": "348982638",
      "siret": "34898263800036",
      "status": "G",
      "store_name": "Boulangerie Huze",
      "street": "rue de la Liberation",
      "street_number": 27,
      "turnover": 310000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "MONTSECRET CLAIREFOUGERE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067715,
      "email": null,
      "id": 24903,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 233667095",
      "postal_code": "61800",
      "siren": null,
      "siret": null,
      "status": "M",
      "store_name": "Boulangerie aux Epis de Bles",
      "street": "Grande Rue",
      "street_number": 23,
      "turnover": 275000,
      "user_id": 428,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SARTROUVILLE",
      "client_creation_date": "1-1-2012",
      "closing_days_ids": [],
      "datlinq_code": 1067832,
      "email": null,
      "id": 24905,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "R8685001",
      "location_areas_ids": [],
      "owner_name": "BOUALI",
      "phone_number": "000-000",
      "postal_code": "78500",
      "siren": "505124560",
      "siret": "50512456000010",
      "status": "P",
      "store_name": "Boulangerie Patisserie du Plateau",
      "street": "boulevard Henri Barbusse",
      "street_number": 153,
      "turnover": 240000,
      "user_id": 96,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "NANTERRE",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067846,
      "email": null,
      "id": 3522,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "01-47252525",
      "postal_code": "92000",
      "siren": "519113005",
      "siret": "51911300500010",
      "status": "P",
      "store_name": "Cesar Pizza",
      "street": "avenue Georges Clemenceau",
      "street_number": 14,
      "turnover": 210000,
      "user_id": 98,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "DAMPIERRE SUR SALON",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067854,
      "email": null,
      "id": 24908,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "0010010549252110",
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 384671041",
      "postal_code": "70180",
      "siren": "527634687",
      "siret": "52763468700026",
      "status": "M",
      "store_name": "Boulangerie Goiset",
      "street": "rue Sainte Catherine",
      "street_number": 15,
      "turnover": 220000,
      "user_id": 411,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [],
      "average_ticket": null,
      "city": "SAINT-QUENTIN",
      "client_creation_date": null,
      "closing_days_ids": [],
      "datlinq_code": 1067864,
      "email": "atout-pains@orange.fr",
      "id": 24909,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": null,
      "location_areas_ids": [],
      "owner_name": null,
      "phone_number": "+33 323641056",
      "postal_code": "02100",
      "siren": "529488520",
      "siret": "52948852000022",
      "status": "G",
      "store_name": "Boulangerie Atouts Pains",
      "street": "Rue de la Chaussée Romaine",
      "street_number": 4,
      "turnover": 808000,
      "user_id": 397,
      "working_days_amount": null
    }
  ],
  "meta": {
    "limit_value": 1000,
    "total_pages": 25,
    "update_date": "2019-06-11T13:26:28.106Z"
  }
}

Validation #634

Success

The input JSON schema validates the input JSON instance (JSON Schema Draft 4).

JSON Schema

{
  "additionalProperties": false,
  "description": "Automatically generated (please edit me)",
  "properties": {
    "customers": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "attractivity_poles_ids": {
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "average_ticket": {
            "anyOf": [
              {
                "pattern": "(^[+-]?(?:0|[1-9]\\d*)(?:\\.(?:\\d*[1-9]|0))?)$",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "city": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "client_creation_date": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "closing_days_ids": {
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "datlinq_code": {
            "type": "integer"
          },
          "email": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "id": {
            "type": "integer"
          },
          "is_deleted": {
            "description": "Customer deleted status in database (true if customer does not appear in the last csv synchronisation)",
            "type": "boolean"
          },
          "is_prospect": {
            "anyOf": [
              {
                "description": "Customer prospect status (true if customer does not have client_gmp = true is csv synchronisation)",
                "type": "boolean"
              },
              {
                "type": "null"
              }
            ]
          },
          "is_restaurant_place": {
            "anyOf": [
              {
                "type": "boolean"
              },
              {
                "type": "null"
              }
            ]
          },
          "local_id": {
            "anyOf": [
              {
                "description": "Customer local id (if customer has a local id, that means he is not a prospect anymore)",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "location_areas_ids": {
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "owner_name": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "phone_number": {
            "anyOf": [
              {
                "format": "datetime",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "postal_code": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "siren": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "siret": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "status": {
            "anyOf": [
              {
                "enum": [
                  "EMPTY_STATUS",
                  "P",
                  "M",
                  "G"
                ],
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "store_name": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "street": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "street_number": {
            "anyOf": [
              {
                "type": "integer"
              },
              {
                "type": "null"
              }
            ]
          },
          "turnover": {
            "anyOf": [
              {
                "type": "integer"
              },
              {
                "type": "null"
              }
            ]
          },
          "user_id": {
            "type": "integer"
          },
          "working_days_amount": {
            "anyOf": [
              {
                "type": "integer"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "required": [
          "attractivity_poles_ids",
          "average_ticket",
          "city",
          "client_creation_date",
          "closing_days_ids",
          "datlinq_code",
          "email",
          "id",
          "is_deleted",
          "is_prospect",
          "is_restaurant_place",
          "local_id",
          "location_areas_ids",
          "owner_name",
          "phone_number",
          "postal_code",
          "siren",
          "siret",
          "status",
          "store_name",
          "street",
          "street_number",
          "turnover",
          "user_id",
          "working_days_amount"
        ],
        "type": "object"
      },
      "type": "array"
    },
    "meta": {
      "properties": {
        "limit_value": {
          "type": "integer"
        },
        "total_pages": {
          "type": "integer"
        },
        "update_date": {
          "format": "datetime",
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "required": [
    "customers"
  ],
  "title": "Customer - ShortCustomer",
  "type": "object"
}

JSON instance

{
  "customers": [
    {
      "attractivity_poles_ids": [
        16233662
      ],
      "average_ticket": "455907",
      "city": null,
      "client_creation_date": "in amet id est ullamco",
      "closing_days_ids": [
        44754827,
        -12832799,
        -90049948,
        9701848,
        74984311
      ],
      "datlinq_code": 49775466,
      "email": "elit qui cillum volu",
      "id": 89437491,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": false,
      "local_id": null,
      "location_areas_ids": [
        63562283,
        42730148,
        4007179,
        95690389
      ],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "sed consectetur anim fugiat consequat",
      "siren": "irure velit sit Duis eu",
      "siret": null,
      "status": null,
      "store_name": "laborum sed sunt",
      "street": null,
      "street_number": null,
      "turnover": null,
      "user_id": 64116960,
      "working_days_amount": -15870278
    },
    {
      "attractivity_poles_ids": [
        -96315465,
        -53754545,
        26386670,
        -30816431
      ],
      "average_ticket": null,
      "city": null,
      "client_creation_date": null,
      "closing_days_ids": [
        16087536,
        79772846,
        73962734,
        28993957,
        -94068689
      ],
      "datlinq_code": 77880450,
      "email": null,
      "id": 60191877,
      "is_deleted": true,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "sed commodo esse proident est",
      "location_areas_ids": [
        59495761,
        -98599138,
        81146107,
        96608305,
        -42593105
      ],
      "owner_name": "nulla",
      "phone_number": "2001-01-21T10:05:03.054Z",
      "postal_code": null,
      "siren": "Ut velit sed labore",
      "siret": "consequat",
      "status": null,
      "store_name": "est amet minim dolor anim",
      "street": "non ex occaecat do anim",
      "street_number": -92198327,
      "turnover": -61766132,
      "user_id": -33941124,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [
        -1862873,
        60032050,
        -12966152
      ],
      "average_ticket": null,
      "city": null,
      "client_creation_date": null,
      "closing_days_ids": [
        -50211605,
        51673562,
        -9235281,
        15007159,
        -27951503
      ],
      "datlinq_code": -93962606,
      "email": null,
      "id": -74710931,
      "is_deleted": false,
      "is_prospect": null,
      "is_restaurant_place": false,
      "local_id": "sint aliquip aliqua nulla do",
      "location_areas_ids": [
        87777348,
        -38017854
      ],
      "owner_name": "consectetur ipsum",
      "phone_number": null,
      "postal_code": null,
      "siren": "commodo Duis aliqua ut sed",
      "siret": "ex ullamc",
      "status": null,
      "store_name": "minim in elit Excepteur ea",
      "street": null,
      "street_number": -41272302,
      "turnover": 64692562,
      "user_id": 17160404,
      "working_days_amount": null
    }
  ]
}

Validation #633

Success

The input JSON schema validates the input JSON instance (JSON Schema Draft 4).

JSON Schema

{
  "additionalProperties": false,
  "description": "Automatically generated (please edit me)",
  "properties": {
    "customers": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "attractivity_poles_ids": {
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "average_ticket": {
            "anyOf": [
              {
                "pattern": "(^[+-]?(?:0|[1-9]\\d*)(?:\\.(?:\\d*[1-9]|0))?)$",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "city": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "client_creation_date": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "closing_days_ids": {
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "datlinq_code": {
            "type": "integer"
          },
          "email": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "id": {
            "type": "integer"
          },
          "is_deleted": {
            "description": "Customer deleted status in database (true if customer does not appear in the last csv synchronisation)",
            "type": "boolean"
          },
          "is_prospect": {
            "anyOf": [
              {
                "description": "Customer prospect status (true if customer does not have client_gmp = true is csv synchronisation)",
                "type": "boolean"
              },
              {
                "type": "null"
              }
            ]
          },
          "is_restaurant_place": {
            "anyOf": [
              {
                "type": "boolean"
              },
              {
                "type": "null"
              }
            ]
          },
          "local_id": {
            "anyOf": [
              {
                "description": "Customer local id (if customer has a local id, that means he is not a prospect anymore)",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "location_areas_ids": {
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "owner_name": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "phone_number": {
            "anyOf": [
              {
                "format": "datetime",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "postal_code": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "siren": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "siret": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "status": {
            "anyOf": [
              {
                "enum": [
                  "EMPTY_STATUS",
                  "P",
                  "M",
                  "G"
                ],
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "store_name": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "street": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "street_number": {
            "anyOf": [
              {
                "type": "integer"
              },
              {
                "type": "null"
              }
            ]
          },
          "turnover": {
            "anyOf": [
              {
                "type": "integer"
              },
              {
                "type": "null"
              }
            ]
          },
          "user_id": {
            "type": "integer"
          },
          "working_days_amount": {
            "anyOf": [
              {
                "type": "integer"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "required": [
          "attractivity_poles_ids",
          "average_ticket",
          "city",
          "client_creation_date",
          "closing_days_ids",
          "datlinq_code",
          "email",
          "id",
          "is_deleted",
          "is_prospect",
          "is_restaurant_place",
          "local_id",
          "location_areas_ids",
          "owner_name",
          "phone_number",
          "postal_code",
          "siren",
          "siret",
          "status",
          "store_name",
          "street",
          "street_number",
          "turnover",
          "user_id",
          "working_days_amount"
        ],
        "type": "object"
      },
      "type": "array"
    },
    "meta": {
      "properties": {
        "limit_value": {
          "type": "integer"
        },
        "total_pages": {
          "type": "integer"
        },
        "update_date": {
          "format": "datetime",
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "required": [
    "customers"
  ],
  "title": "Customer - ShortCustomer",
  "type": "object"
}

JSON instance

{
  "customers": [
    {
      "attractivity_poles_ids": [
        16233662
      ],
      "average_ticket": "455907",
      "city": null,
      "client_creation_date": "in amet id est ullamco",
      "closing_days_ids": [
        44754827,
        -12832799,
        -90049948,
        9701848,
        74984311
      ],
      "datlinq_code": 49775466,
      "email": "elit qui cillum volu",
      "id": 89437491,
      "is_deleted": false,
      "is_prospect": true,
      "is_restaurant_place": false,
      "local_id": null,
      "location_areas_ids": [
        63562283,
        42730148,
        4007179,
        95690389
      ],
      "owner_name": null,
      "phone_number": null,
      "postal_code": "sed consectetur anim fugiat consequat",
      "siren": "irure velit sit Duis eu",
      "siret": null,
      "status": null,
      "store_name": "laborum sed sunt",
      "street": null,
      "street_number": null,
      "turnover": null,
      "user_id": 64116960,
      "working_days_amount": -15870278
    },
    {
      "attractivity_poles_ids": [
        -96315465,
        -53754545,
        26386670,
        -30816431
      ],
      "average_ticket": null,
      "city": null,
      "client_creation_date": null,
      "closing_days_ids": [
        16087536,
        79772846,
        73962734,
        28993957,
        -94068689
      ],
      "datlinq_code": 77880450,
      "email": null,
      "id": 60191877,
      "is_deleted": true,
      "is_prospect": true,
      "is_restaurant_place": null,
      "local_id": "sed commodo esse proident est",
      "location_areas_ids": [
        59495761,
        -98599138,
        81146107,
        96608305,
        -42593105
      ],
      "owner_name": "nulla",
      "phone_number": "2001-01-21T10:05:03.054Z",
      "postal_code": null,
      "siren": "Ut velit sed labore",
      "siret": "consequat",
      "status": null,
      "store_name": "est amet minim dolor anim",
      "street": "non ex occaecat do anim",
      "street_number": -92198327,
      "turnover": -61766132,
      "user_id": -33941124,
      "working_days_amount": null
    },
    {
      "attractivity_poles_ids": [
        -1862873,
        60032050,
        -12966152
      ],
      "average_ticket": null,
      "city": null,
      "client_creation_date": null,
      "closing_days_ids": [
        -50211605,
        51673562,
        -9235281,
        15007159,
        -27951503
      ],
      "datlinq_code": -93962606,
      "email": null,
      "id": -74710931,
      "is_deleted": false,
      "is_prospect": null,
      "is_restaurant_place": false,
      "local_id": "sint aliquip aliqua nulla do",
      "location_areas_ids": [
        87777348,
        -38017854
      ],
      "owner_name": "consectetur ipsum",
      "phone_number": null,
      "postal_code": null,
      "siren": "commodo Duis aliqua ut sed",
      "siret": "ex ullamc",
      "status": null,
      "store_name": "minim in elit Excepteur ea",
      "street": null,
      "street_number": -41272302,
      "turnover": 64692562,
      "user_id": 17160404,
      "working_days_amount": null
    }
  ]
}

Validation #632

Failure

The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:

  • The property '#/' contains additional properties ["error"] outside of the schema when none are allowed in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'availability_date' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'creation_date' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'id' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'item_design' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'item_material' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'modification_date' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'quantity' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'replacement_item_design' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'replacement_item_material' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'replacement_quantity' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'status' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'worker_reporter' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'workshop_reporter' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultDesign_1525": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "associated_materials": {
          "items": {
            "$ref": "#/definitions/DefaultMaterial_1526",
            "type": "object"
          },
          "type": "array"
        },
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "picture": {
          "type": "object"
        }
      },
      "required": [
        "associated_materials",
        "id",
        "name",
        "picture"
      ],
      "title": "ItemDesign - DefaultDesign",
      "type": "object"
    },
    "DefaultMaterial_1526": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "associated_color": {
          "type": "string"
        },
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "order_link_type": {
          "type": "string"
        },
        "picture": {
          "type": "object"
        }
      },
      "required": [
        "associated_color",
        "id",
        "name",
        "order_link_type",
        "picture"
      ],
      "title": "ItemMaterial - DefaultMaterial",
      "type": "object"
    },
    "DefaultWorker_1522": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "picture_url": {
          "type": "string"
        },
        "trigram": {
          "type": "string"
        }
      },
      "required": [
        "id",
        "name",
        "picture_url",
        "trigram"
      ],
      "title": "Worker - DefaultWorker",
      "type": "object"
    },
    "DefaultWorkshop_1521": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "clients": {
          "items": {
            "$ref": "#/definitions/DefaultWorkshop_1521",
            "type": "object"
          },
          "type": "array"
        },
        "color": {
          "type": "string"
        },
        "craft": {
          "type": "string"
        },
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "picture_url": {
          "type": "string"
        },
        "workers": {
          "$ref": "#/definitions/DefaultWorker_1522",
          "type": "object"
        }
      },
      "required": [
        "clients",
        "color",
        "craft",
        "id",
        "name",
        "picture_url",
        "workers"
      ],
      "title": "Workshop - DefaultWorkshop",
      "type": "object"
    }
  },
  "description": "Automatically generated (please edit me)",
  "properties": {
    "availability_date": {
      "format": "date",
      "type": "string"
    },
    "creation_date": {
      "description": "Generated by the WS",
      "format": "date",
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "item_design": {
      "$ref": "#/definitions/DefaultDesign_1525",
      "type": "object"
    },
    "item_material": {
      "$ref": "#/definitions/DefaultMaterial_1526",
      "type": "object"
    },
    "modification_date": {
      "description": "Generated by the WS",
      "format": "date",
      "type": "string"
    },
    "quantity": {
      "type": "integer"
    },
    "replacement_item_design": {
      "$ref": "#/definitions/DefaultDesign_1525",
      "type": "object"
    },
    "replacement_item_material": {
      "$ref": "#/definitions/DefaultMaterial_1526",
      "type": "object"
    },
    "replacement_quantity": {
      "type": "integer"
    },
    "status": {
      "enum": [
        "pending",
        "retrieved"
      ],
      "type": "string"
    },
    "worker_reporter": {
      "$ref": "#/definitions/DefaultWorker_1522",
      "type": "object"
    },
    "workshop_reporter": {
      "$ref": "#/definitions/DefaultWorkshop_1521",
      "type": "object"
    }
  },
  "required": [
    "availability_date",
    "creation_date",
    "id",
    "item_design",
    "item_material",
    "modification_date",
    "quantity",
    "replacement_item_design",
    "replacement_item_material",
    "replacement_quantity",
    "status",
    "worker_reporter",
    "workshop_reporter"
  ],
  "title": "AssemblyOrder - DefaultAssemblyOrder",
  "type": "object"
}

JSON instance

{
  "error": "A loop prevents this json to be generated"
}

Validation #631

Failure

The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:

  • The property '#/' contains additional properties ["error"] outside of the schema when none are allowed in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'availability_date' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'creation_date' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'id' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'item_design' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'item_material' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'modification_date' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'quantity' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'replacement_item_design' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'replacement_item_material' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'replacement_quantity' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'status' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'worker_reporter' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9
  • The property '#/' did not contain a required property of 'workshop_reporter' in schema ab89e6e5-4348-5c1f-b758-dddb6ad454a9

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultDesign_1525": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "associated_materials": {
          "items": {
            "$ref": "#/definitions/DefaultMaterial_1526",
            "type": "object"
          },
          "type": "array"
        },
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "picture": {
          "type": "object"
        }
      },
      "required": [
        "associated_materials",
        "id",
        "name",
        "picture"
      ],
      "title": "ItemDesign - DefaultDesign",
      "type": "object"
    },
    "DefaultMaterial_1526": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "associated_color": {
          "type": "string"
        },
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "order_link_type": {
          "type": "string"
        },
        "picture": {
          "type": "object"
        }
      },
      "required": [
        "associated_color",
        "id",
        "name",
        "order_link_type",
        "picture"
      ],
      "title": "ItemMaterial - DefaultMaterial",
      "type": "object"
    },
    "DefaultWorker_1522": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "picture_url": {
          "type": "string"
        },
        "trigram": {
          "type": "string"
        }
      },
      "required": [
        "id",
        "name",
        "picture_url",
        "trigram"
      ],
      "title": "Worker - DefaultWorker",
      "type": "object"
    },
    "DefaultWorkshop_1521": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "clients": {
          "items": {
            "$ref": "#/definitions/DefaultWorkshop_1521",
            "type": "object"
          },
          "type": "array"
        },
        "color": {
          "type": "string"
        },
        "craft": {
          "type": "string"
        },
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "picture_url": {
          "type": "string"
        },
        "workers": {
          "$ref": "#/definitions/DefaultWorker_1522",
          "type": "object"
        }
      },
      "required": [
        "clients",
        "color",
        "craft",
        "id",
        "name",
        "picture_url",
        "workers"
      ],
      "title": "Workshop - DefaultWorkshop",
      "type": "object"
    }
  },
  "description": "Automatically generated (please edit me)",
  "properties": {
    "availability_date": {
      "format": "date",
      "type": "string"
    },
    "creation_date": {
      "description": "Generated by the WS",
      "format": "date",
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "item_design": {
      "$ref": "#/definitions/DefaultDesign_1525",
      "type": "object"
    },
    "item_material": {
      "$ref": "#/definitions/DefaultMaterial_1526",
      "type": "object"
    },
    "modification_date": {
      "description": "Generated by the WS",
      "format": "date",
      "type": "string"
    },
    "quantity": {
      "type": "integer"
    },
    "replacement_item_design": {
      "$ref": "#/definitions/DefaultDesign_1525",
      "type": "object"
    },
    "replacement_item_material": {
      "$ref": "#/definitions/DefaultMaterial_1526",
      "type": "object"
    },
    "replacement_quantity": {
      "type": "integer"
    },
    "status": {
      "enum": [
        "pending",
        "retrieved"
      ],
      "type": "string"
    },
    "worker_reporter": {
      "$ref": "#/definitions/DefaultWorker_1522",
      "type": "object"
    },
    "workshop_reporter": {
      "$ref": "#/definitions/DefaultWorkshop_1521",
      "type": "object"
    }
  },
  "required": [
    "availability_date",
    "creation_date",
    "id",
    "item_design",
    "item_material",
    "modification_date",
    "quantity",
    "replacement_item_design",
    "replacement_item_material",
    "replacement_quantity",
    "status",
    "worker_reporter",
    "workshop_reporter"
  ],
  "title": "AssemblyOrder - DefaultAssemblyOrder",
  "type": "object"
}

JSON instance

{
  "error": "A loop prevents this json to be generated"
}

Validation #630

Success

The input JSON schema validates the input JSON instance (JSON Schema Draft 4).

JSON Schema

{
  "additionalProperties": false,
  "description": "Automatically generated (please edit me)",
  "properties": {},
  "title": "AssemblyOrder - DefaultAssemblyOrder",
  "type": "object"
}

JSON instance

{}

Validation #629

Success

The input JSON schema validates the input JSON instance (JSON Schema Draft 4).

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultProduct_1559": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "SKU": {
          "type": "string"
        },
        "id": {
          "type": "string"
        },
        "item_designation": {
          "type": "string"
        },
        "picture_url": {
          "format": "uri",
          "type": "string"
        },
        "season": {
          "maxLength": 4,
          "minLength": 4,
          "type": "string"
        },
        "subsidiary": {
          "$ref": "#/definitions/SubsidiaryWithoutWarehouse_1573",
          "type": "object"
        },
        "supplier": {
          "$ref": "#/definitions/DefaultSupplier_1558",
          "type": "object"
        }
      },
      "required": [
        "SKU",
        "id",
        "item_designation",
        "picture_url",
        "season",
        "subsidiary",
        "supplier"
      ],
      "title": "Product - DefaultProduct",
      "type": "object"
    },
    "DefaultSupplier_1558": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        }
      },
      "required": [
        "id",
        "name"
      ],
      "title": "Supplier - DefaultSupplier",
      "type": "object"
    },
    "SubsidiaryWithoutWarehouse_1573": {
      "additionalProperties": false,
      "properties": {
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "one_letter_code": {
          "description": "1-letter code used in order to label the reports",
          "maxLength": 1,
          "minLength": 1,
          "type": "string"
        }
      },
      "required": [
        "id",
        "name",
        "one_letter_code"
      ],
      "title": "Subsidiary - SubsidiaryWithoutWarehouse",
      "type": "object"
    }
  },
  "description": "Automatically generated (please edit me)",
  "properties": {
    "id": {
      "type": "string"
    },
    "is_ILPN": {
      "type": "boolean"
    },
    "is_delivery_number": {
      "type": "boolean"
    },
    "name": {
      "type": "string"
    },
    "product": {
      "items": {
        "$ref": "#/definitions/DefaultProduct_1559",
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "id",
    "is_ILPN",
    "is_delivery_number",
    "name",
    "product"
  ],
  "title": "WMSIndex - DefaultWMSIndex",
  "type": "object"
}

JSON instance

{
  "id": "ex esse dolor dolor",
  "is_ILPN": false,
  "is_delivery_number": false,
  "name": "occaecat",
  "product": [
    {
      "SKU": "adipisicing aliqua veniam anim ut",
      "id": "ad sint mollit conse",
      "item_designation": "consectetur Lorem cu",
      "picture_url": "https://XiL.rjytJF",
      "season": "in d",
      "subsidiary": {
        "id": "ipsum labore",
        "name": "quis",
        "one_letter_code": "s"
      },
      "supplier": {
        "id": "amet in nu",
        "name": "id"
      }
    },
    {
      "SKU": "nulla ",
      "id": "eu esse",
      "item_designation": "cupidatat ea Lorem cillum",
      "picture_url": "http://LQzEUDfNKO.uitkbR4pxVxN5c7xLiq1+txqhQUzoEGt6zL-+r.zFDike+HBbgrQGRS8",
      "season": "eius",
      "subsidiary": {
        "id": "laborum do",
        "name": "dolor ex deserunt ut",
        "one_letter_code": "a"
      },
      "supplier": {
        "id": "non dolor dolore cupidatat",
        "name": "cillum officia irure"
      }
    }
  ]
}

Validation #628

Failure

The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:

  • The property '#/user' contains additional properties ["lol"] outside of the schema when none are allowed in schema a5e79d80-2ef9-5ac1-8f13-63c0dc42a044

JSON Schema

{
  "additionalProperties": false,
  "properties": {
    "user": {
      "additionalProperties": false,
      "properties": {
        "date": {
          "format": "date",
          "type": "string"
        },
        "email": {
          "type": "string"
        },
        "managerId": {
          "type": "integer"
        }
      },
      "required": [
        "date",
        "email",
        "managerId"
      ],
      "type": "object"
    }
  },
  "required": [
    "user"
  ],
  "title": "User - UpdateUser",
  "type": "object"
}

JSON instance

{
  "user": {
    "date": "1942-04-09",
    "email": "pariatur in",
    "lol": 1,
    "managerId": 65289671
  }
}