Validations history

Validation #515

Failure

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

  • The property '#/farms/0/customer_number' of type null did not match the following type: string in schema 0245c505-18c2-5fe3-af9c-75c4925438b8
  • The property '#/farms/0/name' of type null did not match the following type: string in schema 0245c505-18c2-5fe3-af9c-75c4925438b8

JSON Schema

{
  "additionalProperties": false,
  "description": "Automatically generated (please edit me)",
  "properties": {
    "farms": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "customer_number": {
            "description": "numClient",
            "pattern": "\\d*",
            "type": "string"
          },
          "customer_relation_email": {
            "description": "emailCommercial",
            "type": "string"
          },
          "id": {
            "description": "numCLient",
            "minimum": 0,
            "type": "integer"
          },
          "is_owner": {
            "anyOf": [
              {
                "description": "isOwner",
                "type": "boolean"
              },
              {
                "type": "null"
              }
            ]
          },
          "mobile_phone": {
            "description": "mobilePhone",
            "type": "string"
          },
          "name": {
            "description": "raisonSociale",
            "type": "string"
          },
          "provider": {
            "description": "provider",
            "enum": [
              "AGR",
              "AGR-INT"
            ],
            "type": "string"
          }
        },
        "required": [
          "customer_number",
          "id",
          "is_owner",
          "name",
          "provider"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "farms"
  ],
  "title": "Farm - DefaultFarm",
  "type": "object"
}

JSON instance

{
  "farms": [
    {
      "customer_number": null,
      "id": 345,
      "is_owner": null,
      "name": null,
      "provider": "AGR"
    }
  ]
}

Validation #514

Failure

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

  • The property '#/contracts/0/fiscal_year' did not have a maximum value of 2018, inclusively in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'amount_to_deposit' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'closing_date' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'commodity' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'commodity_id' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'itk_feedback' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'maturity' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'maturity_id' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'settlement_price' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'special_bonus' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultCellVariety_776": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "cell": {
          "type": "string"
        },
        "variety": {
          "type": "string"
        }
      },
      "required": [
        "cell",
        "variety"
      ],
      "title": "CellVariety - DefaultCellVariety",
      "type": "object"
    },
    "DefaultSample_778": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "cell_varieties": {
          "items": {
            "$ref": "#/definitions/DefaultCellVariety_776",
            "type": "object"
          },
          "type": "array"
        },
        "characteristics": {
          "items": {
            "$ref": "#/definitions/SampleCharacteristic_777",
            "type": "object"
          },
          "type": "array"
        },
        "date": {
          "description": "The ISO 8601 date format (%Y-%m-%d)",
          "format": "datetime",
          "type": "string"
        },
        "number": {
          "type": "string"
        },
        "quantity": {
          "minimum": 0,
          "type": "number"
        }
      },
      "required": [
        "cell_varieties",
        "characteristics",
        "date",
        "number",
        "quantity"
      ],
      "title": "Sample - DefaultSample",
      "type": "object"
    },
    "DefaultSettlement_560": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "amount": {
          "minimum": 0,
          "type": "number"
        },
        "date": {
          "format": "date",
          "type": "string"
        },
        "price": {
          "minimum": 0,
          "type": "number"
        },
        "status": {
          "description": "0 => nothing special, 1 => to validate",
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        }
      },
      "required": [
        "amount",
        "date",
        "price",
        "status"
      ],
      "title": "Settlement - DefaultSettlement",
      "type": "object"
    },
    "SampleCharacteristic_777": {
      "additionalProperties": false,
      "properties": {
        "code": {
          "type": "string"
        },
        "label": {
          "type": "string"
        },
        "value": {
          "minimum": 0,
          "type": "number"
        }
      },
      "required": [
        "code",
        "label",
        "value"
      ],
      "title": "Characteristic - SampleCharacteristic",
      "type": "object"
    },
    "minimalContract_770": {
      "additionalProperties": false,
      "properties": {
        "crm_id": {
          "description": "numContratOrigin",
          "type": "string"
        },
        "id": {
          "description": "numContratOrigin",
          "pattern": "\\d*",
          "type": "string"
        }
      },
      "required": [
        "crm_id",
        "id"
      ],
      "title": "Contract - minimalContract",
      "type": "object"
    }
  },
  "description": "Automatically generated (please edit me)",
  "properties": {
    "contracts": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "amount_to_deliver": {
            "description": "qteSoldeContrat",
            "minimum": 0,
            "type": "number"
          },
          "amount_to_deposit": {
            "minimum": 0,
            "type": "number"
          },
          "closing_date": {
            "description": "backend Data (settlement_price) : closingDate",
            "format": "date",
            "type": "string"
          },
          "commencement_date": {
            "description": "dateExecDebut",
            "format": "date",
            "type": "string"
          },
          "commodity": {
            "anyOf": [
              {
                "description": "codeContratTerme",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "commodity_id": {
            "anyOf": [
              {
                "description": "backend Data (settlement_price) : sflCommodity",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "contracts": {
            "items": {
              "$ref": "#/definitions/minimalContract_770",
              "type": "object"
            },
            "type": "array"
          },
          "crm_id": {
            "description": "numContratOrigin",
            "type": "string"
          },
          "date": {
            "description": "dateContrat",
            "format": "date",
            "type": "string"
          },
          "delivered_amount": {
            "description": "qteLivreContrat",
            "minimum": 0,
            "type": "number"
          },
          "deposited_amount": {
            "description": "qteLivreDepot",
            "minimum": 0,
            "type": "number"
          },
          "fiscal_year": {
            "description": "campagne",
            "maximum": 2018,
            "minimum": 2017,
            "type": "integer"
          },
          "gain": {
            "description": "gain",
            "type": "number"
          },
          "id": {
            "description": "numContratOrigin",
            "pattern": "\\d*",
            "type": "string"
          },
          "is_closed": {
            "description": "clotureContrat == 'OUI'",
            "type": "boolean"
          },
          "itk_feedback": {
            "anyOf": [
              {
                "description": "itkFeedback\r\nDirectement la chaîne à afficher. Valeurs possibles : pas de retour, retour papier ou retour electronique",
                "enum": [
                  "pas de retour",
                  "retour papier",
                  "retour electronique"
                ],
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "maturity": {
            "anyOf": [
              {
                "description": "echeanceMatif",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "maturity_id": {
            "anyOf": [
              {
                "description": "backend Data (settlement_price) : sflMaturity",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "minimum_price": {
            "description": "prixMini",
            "minimum": 0,
            "type": "number"
          },
          "name": {
            "description": "libContrat",
            "type": "string"
          },
          "price": {
            "description": "prixContrat",
            "minimum": 0,
            "type": "number"
          },
          "product_name": {
            "description": "libProduitContrat",
            "type": "string"
          },
          "quality_bonus": {
            "anyOf": [
              {
                "description": "qualityBonus",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "samples": {
            "items": {
              "$ref": "#/definitions/DefaultSample_778",
              "type": "object"
            },
            "type": "array"
          },
          "settlement_price": {
            "anyOf": [
              {
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "settlements": {
            "items": {
              "$ref": "#/definitions/DefaultSettlement_560",
              "type": "object"
            },
            "type": "array"
          },
          "special_bonus": {
            "anyOf": [
              {
                "description": "specialBonus",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "strike": {
            "description": "cotation",
            "type": "number"
          },
          "surface": {
            "anyOf": [
              {
                "description": "surface",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "termination_date": {
            "description": "dateExecFin",
            "format": "date",
            "type": "string"
          },
          "total_amount": {
            "description": "qteContrat",
            "minimum": 0,
            "type": "number"
          },
          "type": {
            "description": "typeContrat",
            "type": "string"
          },
          "variety": {
            "description": "codFamOpticollecte",
            "type": "string"
          },
          "variety_name": {
            "description": "libFamOpticollecte",
            "type": "string"
          },
          "variety_standard_deviation": {
            "anyOf": [
              {
                "description": "varietyStandardDeviation",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "warranty_cost": {
            "description": "primeOption",
            "minimum": 0,
            "type": "number"
          },
          "yield": {
            "anyOf": [
              {
                "description": "yield",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "required": [
          "amount_to_deliver",
          "amount_to_deposit",
          "closing_date",
          "commencement_date",
          "commodity",
          "commodity_id",
          "contracts",
          "crm_id",
          "date",
          "delivered_amount",
          "deposited_amount",
          "fiscal_year",
          "gain",
          "id",
          "is_closed",
          "itk_feedback",
          "maturity",
          "maturity_id",
          "name",
          "price",
          "product_name",
          "quality_bonus",
          "samples",
          "settlement_price",
          "settlements",
          "special_bonus",
          "strike",
          "surface",
          "termination_date",
          "total_amount",
          "type",
          "variety",
          "variety_name",
          "variety_standard_deviation",
          "yield"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "contracts"
  ],
  "title": "Contract - DefaultContract",
  "type": "object"
}

JSON instance

{
  "contracts": [
    {
      "amount_to_deliver": 50,
      "commencement_date": "2019-07-01",
      "contracts": [],
      "crm_id": "252700-000",
      "date": "2018-08-10",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2019,
      "gain": 0,
      "id": "266637",
      "is_closed": false,
      "name": "Contrat Prix Ferme",
      "price": 173,
      "product_name": "ESC ISOCEL",
      "quality_bonus": 0,
      "samples": [],
      "strike": 0,
      "surface": 0,
      "termination_date": "2019-08-31",
      "total_amount": 50,
      "type": "APF",
      "variety": "OH",
      "variety_name": "ORGE HIVER",
      "variety_standard_deviation": 0,
      "yield": 0
    }
  ]
}

Validation #513

Failure

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

  • The property '#/contracts/0/fiscal_year' did not have a maximum value of 2018, inclusively in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'amount_to_deposit' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'closing_date' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'commodity' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'commodity_id' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'itk_feedback' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'maturity' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'maturity_id' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'settlement_price' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'special_bonus' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultCellVariety_776": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "cell": {
          "type": "string"
        },
        "variety": {
          "type": "string"
        }
      },
      "required": [
        "cell",
        "variety"
      ],
      "title": "CellVariety - DefaultCellVariety",
      "type": "object"
    },
    "DefaultSample_778": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "cell_varieties": {
          "items": {
            "$ref": "#/definitions/DefaultCellVariety_776",
            "type": "object"
          },
          "type": "array"
        },
        "characteristics": {
          "items": {
            "$ref": "#/definitions/SampleCharacteristic_777",
            "type": "object"
          },
          "type": "array"
        },
        "date": {
          "description": "The ISO 8601 date format (%Y-%m-%d)",
          "format": "datetime",
          "type": "string"
        },
        "number": {
          "type": "string"
        },
        "quantity": {
          "minimum": 0,
          "type": "number"
        }
      },
      "required": [
        "cell_varieties",
        "characteristics",
        "date",
        "number",
        "quantity"
      ],
      "title": "Sample - DefaultSample",
      "type": "object"
    },
    "DefaultSettlement_560": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "amount": {
          "minimum": 0,
          "type": "number"
        },
        "date": {
          "format": "date",
          "type": "string"
        },
        "price": {
          "minimum": 0,
          "type": "number"
        },
        "status": {
          "description": "0 => nothing special, 1 => to validate",
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        }
      },
      "required": [
        "amount",
        "date",
        "price",
        "status"
      ],
      "title": "Settlement - DefaultSettlement",
      "type": "object"
    },
    "SampleCharacteristic_777": {
      "additionalProperties": false,
      "properties": {
        "code": {
          "type": "string"
        },
        "label": {
          "type": "string"
        },
        "value": {
          "minimum": 0,
          "type": "number"
        }
      },
      "required": [
        "code",
        "label",
        "value"
      ],
      "title": "Characteristic - SampleCharacteristic",
      "type": "object"
    },
    "minimalContract_770": {
      "additionalProperties": false,
      "properties": {
        "crm_id": {
          "description": "numContratOrigin",
          "type": "string"
        },
        "id": {
          "description": "numContratOrigin",
          "pattern": "\\d*",
          "type": "string"
        }
      },
      "required": [
        "crm_id",
        "id"
      ],
      "title": "Contract - minimalContract",
      "type": "object"
    }
  },
  "description": "Automatically generated (please edit me)",
  "properties": {
    "contracts": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "amount_to_deliver": {
            "description": "qteSoldeContrat",
            "minimum": 0,
            "type": "number"
          },
          "amount_to_deposit": {
            "minimum": 0,
            "type": "number"
          },
          "closing_date": {
            "description": "backend Data (settlement_price) : closingDate",
            "format": "date",
            "type": "string"
          },
          "commencement_date": {
            "description": "dateExecDebut",
            "format": "date",
            "type": "string"
          },
          "commodity": {
            "anyOf": [
              {
                "description": "codeContratTerme",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "commodity_id": {
            "anyOf": [
              {
                "description": "backend Data (settlement_price) : sflCommodity",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "contracts": {
            "items": {
              "$ref": "#/definitions/minimalContract_770",
              "type": "object"
            },
            "type": "array"
          },
          "crm_id": {
            "description": "numContratOrigin",
            "type": "string"
          },
          "date": {
            "description": "dateContrat",
            "format": "date",
            "type": "string"
          },
          "delivered_amount": {
            "description": "qteLivreContrat",
            "minimum": 0,
            "type": "number"
          },
          "deposited_amount": {
            "description": "qteLivreDepot",
            "minimum": 0,
            "type": "number"
          },
          "fiscal_year": {
            "description": "campagne",
            "maximum": 2018,
            "minimum": 2017,
            "type": "integer"
          },
          "gain": {
            "description": "gain",
            "type": "number"
          },
          "id": {
            "description": "numContratOrigin",
            "pattern": "\\d*",
            "type": "string"
          },
          "is_closed": {
            "description": "clotureContrat == 'OUI'",
            "type": "boolean"
          },
          "itk_feedback": {
            "anyOf": [
              {
                "description": "itkFeedback\r\nDirectement la chaîne à afficher. Valeurs possibles : pas de retour, retour papier ou retour electronique",
                "enum": [
                  "pas de retour",
                  "retour papier",
                  "retour electronique"
                ],
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "maturity": {
            "anyOf": [
              {
                "description": "echeanceMatif",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "maturity_id": {
            "anyOf": [
              {
                "description": "backend Data (settlement_price) : sflMaturity",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "minimum_price": {
            "description": "prixMini",
            "minimum": 0,
            "type": "number"
          },
          "name": {
            "description": "libContrat",
            "type": "string"
          },
          "price": {
            "description": "prixContrat",
            "minimum": 0,
            "type": "number"
          },
          "product_name": {
            "description": "libProduitContrat",
            "type": "string"
          },
          "quality_bonus": {
            "anyOf": [
              {
                "description": "qualityBonus",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "samples": {
            "items": {
              "$ref": "#/definitions/DefaultSample_778",
              "type": "object"
            },
            "type": "array"
          },
          "settlement_price": {
            "anyOf": [
              {
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "settlements": {
            "items": {
              "$ref": "#/definitions/DefaultSettlement_560",
              "type": "object"
            },
            "type": "array"
          },
          "special_bonus": {
            "anyOf": [
              {
                "description": "specialBonus",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "strike": {
            "description": "cotation",
            "type": "number"
          },
          "surface": {
            "anyOf": [
              {
                "description": "surface",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "termination_date": {
            "description": "dateExecFin",
            "format": "date",
            "type": "string"
          },
          "total_amount": {
            "description": "qteContrat",
            "minimum": 0,
            "type": "number"
          },
          "type": {
            "description": "typeContrat",
            "type": "string"
          },
          "variety": {
            "description": "codFamOpticollecte",
            "type": "string"
          },
          "variety_name": {
            "description": "libFamOpticollecte",
            "type": "string"
          },
          "variety_standard_deviation": {
            "anyOf": [
              {
                "description": "varietyStandardDeviation",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "warranty_cost": {
            "description": "primeOption",
            "minimum": 0,
            "type": "number"
          },
          "yield": {
            "anyOf": [
              {
                "description": "yield",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "required": [
          "amount_to_deliver",
          "amount_to_deposit",
          "closing_date",
          "commencement_date",
          "commodity",
          "commodity_id",
          "contracts",
          "crm_id",
          "date",
          "delivered_amount",
          "deposited_amount",
          "fiscal_year",
          "gain",
          "id",
          "is_closed",
          "itk_feedback",
          "maturity",
          "maturity_id",
          "name",
          "price",
          "product_name",
          "quality_bonus",
          "samples",
          "settlement_price",
          "settlements",
          "special_bonus",
          "strike",
          "surface",
          "termination_date",
          "total_amount",
          "type",
          "variety",
          "variety_name",
          "variety_standard_deviation",
          "yield"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "contracts"
  ],
  "title": "Contract - DefaultContract",
  "type": "object"
}

JSON instance

{
  "contracts": [
    {
      "amount_to_deliver": 50,
      "commencement_date": "2019-07-01",
      "contracts": [],
      "crm_id": "252700-000",
      "date": "2018-08-10",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2019,
      "gain": 0,
      "id": "266637",
      "is_closed": false,
      "name": "Contrat Prix Ferme",
      "price": 173,
      "product_name": "ESC ISOCEL",
      "quality_bonus": 0,
      "samples": [],
      "strike": 0,
      "surface": 0,
      "termination_date": "2019-08-31",
      "total_amount": 50,
      "type": "APF",
      "variety": "OH",
      "variety_name": "ORGE HIVER",
      "variety_standard_deviation": 0,
      "yield": 0
    }
  ]
}

Validation #512

Failure

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

  • The property '#/contracts/0/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/1/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/1/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/1' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/2/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/2/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/2' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/3/amount_to_deliver' did not have a minimum value of 0, inclusively in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/3/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/3/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/3/samples/0/cell_varieties/0/variety' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb#
  • The property '#/contracts/3' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/4/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/4/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/4' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/5' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/5/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/5/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/5' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/6' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/6/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/6/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/6' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/7' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/7/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/7/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/7' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/8' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/8/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/8/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/8' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/9/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/9/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/9' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/10' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/10/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/10/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/10' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/11' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/11/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/11/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/11' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/12' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/12/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/12/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/12' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/13' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/13/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/13/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/13' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14/commencement_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14/termination_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultCellVariety_776": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "cell": {
          "type": "string"
        },
        "variety": {
          "type": "string"
        }
      },
      "required": [
        "cell",
        "variety"
      ],
      "title": "CellVariety - DefaultCellVariety",
      "type": "object"
    },
    "DefaultSample_778": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "cell_varieties": {
          "items": {
            "$ref": "#/definitions/DefaultCellVariety_776",
            "type": "object"
          },
          "type": "array"
        },
        "characteristics": {
          "items": {
            "$ref": "#/definitions/SampleCharacteristic_777",
            "type": "object"
          },
          "type": "array"
        },
        "date": {
          "description": "The ISO 8601 date format (%Y-%m-%d)",
          "format": "datetime",
          "type": "string"
        },
        "number": {
          "type": "string"
        },
        "quantity": {
          "minimum": 0,
          "type": "number"
        }
      },
      "required": [
        "cell_varieties",
        "characteristics",
        "date",
        "number",
        "quantity"
      ],
      "title": "Sample - DefaultSample",
      "type": "object"
    },
    "DefaultSettlement_560": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "amount": {
          "minimum": 0,
          "type": "number"
        },
        "date": {
          "format": "date",
          "type": "string"
        },
        "price": {
          "minimum": 0,
          "type": "number"
        },
        "status": {
          "description": "0 => nothing special, 1 => to validate",
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        }
      },
      "required": [
        "amount",
        "date",
        "price",
        "status"
      ],
      "title": "Settlement - DefaultSettlement",
      "type": "object"
    },
    "SampleCharacteristic_777": {
      "additionalProperties": false,
      "properties": {
        "code": {
          "type": "string"
        },
        "label": {
          "type": "string"
        },
        "value": {
          "minimum": 0,
          "type": "number"
        }
      },
      "required": [
        "code",
        "label",
        "value"
      ],
      "title": "Characteristic - SampleCharacteristic",
      "type": "object"
    },
    "minimalContract_770": {
      "additionalProperties": false,
      "properties": {
        "crm_id": {
          "description": "numContratOrigin",
          "type": "string"
        },
        "id": {
          "description": "numContratOrigin",
          "pattern": "\\d*",
          "type": "string"
        }
      },
      "required": [
        "crm_id",
        "id"
      ],
      "title": "Contract - minimalContract",
      "type": "object"
    }
  },
  "description": "Automatically generated (please edit me)",
  "properties": {
    "contracts": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "amount_to_deliver": {
            "description": "qteSoldeContrat",
            "minimum": 0,
            "type": "number"
          },
          "amount_to_deposit": {
            "minimum": 0,
            "type": "number"
          },
          "closing_date": {
            "description": "backend Data (settlement_price) : closingDate",
            "format": "date",
            "type": "string"
          },
          "commencement_date": {
            "description": "dateExecDebut",
            "format": "date",
            "type": "string"
          },
          "commodity": {
            "anyOf": [
              {
                "description": "codeContratTerme",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "commodity_id": {
            "anyOf": [
              {
                "description": "backend Data (settlement_price) : sflCommodity",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "contracts": {
            "items": {
              "$ref": "#/definitions/minimalContract_770",
              "type": "object"
            },
            "type": "array"
          },
          "crm_id": {
            "description": "numContratOrigin",
            "type": "string"
          },
          "date": {
            "description": "dateContrat",
            "format": "date",
            "type": "string"
          },
          "delivered_amount": {
            "description": "qteLivreContrat",
            "minimum": 0,
            "type": "number"
          },
          "deposited_amount": {
            "description": "qteLivreDepot",
            "minimum": 0,
            "type": "number"
          },
          "fiscal_year": {
            "description": "campagne",
            "maximum": 2018,
            "minimum": 2017,
            "type": "integer"
          },
          "gain": {
            "description": "gain",
            "type": "number"
          },
          "id": {
            "description": "numContratOrigin",
            "pattern": "\\d*",
            "type": "string"
          },
          "is_closed": {
            "description": "clotureContrat == 'OUI'",
            "type": "boolean"
          },
          "itk_feedback": {
            "anyOf": [
              {
                "description": "itkFeedback\r\nDirectement la chaîne à afficher. Valeurs possibles : pas de retour, retour papier ou retour electronique",
                "enum": [
                  "pas de retour",
                  "retour papier",
                  "retour electronique"
                ],
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "maturity": {
            "anyOf": [
              {
                "description": "echeanceMatif",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "maturity_id": {
            "anyOf": [
              {
                "description": "backend Data (settlement_price) : sflMaturity",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "minimum_price": {
            "description": "prixMini",
            "minimum": 0,
            "type": "number"
          },
          "name": {
            "description": "libContrat",
            "type": "string"
          },
          "price": {
            "description": "prixContrat",
            "minimum": 0,
            "type": "number"
          },
          "product_name": {
            "description": "libProduitContrat",
            "type": "string"
          },
          "quality_bonus": {
            "anyOf": [
              {
                "description": "qualityBonus",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "samples": {
            "items": {
              "$ref": "#/definitions/DefaultSample_778",
              "type": "object"
            },
            "type": "array"
          },
          "settlement_price": {
            "anyOf": [
              {
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "settlements": {
            "items": {
              "$ref": "#/definitions/DefaultSettlement_560",
              "type": "object"
            },
            "type": "array"
          },
          "special_bonus": {
            "anyOf": [
              {
                "description": "specialBonus",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "strike": {
            "description": "cotation",
            "type": "number"
          },
          "surface": {
            "anyOf": [
              {
                "description": "surface",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "termination_date": {
            "description": "dateExecFin",
            "format": "date",
            "type": "string"
          },
          "total_amount": {
            "description": "qteContrat",
            "minimum": 0,
            "type": "number"
          },
          "type": {
            "description": "typeContrat",
            "type": "string"
          },
          "variety": {
            "description": "codFamOpticollecte",
            "type": "string"
          },
          "variety_name": {
            "description": "libFamOpticollecte",
            "type": "string"
          },
          "variety_standard_deviation": {
            "anyOf": [
              {
                "description": "varietyStandardDeviation",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "warranty_cost": {
            "description": "primeOption",
            "minimum": 0,
            "type": "number"
          },
          "yield": {
            "anyOf": [
              {
                "description": "yield",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "required": [
          "amount_to_deliver",
          "amount_to_deposit",
          "closing_date",
          "commencement_date",
          "commodity",
          "commodity_id",
          "contracts",
          "crm_id",
          "date",
          "delivered_amount",
          "deposited_amount",
          "fiscal_year",
          "gain",
          "id",
          "is_closed",
          "itk_feedback",
          "maturity",
          "maturity_id",
          "name",
          "price",
          "product_name",
          "quality_bonus",
          "samples",
          "settlement_price",
          "settlements",
          "special_bonus",
          "strike",
          "surface",
          "termination_date",
          "total_amount",
          "type",
          "variety",
          "variety_name",
          "variety_standard_deviation",
          "yield"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "contracts"
  ],
  "title": "Contract - DefaultContract",
  "type": "object"
}

JSON instance

{
  "contracts": [
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [
        {
          "crm_id": "281488-000",
          "id": "295019"
        }
      ],
      "crm_id": "39457-000",
      "date": "2018-12-18",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "45359",
      "is_closed": false,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat d'Engagement",
      "price": 0,
      "product_name": "BLE OREGRAIN BAGUEPI",
      "quality_bonus": 2,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 7,
      "termination_date": "2019-03-31",
      "total_amount": 46.913,
      "type": "P01",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 2,
      "yield": 6.702
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [
        {
          "crm_id": "200749-000",
          "id": "215592"
        }
      ],
      "crm_id": "28847-000",
      "date": "2017-09-12",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "34697",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat d'Engagement",
      "price": 0,
      "product_name": "BLE FRUCTIDOR BAGUEPI",
      "quality_bonus": 2,
      "samples": [
        {
          "cell_varieties": [],
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 78.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.5
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 419
            },
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 78.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.5
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 419
            }
          ],
          "date": "2018-09-20",
          "number": "535090317515346",
          "quantity": 0
        }
      ],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 22,
      "termination_date": "2019-03-31",
      "total_amount": 160,
      "type": "P01",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 2,
      "yield": 7.273
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [
        {
          "crm_id": "200748-000",
          "id": "215591"
        }
      ],
      "crm_id": "28846-000",
      "date": "2017-09-12",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "34696",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat d'Engagement",
      "price": 0,
      "product_name": "BLE OREGRAIN BAGUEPI",
      "quality_bonus": 2,
      "samples": [
        {
          "cell_varieties": [],
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.9
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 79.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.2
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 371
            }
          ],
          "date": "2018-09-20",
          "number": "535090317515342",
          "quantity": 0
        }
      ],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 25,
      "termination_date": "2019-03-31",
      "total_amount": 180,
      "type": "P01",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 3,
      "yield": 7.2
    },
    {
      "amount_to_deliver": -68.136,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [
        {
          "crm_id": "200750-000",
          "id": "215593"
        },
        {
          "crm_id": "200750-001",
          "id": "215593"
        }
      ],
      "crm_id": "28845-000",
      "date": "2017-09-12",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "34695",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat d'Engagement",
      "price": 0,
      "product_name": "BLE BPMF BAGUEPI",
      "quality_bonus": 2,
      "samples": [
        {
          "cell_varieties": [
            {
              "cell": "PIN GAUCHE",
              "variety": null
            }
          ],
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.3
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 78.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.5
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 303
            },
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.2
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 80
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.3
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 319
            }
          ],
          "date": "2018-09-20",
          "number": "535090317515336",
          "quantity": 0
        }
      ],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 100,
      "termination_date": "2019-03-31",
      "total_amount": 700,
      "type": "P01",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7
    },
    {
      "amount_to_deliver": 200,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2019-01-31",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "284710-000",
      "date": "2019-01-21",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "298280",
      "is_closed": false,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 174,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2019-03-30",
      "total_amount": 200,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "281488-000",
      "date": "2018-12-18",
      "delivered_amount": 46.913,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 15.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8383-4",
          "invoices": [
            {
              "amount": 28.024,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 28.278,
          "net_price": 0,
          "normed_amount": 28.024,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 15.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8384-3",
          "invoices": [
            {
              "amount": 18.889,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                },
                {
                  "code": "C1",
                  "label": "Approche",
                  "value": 2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 163.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 17
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 19.06,
          "net_price": 0,
          "normed_amount": 18.889,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "295019",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE OREGRAIN BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 7,
      "termination_date": "2019-03-31",
      "total_amount": 46.913,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 6.702
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-07-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "281168-000",
      "date": "2018-12-14",
      "delivered_amount": 160.783,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 74.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            }
          ],
          "date": "2018-07-09",
          "delivery_number": "11963-7",
          "invoices": [
            {
              "amount": 14.985,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 15.06,
          "net_price": 0,
          "normed_amount": 14.985,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 75.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.8
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "11998-7",
          "invoices": [
            {
              "amount": 16.477,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 163.96
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": -8.04
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.96
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 16.56,
          "net_price": 0,
          "normed_amount": 16.477,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.7
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12011-7",
          "invoices": [
            {
              "amount": 12.935,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 13,
          "net_price": 0,
          "normed_amount": 12.935,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12020-7",
          "invoices": [
            {
              "amount": 13.333,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 13.4,
          "net_price": 0,
          "normed_amount": 13.333,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.2
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.7
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12023-7",
          "invoices": [
            {
              "amount": 15.224,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 15.3,
          "net_price": 0,
          "normed_amount": 15.224,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 75.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12033-7",
          "invoices": [
            {
              "amount": 15.263,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 15.34,
          "net_price": 0,
          "normed_amount": 15.263,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.6
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12038-7",
          "invoices": [
            {
              "amount": 13.054,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 13.12,
          "net_price": 0,
          "normed_amount": 13.054,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.2
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12044-7",
          "invoices": [
            {
              "amount": 17.134,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 163.96
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": -8.04
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.96
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 17.22,
          "net_price": 0,
          "normed_amount": 17.134,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.9
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12052-7",
          "invoices": [
            {
              "amount": 15.502,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 15.58,
          "net_price": 0,
          "normed_amount": 15.502,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12073-7",
          "invoices": [
            {
              "amount": 6.786,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 6.82,
          "net_price": 0,
          "normed_amount": 6.786,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.9
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12
            }
          ],
          "date": "2018-07-11",
          "delivery_number": "12166-7",
          "invoices": [
            {
              "amount": 12.666,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 163.96
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": -8.04
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.96
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 12.729,
          "net_price": 0,
          "normed_amount": 12.666,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.9
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12
            }
          ],
          "date": "2018-07-11",
          "delivery_number": "12166-10",
          "invoices": [
            {
              "amount": 3.712,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 163.959
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": -8.041
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.959
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 3.731,
          "net_price": 0,
          "normed_amount": 3.712,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29929-17",
          "invoices": [
            {
              "amount": 3.712,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 174.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 174.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 3.716,
          "net_price": 0,
          "normed_amount": 3.712,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "294660",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 172,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2018-08-31",
      "total_amount": 157.071,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "249749-000",
      "date": "2018-08-03",
      "delivered_amount": 85,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29899-4",
          "invoices": [
            {
              "amount": 17.801,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 17.801,
          "net_price": 0,
          "normed_amount": 17.801,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29912-1",
          "invoices": [
            {
              "amount": 19.16,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.16,
          "net_price": 0,
          "normed_amount": 19.16,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 74.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.9
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29913-1",
          "invoices": [
            {
              "amount": 19.12,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.12,
          "net_price": 0,
          "normed_amount": 19.12,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 75.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.8
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29915-1",
          "invoices": [
            {
              "amount": 11.84,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 11.84,
          "net_price": 0,
          "normed_amount": 11.84,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29918-1",
          "invoices": [
            {
              "amount": 17.079,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 17.079,
          "net_price": 0,
          "normed_amount": 17.079,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "264111",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 187,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2019-03-30",
      "total_amount": 85,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2019-01-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "235318-000",
      "date": "2018-06-19",
      "delivered_amount": 90,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29918-4",
          "invoices": [
            {
              "amount": 2.121,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 2.121,
          "net_price": 0,
          "normed_amount": 2.121,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29919-3",
          "invoices": [
            {
              "amount": 19.02,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.02,
          "net_price": 0,
          "normed_amount": 19.02,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.7
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.1
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29920-3",
          "invoices": [
            {
              "amount": 18.921,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 18.94,
          "net_price": 0,
          "normed_amount": 18.921,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 75.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29923-3",
          "invoices": [
            {
              "amount": 18.96,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 18.96,
          "net_price": 0,
          "normed_amount": 18.96,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.1
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29928-3",
          "invoices": [
            {
              "amount": 19.62,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.64,
          "net_price": 0,
          "normed_amount": 19.62,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29929-3",
          "invoices": [
            {
              "amount": 11.358,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 11.369,
          "net_price": 0,
          "normed_amount": 11.358,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "249918",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 151,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2019-03-30",
      "total_amount": 90,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 68.136,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "200750-001",
      "date": "2018-12-18",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "215593",
      "is_closed": false,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE BPMF BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 9.73,
      "termination_date": "2019-03-31",
      "total_amount": 68.136,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "200750-000",
      "date": "2017-11-29",
      "delivered_amount": 584.951,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            }
          ],
          "date": "2018-10-08",
          "delivery_number": "10130-4",
          "invoices": [
            {
              "amount": 17.46,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 17.46,
          "net_price": 0,
          "normed_amount": 17.46,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.7
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 81.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            }
          ],
          "date": "2018-10-08",
          "delivery_number": "10131-3",
          "invoices": [
            {
              "amount": 29.72,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.72,
          "net_price": 0,
          "normed_amount": 29.72,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-27",
          "delivery_number": "10610-1",
          "invoices": [
            {
              "amount": 29.151,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.18,
          "net_price": 0,
          "normed_amount": 29.151,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.7
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10616-1",
          "invoices": [
            {
              "amount": 30.16,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.16,
          "net_price": 0,
          "normed_amount": 30.16,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10617-1",
          "invoices": [
            {
              "amount": 30.14,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.14,
          "net_price": 0,
          "normed_amount": 30.14,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10619-1",
          "invoices": [
            {
              "amount": 29.46,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.46,
          "net_price": 0,
          "normed_amount": 29.46,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10623-1",
          "invoices": [
            {
              "amount": 29.82,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.82,
          "net_price": 0,
          "normed_amount": 29.82,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10631-1",
          "invoices": [
            {
              "amount": 29.76,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.76,
          "net_price": 0,
          "normed_amount": 29.76,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-29",
          "delivery_number": "10635-1",
          "invoices": [
            {
              "amount": 30.04,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.04,
          "net_price": 0,
          "normed_amount": 30.04,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.8
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-29",
          "delivery_number": "10644-1",
          "invoices": [
            {
              "amount": 29.82,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.82,
          "net_price": 0,
          "normed_amount": 29.82,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10647-1",
          "invoices": [
            {
              "amount": 30.34,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.34,
          "net_price": 0,
          "normed_amount": 30.34,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.2
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10648-1",
          "invoices": [
            {
              "amount": 29.96,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.96,
          "net_price": 0,
          "normed_amount": 29.96,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10649-1",
          "invoices": [
            {
              "amount": 29.64,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.64,
          "net_price": 0,
          "normed_amount": 29.64,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.8
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10650-1",
          "invoices": [
            {
              "amount": 29.94,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.94,
          "net_price": 0,
          "normed_amount": 29.94,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10651-1",
          "invoices": [
            {
              "amount": 30.3,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.3,
          "net_price": 0,
          "normed_amount": 30.3,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.1
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10666-1",
          "invoices": [
            {
              "amount": 30.04,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.04,
          "net_price": 0,
          "normed_amount": 30.04,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10667-1",
          "invoices": [
            {
              "amount": 29.88,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.88,
          "net_price": 0,
          "normed_amount": 29.88,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10668-1",
          "invoices": [
            {
              "amount": 30.22,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.22,
          "net_price": 0,
          "normed_amount": 30.22,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10669-1",
          "invoices": [
            {
              "amount": 29.48,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.48,
          "net_price": 0,
          "normed_amount": 29.48,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10670-1",
          "invoices": [
            {
              "amount": 29.62,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.62,
          "net_price": 0,
          "normed_amount": 29.62,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "215593",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE BPMF BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 100,
      "termination_date": "2019-03-31",
      "total_amount": 700,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "200749-000",
      "date": "2017-11-29",
      "delivered_amount": 160,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.9
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "10051-1",
          "invoices": [
            {
              "amount": 30.08,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 30.08,
          "net_price": 0,
          "normed_amount": 30.08,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "10063-1",
          "invoices": [
            {
              "amount": 29.94,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 29.94,
          "net_price": 0,
          "normed_amount": 29.94,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 81
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            }
          ],
          "date": "2018-10-04",
          "delivery_number": "10102-1",
          "invoices": [
            {
              "amount": 28.16,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 28.16,
          "net_price": 0,
          "normed_amount": 28.16,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-05",
          "delivery_number": "10121-1",
          "invoices": [
            {
              "amount": 29.38,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 29.38,
          "net_price": 0,
          "normed_amount": 29.38,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-10-05",
          "delivery_number": "10123-1",
          "invoices": [
            {
              "amount": 29.94,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 29.94,
          "net_price": 0,
          "normed_amount": 29.94,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            }
          ],
          "date": "2018-10-08",
          "delivery_number": "10130-1",
          "invoices": [
            {
              "amount": 12.5,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 12.5,
          "net_price": 0,
          "normed_amount": 12.5,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "215592",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE FRUCTIDOR BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 22,
      "termination_date": "2019-03-31",
      "total_amount": 160,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7.273
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "200748-000",
      "date": "2017-11-29",
      "delivered_amount": 180,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.7
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8374-1",
          "invoices": [
            {
              "amount": 29.561,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 29.62,
          "net_price": 0,
          "normed_amount": 29.561,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.7
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8375-1",
          "invoices": [
            {
              "amount": 29.561,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 29.62,
          "net_price": 0,
          "normed_amount": 29.561,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8376-1",
          "invoices": [
            {
              "amount": 29.83,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 29.86,
          "net_price": 0,
          "normed_amount": 29.83,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.7
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8377-1",
          "invoices": [
            {
              "amount": 30.02,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 30.08,
          "net_price": 0,
          "normed_amount": 30.02,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.7
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.2
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8378-3",
          "invoices": [
            {
              "amount": 29.551,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 29.64,
          "net_price": 0,
          "normed_amount": 29.551,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 15.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8382-1",
          "invoices": [
            {
              "amount": 29.909,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 30.18,
          "net_price": 0,
          "normed_amount": 29.909,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 15.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8383-1",
          "invoices": [
            {
              "amount": 1.568,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 1.582,
          "net_price": 0,
          "normed_amount": 1.568,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "215591",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE OREGRAIN BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 25,
      "termination_date": "2019-03-31",
      "total_amount": 180,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7.2
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "164912-000",
      "date": "2017-07-13",
      "delivered_amount": 60,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.7
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29890-1",
          "invoices": [
            {
              "amount": 19.501,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 158.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 156
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 158.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.54,
          "net_price": 0,
          "normed_amount": 19.501,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29891-1",
          "invoices": [
            {
              "amount": 19.52,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 158.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 156
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 158.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.52,
          "net_price": 0,
          "normed_amount": 19.52,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.2
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29898-1",
          "invoices": [
            {
              "amount": 18.86,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 158.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 156
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 158.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 18.86,
          "net_price": 0,
          "normed_amount": 18.86,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29899-1",
          "invoices": [
            {
              "amount": 2.119,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 158.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 156
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 158.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 2.119,
          "net_price": 0,
          "normed_amount": 2.119,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "180530",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 156,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2019-02-28",
      "total_amount": 60,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": null,
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "EHC-000038-0",
      "date": "2018-09-20",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "0",
      "is_closed": false,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Echantillon Hors Contrat",
      "price": 0,
      "product_name": "BLE BPMF MEUNERIE",
      "quality_bonus": 0,
      "samples": [
        {
          "cell_varieties": [
            {
              "cell": "STAB",
              "variety": "AUCKLAND"
            }
          ],
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.1
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 74.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.2
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 433
            },
            {
              "code": "01",
              "label": "Humidité",
              "value": 11.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 75.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.8
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 436
            }
          ],
          "date": "2018-09-20",
          "number": "0",
          "quantity": 0
        }
      ],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": null,
      "total_amount": 0,
      "type": "EHC",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    }
  ]
}

Validation #511

Failure

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

  • The property '#/' contains additional properties ["response"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/' did not contain a required property of 'contracts' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultCellVariety_776": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "cell": {
          "type": "string"
        },
        "variety": {
          "type": "string"
        }
      },
      "required": [
        "cell",
        "variety"
      ],
      "title": "CellVariety - DefaultCellVariety",
      "type": "object"
    },
    "DefaultSample_778": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "cell_varieties": {
          "items": {
            "$ref": "#/definitions/DefaultCellVariety_776",
            "type": "object"
          },
          "type": "array"
        },
        "characteristics": {
          "items": {
            "$ref": "#/definitions/SampleCharacteristic_777",
            "type": "object"
          },
          "type": "array"
        },
        "date": {
          "description": "The ISO 8601 date format (%Y-%m-%d)",
          "format": "datetime",
          "type": "string"
        },
        "number": {
          "type": "string"
        },
        "quantity": {
          "minimum": 0,
          "type": "number"
        }
      },
      "required": [
        "cell_varieties",
        "characteristics",
        "date",
        "number",
        "quantity"
      ],
      "title": "Sample - DefaultSample",
      "type": "object"
    },
    "DefaultSettlement_560": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "amount": {
          "minimum": 0,
          "type": "number"
        },
        "date": {
          "format": "date",
          "type": "string"
        },
        "price": {
          "minimum": 0,
          "type": "number"
        },
        "status": {
          "description": "0 => nothing special, 1 => to validate",
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        }
      },
      "required": [
        "amount",
        "date",
        "price",
        "status"
      ],
      "title": "Settlement - DefaultSettlement",
      "type": "object"
    },
    "SampleCharacteristic_777": {
      "additionalProperties": false,
      "properties": {
        "code": {
          "type": "string"
        },
        "label": {
          "type": "string"
        },
        "value": {
          "minimum": 0,
          "type": "number"
        }
      },
      "required": [
        "code",
        "label",
        "value"
      ],
      "title": "Characteristic - SampleCharacteristic",
      "type": "object"
    },
    "minimalContract_770": {
      "additionalProperties": false,
      "properties": {
        "crm_id": {
          "description": "numContratOrigin",
          "type": "string"
        },
        "id": {
          "description": "numContratOrigin",
          "pattern": "\\d*",
          "type": "string"
        }
      },
      "required": [
        "crm_id",
        "id"
      ],
      "title": "Contract - minimalContract",
      "type": "object"
    }
  },
  "description": "Automatically generated (please edit me)",
  "properties": {
    "contracts": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "amount_to_deliver": {
            "description": "qteSoldeContrat",
            "minimum": 0,
            "type": "number"
          },
          "amount_to_deposit": {
            "minimum": 0,
            "type": "number"
          },
          "closing_date": {
            "description": "backend Data (settlement_price) : closingDate",
            "format": "date",
            "type": "string"
          },
          "commencement_date": {
            "description": "dateExecDebut",
            "format": "date",
            "type": "string"
          },
          "commodity": {
            "anyOf": [
              {
                "description": "codeContratTerme",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "commodity_id": {
            "anyOf": [
              {
                "description": "backend Data (settlement_price) : sflCommodity",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "contracts": {
            "items": {
              "$ref": "#/definitions/minimalContract_770",
              "type": "object"
            },
            "type": "array"
          },
          "crm_id": {
            "description": "numContratOrigin",
            "type": "string"
          },
          "date": {
            "description": "dateContrat",
            "format": "date",
            "type": "string"
          },
          "delivered_amount": {
            "description": "qteLivreContrat",
            "minimum": 0,
            "type": "number"
          },
          "deposited_amount": {
            "description": "qteLivreDepot",
            "minimum": 0,
            "type": "number"
          },
          "fiscal_year": {
            "description": "campagne",
            "maximum": 2018,
            "minimum": 2017,
            "type": "integer"
          },
          "gain": {
            "description": "gain",
            "type": "number"
          },
          "id": {
            "description": "numContratOrigin",
            "pattern": "\\d*",
            "type": "string"
          },
          "is_closed": {
            "description": "clotureContrat == 'OUI'",
            "type": "boolean"
          },
          "itk_feedback": {
            "anyOf": [
              {
                "description": "itkFeedback\r\nDirectement la chaîne à afficher. Valeurs possibles : pas de retour, retour papier ou retour electronique",
                "enum": [
                  "pas de retour",
                  "retour papier",
                  "retour electronique"
                ],
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "maturity": {
            "anyOf": [
              {
                "description": "echeanceMatif",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "maturity_id": {
            "anyOf": [
              {
                "description": "backend Data (settlement_price) : sflMaturity",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "minimum_price": {
            "description": "prixMini",
            "minimum": 0,
            "type": "number"
          },
          "name": {
            "description": "libContrat",
            "type": "string"
          },
          "price": {
            "description": "prixContrat",
            "minimum": 0,
            "type": "number"
          },
          "product_name": {
            "description": "libProduitContrat",
            "type": "string"
          },
          "quality_bonus": {
            "anyOf": [
              {
                "description": "qualityBonus",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "samples": {
            "items": {
              "$ref": "#/definitions/DefaultSample_778",
              "type": "object"
            },
            "type": "array"
          },
          "settlement_price": {
            "anyOf": [
              {
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "settlements": {
            "items": {
              "$ref": "#/definitions/DefaultSettlement_560",
              "type": "object"
            },
            "type": "array"
          },
          "special_bonus": {
            "anyOf": [
              {
                "description": "specialBonus",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "strike": {
            "description": "cotation",
            "type": "number"
          },
          "surface": {
            "anyOf": [
              {
                "description": "surface",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "termination_date": {
            "description": "dateExecFin",
            "format": "date",
            "type": "string"
          },
          "total_amount": {
            "description": "qteContrat",
            "minimum": 0,
            "type": "number"
          },
          "type": {
            "description": "typeContrat",
            "type": "string"
          },
          "variety": {
            "description": "codFamOpticollecte",
            "type": "string"
          },
          "variety_name": {
            "description": "libFamOpticollecte",
            "type": "string"
          },
          "variety_standard_deviation": {
            "anyOf": [
              {
                "description": "varietyStandardDeviation",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "warranty_cost": {
            "description": "primeOption",
            "minimum": 0,
            "type": "number"
          },
          "yield": {
            "anyOf": [
              {
                "description": "yield",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "required": [
          "amount_to_deliver",
          "amount_to_deposit",
          "closing_date",
          "commencement_date",
          "commodity",
          "commodity_id",
          "contracts",
          "crm_id",
          "date",
          "delivered_amount",
          "deposited_amount",
          "fiscal_year",
          "gain",
          "id",
          "is_closed",
          "itk_feedback",
          "maturity",
          "maturity_id",
          "name",
          "price",
          "product_name",
          "quality_bonus",
          "samples",
          "settlement_price",
          "settlements",
          "special_bonus",
          "strike",
          "surface",
          "termination_date",
          "total_amount",
          "type",
          "variety",
          "variety_name",
          "variety_standard_deviation",
          "yield"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "contracts"
  ],
  "title": "Contract - DefaultContract",
  "type": "object"
}

JSON instance

{
  "response": {
    "@xmlns": "http://ws.soufflet.com/souf_DWH-AG-COLLECTE_VERS_EXTRANET-AG-ContratsCollecte_Response",
    "codeReturn": "1",
    "numProcess": "34481679",
    "row": [
      {
        "campagne": "2018",
        "clotureContrat": "NON",
        "codFamOpticollecte": "BT",
        "contracts": [
          {
            "numContrat": "295019",
            "numContratOrigin": "281488-000"
          }
        ],
        "dateContrat": "20181218",
        "dateExecDebut": "20180901",
        "dateExecFin": "20190331",
        "libContrat": "Contrat d'Engagement",
        "libFamOpticollecte": "BLE TENDRE",
        "libProduitContrat": "BLE OREGRAIN BAGUEPI",
        "numContrat": "45359",
        "numContratOrigin": "39457-000",
        "qteContrat": "46.913",
        "qteLivreContrat": "0.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "2.000",
        "surface": "7.000",
        "typeContrat": "P01",
        "varietyStandardDeviation": "2.000",
        "yield": "6.702"
      },
      {
        "campagne": "2018",
        "clotureContrat": "NON",
        "codFamOpticollecte": "OH",
        "contracts": [
          {
            "numContrat": "218918",
            "numContratOrigin": "204245-000"
          }
        ],
        "dateContrat": "20171201",
        "dateExecDebut": "20180901",
        "dateExecFin": "20190329",
        "libContrat": "Contrat d'Engagement",
        "libFamOpticollecte": "ORGE HIVER",
        "libProduitContrat": "ESC ISOCEL",
        "numContrat": "38105",
        "numContratOrigin": "32214-000",
        "qteContrat": "1000.0",
        "qteLivreContrat": "0.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "300.000",
        "qualityBonus": "3.000",
        "surface": "150.000",
        "typeContrat": "P01",
        "varietyStandardDeviation": "0.000",
        "yield": "6.667"
      },
      {
        "campagne": "2018",
        "clotureContrat": "NON",
        "codFamOpticollecte": "COL",
        "contracts": [
          {
            "numContrat": "218957",
            "numContratOrigin": "204246-000"
          },
          {
            "numContrat": "264506",
            "numContratOrigin": "249780-000"
          }
        ],
        "dateContrat": "20171017",
        "dateExecDebut": "20180701",
        "dateExecFin": "20180831",
        "libContrat": "Contrat d'Engagement",
        "libFamOpticollecte": "COLZA",
        "libProduitContrat": "COLZA D HIVER",
        "numContrat": "35358",
        "numContratOrigin": "29485-000",
        "qteContrat": "700.0",
        "qteLivreContrat": "0.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "617.063",
        "qualityBonus": "0.000",
        "surface": "180.000",
        "typeContrat": "P01",
        "varietyStandardDeviation": "0.000",
        "yield": "3.889"
      },
      {
        "campagne": "2018",
        "clotureContrat": "OUI",
        "codFamOpticollecte": "BT",
        "contracts": [
          {
            "numContrat": "215592",
            "numContratOrigin": "200749-000"
          }
        ],
        "dateContrat": "20170912",
        "dateExecDebut": "20180901",
        "dateExecFin": "20190331",
        "libContrat": "Contrat d'Engagement",
        "libFamOpticollecte": "BLE TENDRE",
        "libProduitContrat": "BLE FRUCTIDOR BAGUEPI",
        "numContrat": "34697",
        "numContratOrigin": "28847-000",
        "qteContrat": "160.0",
        "qteLivreContrat": "0.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "2.000",
        "samples": [
          {
            "characteristics": [
              {
                "code": "01",
                "label": "Humidité",
                "value": "12.800"
              },
              {
                "code": "03",
                "label": "Poids Spécifique",
                "value": "78.500"
              },
              {
                "code": "05",
                "label": "Protéine",
                "value": "12.500"
              },
              {
                "code": "15",
                "label": "Hagberg",
                "value": "419.000"
              },
              {
                "code": "01",
                "label": "Humidité",
                "value": "12.800"
              },
              {
                "code": "03",
                "label": "Poids Spécifique",
                "value": "78.500"
              },
              {
                "code": "05",
                "label": "Protéine",
                "value": "12.500"
              },
              {
                "code": "15",
                "label": "Hagberg",
                "value": "419.000"
              }
            ],
            "date": "20180920",
            "number": "535090317515346",
            "quantity": "0.000"
          }
        ],
        "surface": "22.000",
        "typeContrat": "P01",
        "varietyStandardDeviation": "2.000",
        "yield": "7.273"
      },
      {
        "campagne": "2018",
        "clotureContrat": "OUI",
        "codFamOpticollecte": "BT",
        "contracts": [
          {
            "numContrat": "215591",
            "numContratOrigin": "200748-000"
          }
        ],
        "dateContrat": "20170912",
        "dateExecDebut": "20180901",
        "dateExecFin": "20190331",
        "libContrat": "Contrat d'Engagement",
        "libFamOpticollecte": "BLE TENDRE",
        "libProduitContrat": "BLE OREGRAIN BAGUEPI",
        "numContrat": "34696",
        "numContratOrigin": "28846-000",
        "qteContrat": "180.0",
        "qteLivreContrat": "0.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "2.000",
        "samples": [
          {
            "characteristics": [
              {
                "code": "01",
                "label": "Humidité",
                "value": "12.900"
              },
              {
                "code": "03",
                "label": "Poids Spécifique",
                "value": "79.600"
              },
              {
                "code": "05",
                "label": "Protéine",
                "value": "12.200"
              },
              {
                "code": "15",
                "label": "Hagberg",
                "value": "371.000"
              }
            ],
            "date": "20180920",
            "number": "535090317515342",
            "quantity": "0.000"
          }
        ],
        "surface": "25.000",
        "typeContrat": "P01",
        "varietyStandardDeviation": "3.000",
        "yield": "7.200"
      },
      {
        "campagne": "2018",
        "clotureContrat": "OUI",
        "codFamOpticollecte": "BT",
        "contracts": [
          {
            "numContrat": "215593",
            "numContratOrigin": "200750-000"
          },
          {
            "numContrat": "215593",
            "numContratOrigin": "200750-001"
          }
        ],
        "dateContrat": "20170912",
        "dateExecDebut": "20180901",
        "dateExecFin": "20190331",
        "libContrat": "Contrat d'Engagement",
        "libFamOpticollecte": "BLE TENDRE",
        "libProduitContrat": "BLE BPMF BAGUEPI",
        "numContrat": "34695",
        "numContratOrigin": "28845-000",
        "qteContrat": "700.0",
        "qteLivreContrat": "0.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "-68.136",
        "qualityBonus": "2.000",
        "samples": [
          {
            "cellVarieties": [
              {
                "cell": "PIN GAUCHE"
              }
            ],
            "characteristics": [
              {
                "code": "01",
                "label": "Humidité",
                "value": "12.300"
              },
              {
                "code": "03",
                "label": "Poids Spécifique",
                "value": "78.600"
              },
              {
                "code": "05",
                "label": "Protéine",
                "value": "12.500"
              },
              {
                "code": "15",
                "label": "Hagberg",
                "value": "303.000"
              },
              {
                "code": "01",
                "label": "Humidité",
                "value": "12.200"
              },
              {
                "code": "03",
                "label": "Poids Spécifique",
                "value": "80.000"
              },
              {
                "code": "05",
                "label": "Protéine",
                "value": "12.300"
              },
              {
                "code": "15",
                "label": "Hagberg",
                "value": "319.000"
              }
            ],
            "date": "20180920",
            "number": "535090317515336",
            "quantity": "0.000"
          }
        ],
        "surface": "100.000",
        "typeContrat": "P01",
        "varietyStandardDeviation": "0.000",
        "yield": "7.000"
      },
      {
        "campagne": "2018",
        "clotureContrat": "NON",
        "codFamOpticollecte": "BT",
        "cotation": "0.0",
        "dateContrat": "20190121",
        "dateExecDebut": "20190131",
        "dateExecFin": "20190330",
        "libContrat": "Contrat Prix Ferme",
        "libFamOpticollecte": "BLE TENDRE",
        "libProduitContrat": "BLE 1",
        "numContrat": "298280",
        "numContratOrigin": "284710-000",
        "prixContrat": "174.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "200.0",
        "qteLivreContrat": "0.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "200.000",
        "qualityBonus": "0.000",
        "surface": "0.000",
        "typeContrat": "APF",
        "varietyStandardDeviation": "0.000",
        "yield": "0.000"
      },
      {
        "campagne": "2018",
        "clotureContrat": "NON",
        "codFamOpticollecte": "OH",
        "cotation": "0.0",
        "dateContrat": "20190121",
        "dateExecDebut": "20190121",
        "dateExecFin": "20190415",
        "libContrat": "Contrat Prix Ferme",
        "libFamOpticollecte": "ORGE HIVER",
        "libProduitContrat": "ESC ISOCEL",
        "numContrat": "298279",
        "numContratOrigin": "284709-000",
        "prixContrat": "172.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "400.0",
        "qteLivreContrat": "0.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "400.000",
        "qualityBonus": "0.000",
        "surface": "0.000",
        "typeContrat": "APF",
        "varietyStandardDeviation": "0.000",
        "yield": "0.000"
      },
      {
        "campagne": "2018",
        "clotureContrat": "OUI",
        "codFamOpticollecte": "BT",
        "cotation": "0.0",
        "dateContrat": "20181218",
        "dateExecDebut": "20180901",
        "dateExecFin": "20190331",
        "delivery": [
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "15.100"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.800"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "76.100"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.200"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000286",
            "codeSiteDepot": "0285",
            "dateLivraison": "20181213",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE OREGRAIN BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181221",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269338",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "28.024"
              }
            ],
            "libelleArticle": "BLE OREGRAIN BAGUEPI",
            "libelleSite": "HERME",
            "natureStock": "0",
            "numeroBonLivraison": "8383",
            "numeroLigneBonLivraison": "4",
            "quantiteNette": "28.278",
            "quantiteNorme": "28.024"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "15.100"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.800"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.100"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.600"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000286",
            "codeSiteDepot": "0285",
            "dateLivraison": "20181213",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  },
                  {
                    "code": "C1",
                    "libelle": "Approche",
                    "valeur": "2.000"
                  }
                ],
                "libProduit": "BLE OREGRAIN BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181221",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269338",
                    "prixNet": "163.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "17.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "163.220"
                  }
                ],
                "qteFacture": "18.889"
              }
            ],
            "libelleArticle": "BLE OREGRAIN BAGUEPI",
            "libelleSite": "HERME",
            "natureStock": "0",
            "numeroBonLivraison": "8384",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "19.060",
            "quantiteNorme": "18.889"
          }
        ],
        "libContrat": "Contrat Optimum Sécurisé",
        "libFamOpticollecte": "BLE TENDRE",
        "libProduitContrat": "BLE OREGRAIN BAGUEPI",
        "numContrat": "295019",
        "numContratOrigin": "281488-000",
        "prixContrat": "0.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "46.913",
        "qteLivreContrat": "46.913",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "0.000",
        "surface": "7.000",
        "typeContrat": "APO",
        "varietyStandardDeviation": "0.000",
        "yield": "6.702"
      },
      {
        "campagne": "2018",
        "clotureContrat": "OUI",
        "codFamOpticollecte": "BT",
        "cotation": "0.0",
        "dateContrat": "20181214",
        "dateExecDebut": "20180701",
        "dateExecFin": "20180831",
        "delivery": [
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "11.800"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "74.800"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.500"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180709",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20190108",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269889",
                    "prixNet": "172.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "172.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "172.000"
                  }
                ],
                "qteFacture": "14.985"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "11963",
            "numeroLigneBonLivraison": "7",
            "quantiteNette": "15.060",
            "quantiteNorme": "14.985"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "11.900"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "75.500"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.800"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180710",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20190108",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269889",
                    "prixNet": "163.960"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "172.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.040"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "163.960"
                  }
                ],
                "qteFacture": "16.477"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "11998",
            "numeroLigneBonLivraison": "7",
            "quantiteNette": "16.560",
            "quantiteNorme": "16.477"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.300"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "76.700"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "11.700"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180710",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20190108",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269889",
                    "prixNet": "172.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "172.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "172.000"
                  }
                ],
                "qteFacture": "12.935"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "12011",
            "numeroLigneBonLivraison": "7",
            "quantiteNette": "13.000",
            "quantiteNorme": "12.935"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "14.400"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "76.500"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.400"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180710",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20190108",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269889",
                    "prixNet": "172.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "172.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "172.000"
                  }
                ],
                "qteFacture": "13.333"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "12020",
            "numeroLigneBonLivraison": "7",
            "quantiteNette": "13.400",
            "quantiteNorme": "13.333"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.300"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.200"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "11.700"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180710",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20190108",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269889",
                    "prixNet": "172.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "172.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "172.000"
                  }
                ],
                "qteFacture": "15.224"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "12023",
            "numeroLigneBonLivraison": "7",
            "quantiteNette": "15.300",
            "quantiteNorme": "15.224"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.800"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "75.400"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.600"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180710",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20190108",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269889",
                    "prixNet": "172.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "172.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "172.000"
                  }
                ],
                "qteFacture": "15.263"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "12033",
            "numeroLigneBonLivraison": "7",
            "quantiteNette": "15.340",
            "quantiteNorme": "15.263"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.900"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "76.800"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "11.600"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180710",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20190108",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269889",
                    "prixNet": "172.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "172.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "172.000"
                  }
                ],
                "qteFacture": "13.054"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "12038",
            "numeroLigneBonLivraison": "7",
            "quantiteNette": "13.120",
            "quantiteNorme": "13.054"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.200"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "76.100"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.700"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180710",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20190108",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269889",
                    "prixNet": "163.960"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "172.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.040"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "163.960"
                  }
                ],
                "qteFacture": "17.134"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "12044",
            "numeroLigneBonLivraison": "7",
            "quantiteNette": "17.220",
            "quantiteNorme": "17.134"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.600"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "76.900"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.200"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180710",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20190108",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269889",
                    "prixNet": "172.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "172.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "172.000"
                  }
                ],
                "qteFacture": "15.502"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "12052",
            "numeroLigneBonLivraison": "7",
            "quantiteNette": "15.580",
            "quantiteNorme": "15.502"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.300"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.500"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180710",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20190108",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269889",
                    "prixNet": "172.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "172.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "172.000"
                  }
                ],
                "qteFacture": "6.786"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "12073",
            "numeroLigneBonLivraison": "7",
            "quantiteNette": "6.820",
            "quantiteNorme": "6.786"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.600"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "76.900"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.000"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180711",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20190108",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269889",
                    "prixNet": "163.960"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "172.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.040"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "163.960"
                  }
                ],
                "qteFacture": "12.666"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "12166",
            "numeroLigneBonLivraison": "7",
            "quantiteNette": "12.729",
            "quantiteNorme": "12.666"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.600"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "76.900"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.000"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180711",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20190108",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269889",
                    "prixNet": "163.959"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "172.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.041"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "163.959"
                  }
                ],
                "qteFacture": "3.712"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "12166",
            "numeroLigneBonLivraison": "10",
            "quantiteNette": "3.731",
            "quantiteNorme": "3.712"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.500"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.600"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.200"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181002",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20190108",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269889",
                    "prixNet": "174.325"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "172.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "174.325"
                  }
                ],
                "qteFacture": "3.712"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29929",
            "numeroLigneBonLivraison": "17",
            "quantiteNette": "3.716",
            "quantiteNorme": "3.712"
          }
        ],
        "libContrat": "Contrat Prix Ferme",
        "libFamOpticollecte": "BLE TENDRE",
        "libProduitContrat": "BLE 1",
        "numContrat": "294660",
        "numContratOrigin": "281168-000",
        "prixContrat": "172.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "157.071",
        "qteLivreContrat": "160.783",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "0.000",
        "surface": "0.000",
        "typeContrat": "APF",
        "varietyStandardDeviation": "0.000",
        "yield": "0.000"
      },
      {
        "campagne": "2018",
        "clotureContrat": "OUI",
        "codFamOpticollecte": "MAI",
        "cotation": "0.0",
        "dateContrat": "20181120",
        "dateExecDebut": "20180915",
        "dateExecFin": "20181215",
        "delivery": [
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "20.500"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.600"
              },
              {
                "code": "12",
                "libelle": "Cassés",
                "valeur": "1.800"
              }
            ],
            "codeArticle": "000621",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181013",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "01",
                    "libelle": "Humidité",
                    "valeur": "-15.836"
                  }
                ],
                "libProduit": "MAIS",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181126",
                    "libTypeValo": "Décompte",
                    "numFacture": "16265189",
                    "prixNet": "132.489"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "146.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "-15.836"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "132.489"
                  }
                ],
                "qteFacture": "17.602"
              }
            ],
            "libelleArticle": "MAIS",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "30142",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "18.960",
            "quantiteNorme": "17.602"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "20.400"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.600"
              },
              {
                "code": "12",
                "libelle": "Cassés",
                "valeur": "1.900"
              }
            ],
            "codeArticle": "000621",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181013",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "01",
                    "libelle": "Humidité",
                    "valeur": "-15.836"
                  }
                ],
                "libProduit": "MAIS",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181126",
                    "libTypeValo": "Décompte",
                    "numFacture": "16265189",
                    "prixNet": "132.489"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "146.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "-15.836"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "132.489"
                  }
                ],
                "qteFacture": "17.212"
              }
            ],
            "libelleArticle": "MAIS",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "30143",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "18.540",
            "quantiteNorme": "17.212"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "21.000"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.700"
              },
              {
                "code": "12",
                "libelle": "Cassés",
                "valeur": "1.800"
              }
            ],
            "codeArticle": "000621",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181015",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "01",
                    "libelle": "Humidité",
                    "valeur": "-16.469"
                  }
                ],
                "libProduit": "MAIS",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181126",
                    "libTypeValo": "Décompte",
                    "numFacture": "16265189",
                    "prixNet": "131.856"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "146.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "-16.469"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "131.856"
                  }
                ],
                "qteFacture": "15.389"
              }
            ],
            "libelleArticle": "MAIS",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "30148",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "16.700",
            "quantiteNorme": "15.389"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "19.400"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.700"
              },
              {
                "code": "12",
                "libelle": "Cassés",
                "valeur": "2.000"
              }
            ],
            "codeArticle": "000621",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181015",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "01",
                    "libelle": "Humidité",
                    "valeur": "-13.555"
                  }
                ],
                "libProduit": "MAIS",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181126",
                    "libTypeValo": "Décompte",
                    "numFacture": "16265189",
                    "prixNet": "134.770"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "146.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "-13.555"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "134.770"
                  }
                ],
                "qteFacture": "7.966"
              }
            ],
            "libelleArticle": "MAIS",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "30155",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "8.480",
            "quantiteNorme": "7.966"
          }
        ],
        "libContrat": "Contrat Prix Ferme",
        "libFamOpticollecte": "MAIS",
        "libProduitContrat": "MAIS",
        "numContrat": "288597",
        "numContratOrigin": "275016-000",
        "prixContrat": "146.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "58.169",
        "qteLivreContrat": "58.169",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "0.000",
        "surface": "0.000",
        "typeContrat": "APF",
        "varietyStandardDeviation": "0.000",
        "yield": "0.000"
      },
      {
        "campagne": "2018",
        "clotureContrat": "OUI",
        "codFamOpticollecte": "COL",
        "cotation": "0.0",
        "dateContrat": "20181110",
        "dateExecDebut": "20181115",
        "dateExecFin": "20190131",
        "delivery": [
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "7.500"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "1.700"
              }
            ],
            "codeArticle": "000129",
            "codeSiteDepot": "0003",
            "dateLivraison": "20181115",
            "factures": [
              {
                "libProduit": "COLZA D HIVER",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181126",
                    "libTypeValo": "Décompte",
                    "numFacture": "16265188",
                    "prixNet": "377.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "377.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "377.000"
                  }
                ],
                "qteFacture": "7.626"
              }
            ],
            "libelleArticle": "COLZA D HIVER",
            "libelleSite": "GARE NOGENT S SEINE",
            "natureStock": "0",
            "numeroBonLivraison": "39051",
            "numeroLigneBonLivraison": "4",
            "quantiteNette": "7.680",
            "quantiteNorme": "7.626"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "6.200"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "1.500"
              }
            ],
            "codeArticle": "000129",
            "codeSiteDepot": "0003",
            "dateLivraison": "20181115",
            "factures": [
              {
                "libProduit": "COLZA D HIVER",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181126",
                    "libTypeValo": "Décompte",
                    "numFacture": "16265188",
                    "prixNet": "377.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "377.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "377.000"
                  }
                ],
                "qteFacture": "29.969"
              }
            ],
            "libelleArticle": "COLZA D HIVER",
            "libelleSite": "GARE NOGENT S SEINE",
            "natureStock": "0",
            "numeroBonLivraison": "39054",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "30.120",
            "quantiteNorme": "29.969"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "6.600"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "1.400"
              }
            ],
            "codeArticle": "000129",
            "codeSiteDepot": "0003",
            "dateLivraison": "20181115",
            "factures": [
              {
                "libProduit": "COLZA D HIVER",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181126",
                    "libTypeValo": "Décompte",
                    "numFacture": "16265188",
                    "prixNet": "377.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "377.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "377.000"
                  }
                ],
                "qteFacture": "30.239"
              }
            ],
            "libelleArticle": "COLZA D HIVER",
            "libelleSite": "GARE NOGENT S SEINE",
            "natureStock": "0",
            "numeroBonLivraison": "39055",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "30.360",
            "quantiteNorme": "30.239"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "6.100"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "1.600"
              }
            ],
            "codeArticle": "000129",
            "codeSiteDepot": "0003",
            "dateLivraison": "20181115",
            "factures": [
              {
                "libProduit": "COLZA D HIVER",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181126",
                    "libTypeValo": "Décompte",
                    "numFacture": "16265188",
                    "prixNet": "377.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "377.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "377.000"
                  }
                ],
                "qteFacture": "29.383"
              }
            ],
            "libelleArticle": "COLZA D HIVER",
            "libelleSite": "GARE NOGENT S SEINE",
            "natureStock": "0",
            "numeroBonLivraison": "39057",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.560",
            "quantiteNorme": "29.383"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "6.300"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "1.500"
              }
            ],
            "codeArticle": "000129",
            "codeSiteDepot": "0003",
            "dateLivraison": "20181115",
            "factures": [
              {
                "libProduit": "COLZA D HIVER",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181126",
                    "libTypeValo": "Décompte",
                    "numFacture": "16265188",
                    "prixNet": "377.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "377.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "377.000"
                  }
                ],
                "qteFacture": "30.268"
              }
            ],
            "libelleArticle": "COLZA D HIVER",
            "libelleSite": "GARE NOGENT S SEINE",
            "natureStock": "0",
            "numeroBonLivraison": "39058",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "30.420",
            "quantiteNorme": "30.268"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "7.500"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "1.600"
              }
            ],
            "codeArticle": "000129",
            "codeSiteDepot": "0003",
            "dateLivraison": "20181116",
            "factures": [
              {
                "libProduit": "COLZA D HIVER",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181210",
                    "libTypeValo": "Décompte",
                    "numFacture": "16267370",
                    "prixNet": "377.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "377.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "377.000"
                  }
                ],
                "qteFacture": "22.515"
              }
            ],
            "libelleArticle": "COLZA D HIVER",
            "libelleSite": "GARE NOGENT S SEINE",
            "natureStock": "0",
            "numeroBonLivraison": "39091",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "22.651",
            "quantiteNorme": "22.515"
          }
        ],
        "libContrat": "Contrat Prix Ferme",
        "libFamOpticollecte": "COLZA",
        "libProduitContrat": "COLZA D HIVER",
        "numContrat": "284968",
        "numContratOrigin": "271279-000",
        "prixContrat": "377.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "150.0",
        "qteLivreContrat": "150.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "0.000",
        "surface": "0.000",
        "typeContrat": "APF",
        "varietyStandardDeviation": "0.000",
        "yield": "0.000"
      },
      {
        "campagne": "2018",
        "clotureContrat": "OUI",
        "codFamOpticollecte": "TOU",
        "cotation": "0.0",
        "dateContrat": "20180920",
        "dateExecDebut": "20180915",
        "dateExecFin": "20181130",
        "delivery": [
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "9.000"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "4.800"
              }
            ],
            "codeArticle": "000311",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180904",
            "factures": [
              {
                "libProduit": "TOURNESOL OLEIQUE",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246994",
                    "prixNet": "341.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "341.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "341.000"
                  }
                ],
                "qteFacture": "7.619"
              }
            ],
            "libelleArticle": "TOURNESOL OLEIQUE",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29242",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "7.920",
            "quantiteNorme": "7.619"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "6.800"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "3.000"
              }
            ],
            "codeArticle": "000311",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180910",
            "factures": [
              {
                "libProduit": "TOURNESOL OLEIQUE",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246994",
                    "prixNet": "341.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "341.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "341.000"
                  }
                ],
                "qteFacture": "9.232"
              }
            ],
            "libelleArticle": "TOURNESOL OLEIQUE",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29360",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "9.420",
            "quantiteNorme": "9.232"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "7.200"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "2.400"
              }
            ],
            "codeArticle": "000311",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180910",
            "factures": [
              {
                "libProduit": "TOURNESOL OLEIQUE",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246994",
                    "prixNet": "341.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "341.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "341.000"
                  }
                ],
                "qteFacture": "9.742"
              }
            ],
            "libelleArticle": "TOURNESOL OLEIQUE",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29361",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "9.880",
            "quantiteNorme": "9.742"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "5.100"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "4.800"
              }
            ],
            "codeArticle": "000311",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180911",
            "factures": [
              {
                "libProduit": "TOURNESOL OLEIQUE",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246994",
                    "prixNet": "341.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "341.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "341.000"
                  }
                ],
                "qteFacture": "9.678"
              }
            ],
            "libelleArticle": "TOURNESOL OLEIQUE",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29393",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "10.060",
            "quantiteNorme": "9.678"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "6.000"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "5.000"
              }
            ],
            "codeArticle": "000311",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180911",
            "factures": [
              {
                "libProduit": "TOURNESOL OLEIQUE",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246994",
                    "prixNet": "341.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "341.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "341.000"
                  }
                ],
                "qteFacture": "9.965"
              }
            ],
            "libelleArticle": "TOURNESOL OLEIQUE",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29394",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "10.380",
            "quantiteNorme": "9.965"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "5.400"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "3.600"
              }
            ],
            "codeArticle": "000311",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180911",
            "factures": [
              {
                "libProduit": "TOURNESOL OLEIQUE",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246994",
                    "prixNet": "341.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "341.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "341.000"
                  }
                ],
                "qteFacture": "5.376"
              }
            ],
            "libelleArticle": "TOURNESOL OLEIQUE",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29410",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "5.520",
            "quantiteNorme": "5.376"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "6.400"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "3.600"
              }
            ],
            "codeArticle": "000311",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180912",
            "factures": [
              {
                "libProduit": "TOURNESOL OLEIQUE",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246994",
                    "prixNet": "341.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "341.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "341.000"
                  }
                ],
                "qteFacture": "9.721"
              }
            ],
            "libelleArticle": "TOURNESOL OLEIQUE",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29432",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "9.980",
            "quantiteNorme": "9.721"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "6.000"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "4.000"
              }
            ],
            "codeArticle": "000311",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180912",
            "factures": [
              {
                "libProduit": "TOURNESOL OLEIQUE",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246994",
                    "prixNet": "341.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "341.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "341.000"
                  }
                ],
                "qteFacture": "10.204"
              }
            ],
            "libelleArticle": "TOURNESOL OLEIQUE",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29433",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "10.520",
            "quantiteNorme": "10.204"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "7.500"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "3.600"
              }
            ],
            "codeArticle": "000311",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180912",
            "factures": [
              {
                "libProduit": "TOURNESOL OLEIQUE",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246994",
                    "prixNet": "341.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "341.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "341.000"
                  }
                ],
                "qteFacture": "9.759"
              }
            ],
            "libelleArticle": "TOURNESOL OLEIQUE",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29450",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "10.020",
            "quantiteNorme": "9.759"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "6.800"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "4.000"
              }
            ],
            "codeArticle": "000311",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180912",
            "factures": [
              {
                "libProduit": "TOURNESOL OLEIQUE",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246994",
                    "prixNet": "341.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "341.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "341.000"
                  }
                ],
                "qteFacture": "9.933"
              }
            ],
            "libelleArticle": "TOURNESOL OLEIQUE",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29459",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "10.240",
            "quantiteNorme": "9.933"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "6.100"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "4.000"
              }
            ],
            "codeArticle": "000311",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180913",
            "factures": [
              {
                "libProduit": "TOURNESOL OLEIQUE",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246994",
                    "prixNet": "341.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "341.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "341.000"
                  }
                ],
                "qteFacture": "9.273"
              }
            ],
            "libelleArticle": "TOURNESOL OLEIQUE",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29474",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "9.560",
            "quantiteNorme": "9.273"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "7.000"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "5.600"
              }
            ],
            "codeArticle": "000311",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180913",
            "factures": [
              {
                "libProduit": "TOURNESOL OLEIQUE",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246994",
                    "prixNet": "341.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "341.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "341.000"
                  }
                ],
                "qteFacture": "6.964"
              }
            ],
            "libelleArticle": "TOURNESOL OLEIQUE",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29484",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "7.300",
            "quantiteNorme": "6.964"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "7.100"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "4.600"
              }
            ],
            "codeArticle": "000311",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180914",
            "factures": [
              {
                "libProduit": "TOURNESOL OLEIQUE",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246994",
                    "prixNet": "341.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "341.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "341.000"
                  }
                ],
                "qteFacture": "8.657"
              }
            ],
            "libelleArticle": "TOURNESOL OLEIQUE",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29516",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "8.980",
            "quantiteNorme": "8.657"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "9.000"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "6.000"
              }
            ],
            "codeArticle": "000311",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180917",
            "factures": [
              {
                "libProduit": "TOURNESOL OLEIQUE",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246994",
                    "prixNet": "341.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "341.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "341.000"
                  }
                ],
                "qteFacture": "9.614"
              }
            ],
            "libelleArticle": "TOURNESOL OLEIQUE",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29533",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "10.120",
            "quantiteNorme": "9.614"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "8.700"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "5.200"
              }
            ],
            "codeArticle": "000311",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180917",
            "factures": [
              {
                "libProduit": "TOURNESOL OLEIQUE",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246994",
                    "prixNet": "341.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "341.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "341.000"
                  }
                ],
                "qteFacture": "8.603"
              }
            ],
            "libelleArticle": "TOURNESOL OLEIQUE",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29534",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "8.980",
            "quantiteNorme": "8.603"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "8.900"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "7.600"
              }
            ],
            "codeArticle": "000311",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180917",
            "factures": [
              {
                "libProduit": "TOURNESOL OLEIQUE",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246994",
                    "prixNet": "341.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "341.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "341.000"
                  }
                ],
                "qteFacture": "2.466"
              }
            ],
            "libelleArticle": "TOURNESOL OLEIQUE",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29543",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "2.640",
            "quantiteNorme": "2.466"
          }
        ],
        "libContrat": "Contrat Prix Ferme",
        "libFamOpticollecte": "TOURNESOL",
        "libProduitContrat": "TOURNESOL OLEIQUE",
        "numContrat": "276888",
        "numContratOrigin": "262954-000",
        "prixContrat": "341.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "136.806",
        "qteLivreContrat": "136.806",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "0.000",
        "surface": "0.000",
        "typeContrat": "APF",
        "varietyStandardDeviation": "0.000",
        "yield": "0.000"
      },
      {
        "campagne": "2018",
        "clotureContrat": "NON",
        "codFamOpticollecte": "OH",
        "cotation": "0.0",
        "dateContrat": "20181022",
        "dateExecDebut": "20180901",
        "dateExecFin": "20190228",
        "delivery": [
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.900"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "65.800"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "11.000"
              }
            ],
            "codeArticle": "000245",
            "codeSiteDepot": "0193",
            "dateLivraison": "20190111",
            "factures": [
              {
                "libProduit": "ORGE FOURRAGERE",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20190125",
                    "libTypeValo": "Décompte",
                    "numFacture": "16271922",
                    "prixNet": "185.115"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "180.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "5.115"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "185.115"
                  }
                ],
                "qteFacture": "32.580"
              }
            ],
            "libelleArticle": "ORGE FOURRAGERE",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "31047",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "32.580",
            "quantiteNorme": "32.580"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.400"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "66.200"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "11.500"
              }
            ],
            "codeArticle": "000245",
            "codeSiteDepot": "0193",
            "dateLivraison": "20190111",
            "factures": [
              {
                "libProduit": "ORGE FOURRAGERE",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20190125",
                    "libTypeValo": "Décompte",
                    "numFacture": "16271922",
                    "prixNet": "185.115"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "180.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "5.115"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "185.115"
                  }
                ],
                "qteFacture": "28.860"
              }
            ],
            "libelleArticle": "ORGE FOURRAGERE",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "31052",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "28.860",
            "quantiteNorme": "28.860"
          }
        ],
        "libContrat": "Contrat Prix Ferme",
        "libFamOpticollecte": "ORGE HIVER",
        "libProduitContrat": "ORGE FOURRAGERE",
        "numContrat": "265119",
        "numContratOrigin": "249779-001",
        "prixContrat": "180.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "100.0",
        "qteLivreContrat": "61.440",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "38.560",
        "qualityBonus": "0.000",
        "surface": "0.000",
        "typeContrat": "APF",
        "varietyStandardDeviation": "0.000",
        "yield": "0.000"
      },
      {
        "campagne": "2018",
        "clotureContrat": "OUI",
        "codFamOpticollecte": "COL",
        "cotation": "0.0",
        "dateContrat": "20180803",
        "dateExecDebut": "20180901",
        "dateExecFin": "20190301",
        "delivery": [
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "7.000"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "1.200"
              }
            ],
            "codeArticle": "000129",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181108",
            "factures": [
              {
                "libProduit": "COLZA D HIVER",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181126",
                    "libTypeValo": "Décompte",
                    "numFacture": "16265188",
                    "prixNet": "370.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "370.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "370.000"
                  }
                ],
                "qteFacture": "16.227"
              }
            ],
            "libelleArticle": "COLZA D HIVER",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "30438",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "16.260",
            "quantiteNorme": "16.227"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "7.100"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "1.600"
              }
            ],
            "codeArticle": "000129",
            "codeSiteDepot": "0003",
            "dateLivraison": "20181114",
            "factures": [
              {
                "libProduit": "COLZA D HIVER",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181126",
                    "libTypeValo": "Décompte",
                    "numFacture": "16265188",
                    "prixNet": "370.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "370.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "370.000"
                  }
                ],
                "qteFacture": "29.164"
              }
            ],
            "libelleArticle": "COLZA D HIVER",
            "libelleSite": "GARE NOGENT S SEINE",
            "natureStock": "0",
            "numeroBonLivraison": "39010",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.340",
            "quantiteNorme": "29.164"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "7.200"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "1.700"
              }
            ],
            "codeArticle": "000129",
            "codeSiteDepot": "0003",
            "dateLivraison": "20181115",
            "factures": [
              {
                "libProduit": "COLZA D HIVER",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181126",
                    "libTypeValo": "Décompte",
                    "numFacture": "16265188",
                    "prixNet": "370.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "370.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "370.000"
                  }
                ],
                "qteFacture": "30.326"
              }
            ],
            "libelleArticle": "COLZA D HIVER",
            "libelleSite": "GARE NOGENT S SEINE",
            "natureStock": "0",
            "numeroBonLivraison": "39041",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "30.540",
            "quantiteNorme": "30.326"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "7.500"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "1.700"
              }
            ],
            "codeArticle": "000129",
            "codeSiteDepot": "0003",
            "dateLivraison": "20181115",
            "factures": [
              {
                "libProduit": "COLZA D HIVER",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181126",
                    "libTypeValo": "Décompte",
                    "numFacture": "16265188",
                    "prixNet": "370.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "370.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "370.000"
                  }
                ],
                "qteFacture": "22.283"
              }
            ],
            "libelleArticle": "COLZA D HIVER",
            "libelleSite": "GARE NOGENT S SEINE",
            "natureStock": "0",
            "numeroBonLivraison": "39051",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "22.440",
            "quantiteNorme": "22.283"
          }
        ],
        "libContrat": "Contrat Prix Ferme",
        "libFamOpticollecte": "COLZA",
        "libProduitContrat": "COLZA D HIVER",
        "numContrat": "264507",
        "numContratOrigin": "249781-000",
        "prixContrat": "370.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "98.0",
        "qteLivreContrat": "98.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "0.000",
        "surface": "0.000",
        "typeContrat": "APF",
        "varietyStandardDeviation": "0.000",
        "yield": "0.000"
      },
      {
        "campagne": "2018",
        "clotureContrat": "OUI",
        "codFamOpticollecte": "COL",
        "cotation": "0.0",
        "dateContrat": "20180803",
        "dateExecDebut": "20180701",
        "dateExecFin": "20180831",
        "delivery": [
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "6.200"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "1.600"
              }
            ],
            "codeArticle": "000129",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180709",
            "factures": [
              {
                "libProduit": "COLZA D HIVER",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246993",
                    "prixNet": "364.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "364.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "364.000"
                  }
                ],
                "qteFacture": "3.856"
              }
            ],
            "libelleArticle": "COLZA D HIVER",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "11870",
            "numeroLigneBonLivraison": "4",
            "quantiteNette": "3.879",
            "quantiteNorme": "3.856"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "8.900"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000129",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180709",
            "factures": [
              {
                "libProduit": "COLZA D HIVER",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246993",
                    "prixNet": "356.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "364.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "356.000"
                  }
                ],
                "qteFacture": "13.060"
              }
            ],
            "libelleArticle": "COLZA D HIVER",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "11875",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "13.060",
            "quantiteNorme": "13.060"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "8.900"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "1.300"
              }
            ],
            "codeArticle": "000129",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180709",
            "factures": [
              {
                "libProduit": "COLZA D HIVER",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246993",
                    "prixNet": "364.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "364.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "364.000"
                  }
                ],
                "qteFacture": "11.166"
              }
            ],
            "libelleArticle": "COLZA D HIVER",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "11878",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "11.200",
            "quantiteNorme": "11.166"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "8.200"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "2.200"
              }
            ],
            "codeArticle": "000129",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180709",
            "factures": [
              {
                "libProduit": "COLZA D HIVER",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246993",
                    "prixNet": "355.903"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "364.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.097"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "355.903"
                  }
                ],
                "qteFacture": "12.963"
              }
            ],
            "libelleArticle": "COLZA D HIVER",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "11890",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "13.120",
            "quantiteNorme": "12.963"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "6.700"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "1.400"
              }
            ],
            "codeArticle": "000129",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180709",
            "factures": [
              {
                "libProduit": "COLZA D HIVER",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246993",
                    "prixNet": "355.968"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "364.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.032"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "355.968"
                  }
                ],
                "qteFacture": "11.892"
              }
            ],
            "libelleArticle": "COLZA D HIVER",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "27664",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "11.940",
            "quantiteNorme": "11.892"
          }
        ],
        "libContrat": "Contrat Prix Ferme",
        "libFamOpticollecte": "COLZA",
        "libProduitContrat": "COLZA D HIVER",
        "numContrat": "264506",
        "numContratOrigin": "249780-000",
        "prixContrat": "364.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "52.937",
        "qteLivreContrat": "52.937",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "0.000",
        "surface": "13.610",
        "typeContrat": "APF",
        "varietyStandardDeviation": "0.000",
        "yield": "3.889"
      },
      {
        "campagne": "2018",
        "clotureContrat": "OUI",
        "codFamOpticollecte": "BT",
        "cotation": "0.0",
        "dateContrat": "20180803",
        "dateExecDebut": "20180901",
        "dateExecFin": "20190330",
        "delivery": [
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "11.900"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.700"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181001",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "D1",
                    "libelle": "Déd. Direct Ferme",
                    "valeur": "-2.000"
                  }
                ],
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "187.325"
                  },
                  {
                    "codeTypeValo": "COM",
                    "dateFacture": "20181102",
                    "libTypeValo": "Complément Prix",
                    "numFacture": "16262428",
                    "prixNet": "2.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "187.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "-2.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "2.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "189.325"
                  }
                ],
                "qteFacture": "17.801"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29899",
            "numeroLigneBonLivraison": "4",
            "quantiteNette": "17.801",
            "quantiteNorme": "17.801"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.400"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "76.700"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.700"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181002",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "D1",
                    "libelle": "Déd. Direct Ferme",
                    "valeur": "-2.000"
                  }
                ],
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "187.325"
                  },
                  {
                    "codeTypeValo": "COM",
                    "dateFacture": "20181102",
                    "libTypeValo": "Complément Prix",
                    "numFacture": "16262428",
                    "prixNet": "2.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "187.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "-2.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "2.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "189.325"
                  }
                ],
                "qteFacture": "19.160"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29912",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "19.160",
            "quantiteNorme": "19.160"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.400"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "74.700"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.900"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181002",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "D1",
                    "libelle": "Déd. Direct Ferme",
                    "valeur": "-2.000"
                  }
                ],
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "187.325"
                  },
                  {
                    "codeTypeValo": "COM",
                    "dateFacture": "20181102",
                    "libTypeValo": "Complément Prix",
                    "numFacture": "16262428",
                    "prixNet": "2.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "187.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "-2.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "2.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "189.325"
                  }
                ],
                "qteFacture": "19.120"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29913",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "19.120",
            "quantiteNorme": "19.120"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.600"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "75.400"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.800"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181002",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "D1",
                    "libelle": "Déd. Direct Ferme",
                    "valeur": "-2.000"
                  }
                ],
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "187.325"
                  },
                  {
                    "codeTypeValo": "COM",
                    "dateFacture": "20181102",
                    "libTypeValo": "Complément Prix",
                    "numFacture": "16262428",
                    "prixNet": "2.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "187.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "-2.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "2.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "189.325"
                  }
                ],
                "qteFacture": "11.840"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29915",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "11.840",
            "quantiteNorme": "11.840"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.000"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.500"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.200"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181002",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "D1",
                    "libelle": "Déd. Direct Ferme",
                    "valeur": "-2.000"
                  }
                ],
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "187.325"
                  },
                  {
                    "codeTypeValo": "COM",
                    "dateFacture": "20181102",
                    "libTypeValo": "Complément Prix",
                    "numFacture": "16262428",
                    "prixNet": "2.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "187.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "-2.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "2.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "189.325"
                  }
                ],
                "qteFacture": "17.079"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29918",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "17.079",
            "quantiteNorme": "17.079"
          }
        ],
        "libContrat": "Contrat Prix Ferme",
        "libFamOpticollecte": "BLE TENDRE",
        "libProduitContrat": "BLE 1",
        "numContrat": "264111",
        "numContratOrigin": "249749-000",
        "prixContrat": "187.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "85.0",
        "qteLivreContrat": "85.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "0.000",
        "surface": "0.000",
        "typeContrat": "APF",
        "varietyStandardDeviation": "0.000",
        "yield": "0.000"
      },
      {
        "campagne": "2018",
        "clotureContrat": "OUI",
        "codFamOpticollecte": "OH",
        "cotation": "0.0",
        "dateContrat": "20180727",
        "dateExecDebut": "20180701",
        "dateExecFin": "20180831",
        "delivery": [
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "11.500"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.600"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "68.300"
              },
              {
                "code": "04",
                "libelle": "Calibrage",
                "valeur": "88.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "9.500"
              }
            ],
            "codeArticle": "000172",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180627",
            "factures": [
              {
                "libProduit": "ESC ISOCEL",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246992",
                    "prixNet": "166.930"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "166.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "0.930"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "166.930"
                  }
                ],
                "qteFacture": "15.360"
              },
              {
                "libProduit": "ORGETTES 6RH",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246992",
                    "prixNet": "120.000"
                  },
                  {
                    "codeTypeValo": "COM",
                    "dateFacture": "20181022",
                    "libTypeValo": "Complément Prix",
                    "numFacture": "16255481",
                    "prixNet": "15.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "135.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "135.000"
                  }
                ],
                "qteFacture": "2.095"
              }
            ],
            "libelleArticle": "ESC ISOCEL",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "11344",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "17.560",
            "quantiteNorme": "17.455"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "11.300"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "67.300"
              },
              {
                "code": "04",
                "libelle": "Calibrage",
                "valeur": "88.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "9.800"
              }
            ],
            "codeArticle": "000172",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180627",
            "factures": [
              {
                "libProduit": "ESC ISOCEL",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246992",
                    "prixNet": "158.889"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "166.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.041"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "0.930"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "158.889"
                  }
                ],
                "qteFacture": "12.398"
              },
              {
                "libProduit": "ORGETTES 6RH",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246992",
                    "prixNet": "111.963"
                  },
                  {
                    "codeTypeValo": "COM",
                    "dateFacture": "20181022",
                    "libTypeValo": "Complément Prix",
                    "numFacture": "16255481",
                    "prixNet": "15.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "135.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.037"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "126.963"
                  }
                ],
                "qteFacture": "1.691"
              }
            ],
            "libelleArticle": "ESC ISOCEL",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "11352",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "14.160",
            "quantiteNorme": "14.089"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "10.900"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "68.100"
              },
              {
                "code": "04",
                "libelle": "Calibrage",
                "valeur": "90.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "10.000"
              }
            ],
            "codeArticle": "000172",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180627",
            "factures": [
              {
                "libProduit": "ESC ISOCEL",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246992",
                    "prixNet": "158.890"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "166.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.040"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "0.930"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "158.890"
                  }
                ],
                "qteFacture": "14.010"
              }
            ],
            "libelleArticle": "ESC ISOCEL",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "11360",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "14.080",
            "quantiteNorme": "14.010"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.300"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "2.100"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "64.300"
              },
              {
                "code": "04",
                "libelle": "Calibrage",
                "valeur": "84.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "10.900"
              }
            ],
            "codeArticle": "000172",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180628",
            "factures": [
              {
                "libProduit": "ESC ISOCEL",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246992",
                    "prixNet": "166.930"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "166.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "0.930"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "166.930"
                  }
                ],
                "qteFacture": "13.471"
              },
              {
                "libProduit": "ORGETTES 6RH",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246992",
                    "prixNet": "120.000"
                  },
                  {
                    "codeTypeValo": "COM",
                    "dateFacture": "20181022",
                    "libTypeValo": "Complément Prix",
                    "numFacture": "16255481",
                    "prixNet": "15.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "135.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "135.000"
                  }
                ],
                "qteFacture": "2.566"
              }
            ],
            "libelleArticle": "ESC ISOCEL",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "11387",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "16.380",
            "quantiteNorme": "16.037"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "10.300"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.400"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "64.600"
              },
              {
                "code": "04",
                "libelle": "Calibrage",
                "valeur": "87.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "9.200"
              }
            ],
            "codeArticle": "000172",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180628",
            "factures": [
              {
                "libProduit": "ESC ISOCEL",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246992",
                    "prixNet": "158.890"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "166.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.040"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "0.930"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "158.890"
                  }
                ],
                "qteFacture": "11.808"
              },
              {
                "libProduit": "ORGETTES 6RH",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246992",
                    "prixNet": "111.961"
                  },
                  {
                    "codeTypeValo": "COM",
                    "dateFacture": "20181022",
                    "libTypeValo": "Complément Prix",
                    "numFacture": "16255481",
                    "prixNet": "15.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "135.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.039"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "126.961"
                  }
                ],
                "qteFacture": "1.764"
              }
            ],
            "libelleArticle": "ESC ISOCEL",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "11392",
            "numeroLigneBonLivraison": "5",
            "quantiteNette": "13.640",
            "quantiteNorme": "13.572"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.200"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.400"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "68.500"
              },
              {
                "code": "04",
                "libelle": "Calibrage",
                "valeur": "88.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "11.000"
              }
            ],
            "codeArticle": "000172",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180628",
            "factures": [
              {
                "libProduit": "ESC ISOCEL",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246992",
                    "prixNet": "158.890"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "166.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.040"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "0.930"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "158.890"
                  }
                ],
                "qteFacture": "11.838"
              },
              {
                "libProduit": "ORGETTES 6RH",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246992",
                    "prixNet": "111.958"
                  },
                  {
                    "codeTypeValo": "COM",
                    "dateFacture": "20181022",
                    "libTypeValo": "Complément Prix",
                    "numFacture": "16255481",
                    "prixNet": "15.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "135.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.042"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "126.958"
                  }
                ],
                "qteFacture": "1.614"
              }
            ],
            "libelleArticle": "ESC ISOCEL",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "11401",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "13.520",
            "quantiteNorme": "13.452"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.200"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "1.800"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "63.500"
              },
              {
                "code": "04",
                "libelle": "Calibrage",
                "valeur": "87.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "11.600"
              }
            ],
            "codeArticle": "000172",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180628",
            "factures": [
              {
                "libProduit": "ESC ISOCEL",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246992",
                    "prixNet": "158.784"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "166.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.146"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "0.930"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "158.784"
                  }
                ],
                "qteFacture": "10.680"
              },
              {
                "libProduit": "ORGETTES 6RH",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246992",
                    "prixNet": "111.855"
                  },
                  {
                    "codeTypeValo": "COM",
                    "dateFacture": "20181022",
                    "libTypeValo": "Complément Prix",
                    "numFacture": "16255481",
                    "prixNet": "15.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "135.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.145"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "126.855"
                  }
                ],
                "qteFacture": "1.596"
              }
            ],
            "libelleArticle": "ESC ISOCEL",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "11405",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "12.500",
            "quantiteNorme": "12.276"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "11.500"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "68.300"
              },
              {
                "code": "04",
                "libelle": "Calibrage",
                "valeur": "91.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "8.700"
              }
            ],
            "codeArticle": "000172",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180627",
            "factures": [
              {
                "libProduit": "ESC ISOCEL",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246992",
                    "prixNet": "158.890"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "166.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.040"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "0.930"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "158.890"
                  }
                ],
                "qteFacture": "13.134"
              }
            ],
            "libelleArticle": "ESC ISOCEL",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "26648",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "13.200",
            "quantiteNorme": "13.134"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.200"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "3.300"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "63.300"
              },
              {
                "code": "04",
                "libelle": "Calibrage",
                "valeur": "86.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "10.700"
              }
            ],
            "codeArticle": "000172",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180628",
            "factures": [
              {
                "libProduit": "ESC ISOCEL",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246992",
                    "prixNet": "158.659"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "166.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.271"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "0.930"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "158.659"
                  }
                ],
                "qteFacture": "12.177"
              },
              {
                "libProduit": "ORGETTES 6RH",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246992",
                    "prixNet": "111.726"
                  },
                  {
                    "codeTypeValo": "COM",
                    "dateFacture": "20181022",
                    "libTypeValo": "Complément Prix",
                    "numFacture": "16255481",
                    "prixNet": "15.000"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "135.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.274"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "126.726"
                  }
                ],
                "qteFacture": "1.982"
              }
            ],
            "libelleArticle": "ESC ISOCEL",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "26759",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "14.640",
            "quantiteNorme": "14.159"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.100"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.700"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "66.700"
              },
              {
                "code": "04",
                "libelle": "Calibrage",
                "valeur": "93.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "10.700"
              }
            ],
            "codeArticle": "000172",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180629",
            "factures": [
              {
                "libProduit": "ESC ISOCEL",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246992",
                    "prixNet": "158.873"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "166.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.057"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "0.930"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "158.873"
                  }
                ],
                "qteFacture": "14.356"
              }
            ],
            "libelleArticle": "ESC ISOCEL",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "26940",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "14.457",
            "quantiteNorme": "14.356"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.100"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.700"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "66.700"
              },
              {
                "code": "04",
                "libelle": "Calibrage",
                "valeur": "93.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "10.700"
              }
            ],
            "codeArticle": "000172",
            "codeSiteDepot": "0193",
            "dateLivraison": "20180629",
            "factures": [
              {
                "libProduit": "ESC ISOCEL",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181011",
                    "libTypeValo": "Décompte",
                    "numFacture": "16248534",
                    "prixNet": "159.333"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "166.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-6.667"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "159.333"
                  }
                ],
                "qteFacture": "0.003"
              }
            ],
            "libelleArticle": "ESC ISOCEL",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "26940",
            "numeroLigneBonLivraison": "6",
            "quantiteNette": "0.003",
            "quantiteNorme": "0.003"
          }
        ],
        "libContrat": "Contrat Prix Ferme",
        "libFamOpticollecte": "ORGE HIVER",
        "libProduitContrat": "ESC ISOCEL",
        "numContrat": "262509",
        "numContratOrigin": "247728-000",
        "prixContrat": "166.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "142.54",
        "qteLivreContrat": "142.543",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "0.000",
        "surface": "0.000",
        "typeContrat": "APF",
        "varietyStandardDeviation": "0.000",
        "yield": "0.000"
      },
      {
        "campagne": "2018",
        "clotureContrat": "OUI",
        "codFamOpticollecte": "BT",
        "cotation": "0.0",
        "dateContrat": "20180619",
        "dateExecDebut": "20190101",
        "dateExecFin": "20190330",
        "delivery": [
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.000"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.500"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.200"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181002",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "153.325"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "151.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "153.325"
                  }
                ],
                "qteFacture": "2.121"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29918",
            "numeroLigneBonLivraison": "4",
            "quantiteNette": "2.121",
            "quantiteNorme": "2.121"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.600"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "78.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.300"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181002",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "153.325"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "151.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "153.325"
                  }
                ],
                "qteFacture": "19.020"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29919",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "19.020",
            "quantiteNorme": "19.020"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.700"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.600"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.100"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.100"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181002",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "153.325"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "151.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "153.325"
                  }
                ],
                "qteFacture": "18.921"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29920",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "18.940",
            "quantiteNorme": "18.921"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.400"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "75.600"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.400"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181002",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "153.325"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "151.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "153.325"
                  }
                ],
                "qteFacture": "18.960"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29923",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "18.960",
            "quantiteNorme": "18.960"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.400"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.600"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.700"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.100"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181002",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "153.325"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "151.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "153.325"
                  }
                ],
                "qteFacture": "19.620"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29928",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "19.640",
            "quantiteNorme": "19.620"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.500"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.600"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.200"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181002",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "153.325"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "151.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "153.325"
                  }
                ],
                "qteFacture": "11.358"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29929",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "11.369",
            "quantiteNorme": "11.358"
          }
        ],
        "libContrat": "Contrat Prix Ferme",
        "libFamOpticollecte": "BLE TENDRE",
        "libProduitContrat": "BLE 1",
        "numContrat": "249918",
        "numContratOrigin": "235318-000",
        "prixContrat": "151.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "90.0",
        "qteLivreContrat": "90.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "0.000",
        "surface": "0.000",
        "typeContrat": "APF",
        "varietyStandardDeviation": "0.000",
        "yield": "0.000"
      },
      {
        "campagne": "2018",
        "clotureContrat": "OUI",
        "codFamOpticollecte": "COL",
        "cotation": "0.0",
        "dateContrat": "20171201",
        "dateExecDebut": "20180701",
        "dateExecFin": "20180831",
        "delivery": [
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "6.800"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "3.000"
              }
            ],
            "codeArticle": "000129",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180708",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "COLZA D HIVER",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246993",
                    "prixNet": "313.237"
                  },
                  {
                    "codeTypeValo": "COM",
                    "dateFacture": "20181022",
                    "libTypeValo": "Complément Prix",
                    "numFacture": "16255482",
                    "prixNet": "10.500"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "321.900"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "10.000"
                  },
                  {
                    "code": "XFAC06",
                    "libelle": "Frais Transport",
                    "valeur": "-8.163"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "323.737"
                  }
                ],
                "qteFacture": "10.937"
              }
            ],
            "libelleArticle": "COLZA D HIVER",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "11798",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "11.160",
            "quantiteNorme": "10.937"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "6.300"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "2.700"
              }
            ],
            "codeArticle": "000129",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180709",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  },
                  {
                    "code": "C1",
                    "libelle": "Approche",
                    "valeur": "2.000"
                  }
                ],
                "libProduit": "COLZA D HIVER",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246993",
                    "prixNet": "323.400"
                  },
                  {
                    "codeTypeValo": "COM",
                    "dateFacture": "20181022",
                    "libTypeValo": "Complément Prix",
                    "numFacture": "16255482",
                    "prixNet": "10.500"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "321.900"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "12.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "333.900"
                  }
                ],
                "qteFacture": "10.872"
              }
            ],
            "libelleArticle": "COLZA D HIVER",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "11855",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "11.060",
            "quantiteNorme": "10.872"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "6.200"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "1.600"
              }
            ],
            "codeArticle": "000129",
            "codeSiteDepot": "0794",
            "dateLivraison": "20180709",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  },
                  {
                    "code": "C1",
                    "libelle": "Approche",
                    "valeur": "2.000"
                  }
                ],
                "libProduit": "COLZA D HIVER",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181009",
                    "libTypeValo": "Décompte",
                    "numFacture": "16246993",
                    "prixNet": "323.400"
                  },
                  {
                    "codeTypeValo": "COM",
                    "dateFacture": "20181022",
                    "libTypeValo": "Complément Prix",
                    "numFacture": "16255482",
                    "prixNet": "10.500"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "321.900"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "12.000"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "333.900"
                  }
                ],
                "qteFacture": "8.191"
              }
            ],
            "libelleArticle": "COLZA D HIVER",
            "libelleSite": "SUILLY LA TOUR",
            "natureStock": "0",
            "numeroBonLivraison": "11870",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "8.241",
            "quantiteNorme": "8.191"
          }
        ],
        "libContrat": "Contrat Optimum Sécurisé",
        "libFamOpticollecte": "COLZA",
        "libProduitContrat": "COLZA D HIVER",
        "numContrat": "218957",
        "numContratOrigin": "204246-000",
        "prixContrat": "0.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "30.0",
        "qteLivreContrat": "30.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "0.000",
        "surface": "7.710",
        "typeContrat": "APO",
        "varietyStandardDeviation": "0.000",
        "yield": "3.889"
      },
      {
        "campagne": "2018",
        "clotureContrat": "NON",
        "codFamOpticollecte": "OH",
        "cotation": "0.0",
        "dateContrat": "20171201",
        "dateExecDebut": "20180901",
        "dateExecFin": "20190329",
        "libContrat": "Contrat Soufflet Optimum",
        "libFamOpticollecte": "ORGE HIVER",
        "libProduitContrat": "ESC ISOCEL",
        "numContrat": "218918",
        "numContratOrigin": "204245-000",
        "prixContrat": "0.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "700.0",
        "qteLivreContrat": "0.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "700.000",
        "qualityBonus": "0.000",
        "surface": "104.990",
        "typeContrat": "APC",
        "varietyStandardDeviation": "0.000",
        "yield": "6.667"
      },
      {
        "campagne": "2018",
        "clotureContrat": "NON",
        "codFamOpticollecte": "BT",
        "cotation": "0.0",
        "dateContrat": "20181218",
        "dateExecDebut": "20180901",
        "dateExecFin": "20190331",
        "libContrat": "Contrat Optimum Sécurisé",
        "libFamOpticollecte": "BLE TENDRE",
        "libProduitContrat": "BLE BPMF BAGUEPI",
        "numContrat": "215593",
        "numContratOrigin": "200750-001",
        "prixContrat": "0.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "68.136",
        "qteLivreContrat": "0.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "68.136",
        "qualityBonus": "0.000",
        "surface": "9.730",
        "typeContrat": "APO",
        "varietyStandardDeviation": "0.000",
        "yield": "7.000"
      },
      {
        "campagne": "2018",
        "clotureContrat": "OUI",
        "codFamOpticollecte": "BT",
        "cotation": "0.0",
        "dateContrat": "20171129",
        "dateExecDebut": "20180901",
        "dateExecFin": "20190331",
        "delivery": [
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.800"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "80.800"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "11.900"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181008",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "163.720"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "6.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "163.720"
                  }
                ],
                "qteFacture": "17.460"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10130",
            "numeroLigneBonLivraison": "4",
            "quantiteNette": "17.460",
            "quantiteNorme": "17.460"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.700"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "81.300"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "11.900"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181008",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "163.720"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "6.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "163.720"
                  }
                ],
                "qteFacture": "29.720"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10131",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "29.720",
            "quantiteNorme": "29.720"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.800"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.600"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "79.400"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.300"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181127",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181210",
                    "libTypeValo": "Décompte",
                    "numFacture": "16267369",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "29.151"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10610",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.180",
            "quantiteNorme": "29.151"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.700"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.800"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.400"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181128",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181210",
                    "libTypeValo": "Décompte",
                    "numFacture": "16267369",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "30.160"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10616",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "30.160",
            "quantiteNorme": "30.160"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.600"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "78.500"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.500"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181128",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181210",
                    "libTypeValo": "Décompte",
                    "numFacture": "16267369",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "30.140"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10617",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "30.140",
            "quantiteNorme": "30.140"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.500"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "78.800"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.400"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181128",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181210",
                    "libTypeValo": "Décompte",
                    "numFacture": "16267369",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "29.460"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10619",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.460",
            "quantiteNorme": "29.460"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.900"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "80.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.300"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181128",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181210",
                    "libTypeValo": "Décompte",
                    "numFacture": "16267369",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "29.820"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10623",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.820",
            "quantiteNorme": "29.820"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.400"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "78.400"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.500"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181128",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181210",
                    "libTypeValo": "Décompte",
                    "numFacture": "16267369",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "29.760"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10631",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.760",
            "quantiteNorme": "29.760"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.800"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "80.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.600"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181129",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181210",
                    "libTypeValo": "Décompte",
                    "numFacture": "16267369",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "30.040"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10635",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "30.040",
            "quantiteNorme": "30.040"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.600"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "79.600"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "11.800"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181129",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181210",
                    "libTypeValo": "Décompte",
                    "numFacture": "16267369",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "29.820"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10644",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.820",
            "quantiteNorme": "29.820"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.800"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "80.400"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "11.900"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181130",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181210",
                    "libTypeValo": "Décompte",
                    "numFacture": "16267369",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "30.340"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10647",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "30.340",
            "quantiteNorme": "30.340"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.000"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "80.200"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.700"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181130",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181210",
                    "libTypeValo": "Décompte",
                    "numFacture": "16267369",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "29.960"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10648",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.960",
            "quantiteNorme": "29.960"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "14.000"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "79.800"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "11.600"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181130",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181210",
                    "libTypeValo": "Décompte",
                    "numFacture": "16267369",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "29.640"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10649",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.640",
            "quantiteNorme": "29.640"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.500"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "80.300"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "11.800"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181130",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181210",
                    "libTypeValo": "Décompte",
                    "numFacture": "16267369",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "29.940"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10650",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.940",
            "quantiteNorme": "29.940"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.100"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "80.300"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "11.600"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181130",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181210",
                    "libTypeValo": "Décompte",
                    "numFacture": "16267369",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "30.300"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10651",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "30.300",
            "quantiteNorme": "30.300"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.400"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "78.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.100"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181203",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181221",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269338",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "30.040"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10666",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "30.040",
            "quantiteNorme": "30.040"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.300"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.600"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.600"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181203",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181221",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269338",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "29.880"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10667",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.880",
            "quantiteNorme": "29.880"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.500"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.000"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181203",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181221",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269338",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "30.220"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10668",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "30.220",
            "quantiteNorme": "30.220"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.400"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.300"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.400"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181203",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181221",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269338",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "29.480"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10669",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.480",
            "quantiteNorme": "29.480"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.600"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "76.100"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.700"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000288",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181203",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE BPMF BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181221",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269338",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "29.620"
              }
            ],
            "libelleArticle": "BLE BPMF BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10670",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.620",
            "quantiteNorme": "29.620"
          }
        ],
        "libContrat": "Contrat Optimum Sécurisé",
        "libFamOpticollecte": "BLE TENDRE",
        "libProduitContrat": "BLE BPMF BAGUEPI",
        "numContrat": "215593",
        "numContratOrigin": "200750-000",
        "prixContrat": "0.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "700.0",
        "qteLivreContrat": "584.951",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "0.000",
        "surface": "100.000",
        "typeContrat": "APO",
        "varietyStandardDeviation": "0.000",
        "yield": "7.000"
      },
      {
        "campagne": "2018",
        "clotureContrat": "OUI",
        "codFamOpticollecte": "BT",
        "cotation": "0.0",
        "dateContrat": "20171129",
        "dateExecDebut": "20180901",
        "dateExecFin": "20190331",
        "delivery": [
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.100"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "79.900"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.400"
              }
            ],
            "codeArticle": "001122",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181002",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE FRUCTIDOR BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "163.720"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "6.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "163.720"
                  }
                ],
                "qteFacture": "30.080"
              }
            ],
            "libelleArticle": "BLE FRUCTIDOR BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10051",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "30.080",
            "quantiteNorme": "30.080"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.400"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "79.500"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.200"
              }
            ],
            "codeArticle": "001122",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181002",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE FRUCTIDOR BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "163.720"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "6.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "163.720"
                  }
                ],
                "qteFacture": "29.940"
              }
            ],
            "libelleArticle": "BLE FRUCTIDOR BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10063",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.940",
            "quantiteNorme": "29.940"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.800"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "81.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "11.900"
              }
            ],
            "codeArticle": "001122",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181004",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE FRUCTIDOR BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "163.720"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "6.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "163.720"
                  }
                ],
                "qteFacture": "28.160"
              }
            ],
            "libelleArticle": "BLE FRUCTIDOR BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10102",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "28.160",
            "quantiteNorme": "28.160"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.400"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "79.300"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.700"
              }
            ],
            "codeArticle": "001122",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181005",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE FRUCTIDOR BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "163.720"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "6.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "163.720"
                  }
                ],
                "qteFacture": "29.380"
              }
            ],
            "libelleArticle": "BLE FRUCTIDOR BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10121",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.380",
            "quantiteNorme": "29.380"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "13.000"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "80.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.000"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "001122",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181005",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE FRUCTIDOR BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "163.720"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "6.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "163.720"
                  }
                ],
                "qteFacture": "29.940"
              }
            ],
            "libelleArticle": "BLE FRUCTIDOR BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10123",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.940",
            "quantiteNorme": "29.940"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.800"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "80.800"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "11.900"
              }
            ],
            "codeArticle": "001122",
            "codeSiteDepot": "0055",
            "dateLivraison": "20181008",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE FRUCTIDOR BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "163.720"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "6.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "163.720"
                  }
                ],
                "qteFacture": "12.500"
              }
            ],
            "libelleArticle": "BLE FRUCTIDOR BAGUEPI",
            "libelleSite": "PEZARCHES",
            "natureStock": "0",
            "numeroBonLivraison": "10130",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "12.500",
            "quantiteNorme": "12.500"
          }
        ],
        "libContrat": "Contrat Optimum Sécurisé",
        "libFamOpticollecte": "BLE TENDRE",
        "libProduitContrat": "BLE FRUCTIDOR BAGUEPI",
        "numContrat": "215592",
        "numContratOrigin": "200749-000",
        "prixContrat": "0.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "160.0",
        "qteLivreContrat": "160.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "0.000",
        "surface": "22.000",
        "typeContrat": "APO",
        "varietyStandardDeviation": "0.000",
        "yield": "7.273"
      },
      {
        "campagne": "2018",
        "clotureContrat": "OUI",
        "codFamOpticollecte": "BT",
        "cotation": "0.0",
        "dateContrat": "20171129",
        "dateExecDebut": "20180901",
        "dateExecFin": "20190331",
        "delivery": [
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "14.400"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.700"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.600"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.300"
              }
            ],
            "codeArticle": "000286",
            "codeSiteDepot": "0285",
            "dateLivraison": "20181213",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE OREGRAIN BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181221",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269338",
                    "prixNet": "163.720"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "6.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "163.720"
                  }
                ],
                "qteFacture": "29.561"
              }
            ],
            "libelleArticle": "BLE OREGRAIN BAGUEPI",
            "libelleSite": "HERME",
            "natureStock": "0",
            "numeroBonLivraison": "8374",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.620",
            "quantiteNorme": "29.561"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "14.400"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.700"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.400"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000286",
            "codeSiteDepot": "0285",
            "dateLivraison": "20181213",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE OREGRAIN BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181221",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269338",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "29.561"
              }
            ],
            "libelleArticle": "BLE OREGRAIN BAGUEPI",
            "libelleSite": "HERME",
            "natureStock": "0",
            "numeroBonLivraison": "8375",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.620",
            "quantiteNorme": "29.561"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "14.400"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.600"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "78.800"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.100"
              }
            ],
            "codeArticle": "000286",
            "codeSiteDepot": "0285",
            "dateLivraison": "20181213",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE OREGRAIN BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181221",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269338",
                    "prixNet": "163.720"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "6.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "163.720"
                  }
                ],
                "qteFacture": "29.830"
              }
            ],
            "libelleArticle": "BLE OREGRAIN BAGUEPI",
            "libelleSite": "HERME",
            "natureStock": "0",
            "numeroBonLivraison": "8376",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "29.860",
            "quantiteNorme": "29.830"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "14.500"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.700"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.300"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.300"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000286",
            "codeSiteDepot": "0285",
            "dateLivraison": "20181213",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE OREGRAIN BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181221",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269338",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "30.020"
              }
            ],
            "libelleArticle": "BLE OREGRAIN BAGUEPI",
            "libelleSite": "HERME",
            "natureStock": "0",
            "numeroBonLivraison": "8377",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "30.080",
            "quantiteNorme": "30.020"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "14.700"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.800"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.200"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.400"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000286",
            "codeSiteDepot": "0285",
            "dateLivraison": "20181213",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE OREGRAIN BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181221",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269338",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "29.551"
              }
            ],
            "libelleArticle": "BLE OREGRAIN BAGUEPI",
            "libelleSite": "HERME",
            "natureStock": "0",
            "numeroBonLivraison": "8378",
            "numeroLigneBonLivraison": "3",
            "quantiteNette": "29.640",
            "quantiteNorme": "29.551"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "15.500"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.800"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.400"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.600"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000286",
            "codeSiteDepot": "0285",
            "dateLivraison": "20181213",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE OREGRAIN BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181221",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269338",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "29.909"
              }
            ],
            "libelleArticle": "BLE OREGRAIN BAGUEPI",
            "libelleSite": "HERME",
            "natureStock": "0",
            "numeroBonLivraison": "8382",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "30.180",
            "quantiteNorme": "29.909"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "15.100"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.800"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "76.100"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.200"
              },
              {
                "code": "21",
                "libelle": "Insectes",
                "valeur": "1.000"
              }
            ],
            "codeArticle": "000286",
            "codeSiteDepot": "0285",
            "dateLivraison": "20181213",
            "factures": [
              {
                "caractFacture": [
                  {
                    "code": "05",
                    "libelle": "Protéine",
                    "valeur": "6.000"
                  },
                  {
                    "code": "21",
                    "libelle": "Insectes",
                    "valeur": "-2.500"
                  },
                  {
                    "code": "A1",
                    "libelle": "Stockage",
                    "valeur": "5.000"
                  },
                  {
                    "code": "B1",
                    "libelle": "Engagement",
                    "valeur": "10.000"
                  }
                ],
                "libProduit": "BLE OREGRAIN BAGUEPI",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181221",
                    "libTypeValo": "Décompte",
                    "numFacture": "16269338",
                    "prixNet": "161.220"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "139.000"
                  },
                  {
                    "code": "XFAC02",
                    "libelle": "Complément",
                    "valeur": "15.000"
                  },
                  {
                    "code": "XFAC03",
                    "libelle": "Boni/Réf",
                    "valeur": "3.500"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "3.720"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "161.220"
                  }
                ],
                "qteFacture": "1.568"
              }
            ],
            "libelleArticle": "BLE OREGRAIN BAGUEPI",
            "libelleSite": "HERME",
            "natureStock": "0",
            "numeroBonLivraison": "8383",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "1.582",
            "quantiteNorme": "1.568"
          }
        ],
        "libContrat": "Contrat Optimum Sécurisé",
        "libFamOpticollecte": "BLE TENDRE",
        "libProduitContrat": "BLE OREGRAIN BAGUEPI",
        "numContrat": "215591",
        "numContratOrigin": "200748-000",
        "prixContrat": "0.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "180.0",
        "qteLivreContrat": "180.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "0.000",
        "surface": "25.000",
        "typeContrat": "APO",
        "varietyStandardDeviation": "0.000",
        "yield": "7.200"
      },
      {
        "campagne": "2018",
        "clotureContrat": "OUI",
        "codFamOpticollecte": "BT",
        "cotation": "0.0",
        "dateContrat": "20170713",
        "dateExecDebut": "20180901",
        "dateExecFin": "20190228",
        "delivery": [
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.300"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.700"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.600"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.400"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181001",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "158.325"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "156.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "158.325"
                  }
                ],
                "qteFacture": "19.501"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29890",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "19.540",
            "quantiteNorme": "19.501"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "12.300"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.600"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.500"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181001",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "158.325"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "156.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "158.325"
                  }
                ],
                "qteFacture": "19.520"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29891",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "19.520",
            "quantiteNorme": "19.520"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "11.900"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.200"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.700"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181001",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "158.325"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "156.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "158.325"
                  }
                ],
                "qteFacture": "18.860"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29898",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "18.860",
            "quantiteNorme": "18.860"
          },
          {
            "caracteristiques": [
              {
                "code": "01",
                "libelle": "Humidité",
                "valeur": "11.900"
              },
              {
                "code": "02",
                "libelle": "Impuretés",
                "valeur": "0.500"
              },
              {
                "code": "03",
                "libelle": "Poids Spécifique",
                "valeur": "77.000"
              },
              {
                "code": "05",
                "libelle": "Protéine",
                "valeur": "12.700"
              }
            ],
            "codeArticle": "000005",
            "codeSiteDepot": "0193",
            "dateLivraison": "20181001",
            "factures": [
              {
                "libProduit": "BLE 1",
                "lignesFacture": [
                  {
                    "codeTypeValo": "DEC",
                    "dateFacture": "20181025",
                    "libTypeValo": "Décompte",
                    "numFacture": "16261536",
                    "prixNet": "158.325"
                  }
                ],
                "prixtFacture": [
                  {
                    "code": "XFAC01",
                    "libelle": "Prix de base",
                    "valeur": "156.000"
                  },
                  {
                    "code": "XFAC07",
                    "libelle": "MBM",
                    "valeur": "2.325"
                  },
                  {
                    "code": "XFAC08",
                    "libelle": "Prix Net",
                    "valeur": "158.325"
                  }
                ],
                "qteFacture": "2.119"
              }
            ],
            "libelleArticle": "BLE 1",
            "libelleSite": "ARZEMBOUY",
            "natureStock": "0",
            "numeroBonLivraison": "29899",
            "numeroLigneBonLivraison": "1",
            "quantiteNette": "2.119",
            "quantiteNorme": "2.119"
          }
        ],
        "libContrat": "Contrat Prix Ferme",
        "libFamOpticollecte": "BLE TENDRE",
        "libProduitContrat": "BLE 1",
        "numContrat": "180530",
        "numContratOrigin": "164912-000",
        "prixContrat": "156.0",
        "prixContratOrgette": "0.000",
        "qteContrat": "60.0",
        "qteLivreContrat": "60.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "0.000",
        "surface": "0.000",
        "typeContrat": "APF",
        "varietyStandardDeviation": "0.000",
        "yield": "0.000"
      },
      {
        "campagne": "2018",
        "codFamOpticollecte": "BT",
        "dateContrat": "20180920",
        "libContrat": "Echantillon Hors Contrat",
        "libFamOpticollecte": "BLE TENDRE",
        "libProduitContrat": "BLE BPMF MEUNERIE",
        "numContrat": "0",
        "numContratOrigin": "EHC-000038-0",
        "prixContrat": "0.0",
        "qteContrat": "0.0",
        "qteLivreContrat": "0.000",
        "qteLivreDepot": "0.000",
        "qteSoldeContrat": "0.000",
        "qualityBonus": "0.000",
        "samples": [
          {
            "cellVarieties": [
              {
                "cell": "STAB",
                "variety": "AUCKLAND"
              }
            ],
            "characteristics": [
              {
                "code": "01",
                "label": "Humidité",
                "value": "12.100"
              },
              {
                "code": "03",
                "label": "Poids Spécifique",
                "value": "74.700"
              },
              {
                "code": "05",
                "label": "Protéine",
                "value": "12.200"
              },
              {
                "code": "15",
                "label": "Hagberg",
                "value": "433.000"
              },
              {
                "code": "01",
                "label": "Humidité",
                "value": "11.500"
              },
              {
                "code": "03",
                "label": "Poids Spécifique",
                "value": "75.500"
              },
              {
                "code": "05",
                "label": "Protéine",
                "value": "12.800"
              },
              {
                "code": "15",
                "label": "Hagberg",
                "value": "436.000"
              }
            ],
            "date": "20180920",
            "number": "0",
            "quantity": "0.000"
          }
        ],
        "surface": "0.000",
        "typeContrat": "EHC",
        "varietyStandardDeviation": "0.000",
        "yield": "0.000"
      }
    ]
  }
}

Validation #510

Failure

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

  • The property '#/contracts/0/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/1/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/1/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/1' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/2/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/2/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/2' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/3/amount_to_deliver' did not have a minimum value of 0, inclusively in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/3/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/3/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/3/samples/0/cell_varieties/0/variety' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb#
  • The property '#/contracts/3' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/4/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/4/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/4' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/5' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/5/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/5/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/5' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/6' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/6/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/6/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/6' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/7' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/7/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/7/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/7' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/8' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/8/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/8/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/8' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/9/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/9/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/9' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/10' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/10/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/10/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/10' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/11' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/11/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/11/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/11' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/12' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/12/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/12/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/12' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/13' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/13/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/13/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/13' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14/commencement_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14/termination_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultCellVariety_776": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "cell": {
          "type": "string"
        },
        "variety": {
          "type": "string"
        }
      },
      "required": [
        "cell",
        "variety"
      ],
      "title": "CellVariety - DefaultCellVariety",
      "type": "object"
    },
    "DefaultSample_778": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "cell_varieties": {
          "items": {
            "$ref": "#/definitions/DefaultCellVariety_776",
            "type": "object"
          },
          "type": "array"
        },
        "characteristics": {
          "items": {
            "$ref": "#/definitions/SampleCharacteristic_777",
            "type": "object"
          },
          "type": "array"
        },
        "date": {
          "description": "The ISO 8601 date format (%Y-%m-%d)",
          "format": "datetime",
          "type": "string"
        },
        "number": {
          "type": "string"
        },
        "quantity": {
          "minimum": 0,
          "type": "number"
        }
      },
      "required": [
        "cell_varieties",
        "characteristics",
        "date",
        "number",
        "quantity"
      ],
      "title": "Sample - DefaultSample",
      "type": "object"
    },
    "DefaultSettlement_560": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "amount": {
          "minimum": 0,
          "type": "number"
        },
        "date": {
          "format": "date",
          "type": "string"
        },
        "price": {
          "minimum": 0,
          "type": "number"
        },
        "status": {
          "description": "0 => nothing special, 1 => to validate",
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        }
      },
      "required": [
        "amount",
        "date",
        "price",
        "status"
      ],
      "title": "Settlement - DefaultSettlement",
      "type": "object"
    },
    "SampleCharacteristic_777": {
      "additionalProperties": false,
      "properties": {
        "code": {
          "type": "string"
        },
        "label": {
          "type": "string"
        },
        "value": {
          "minimum": 0,
          "type": "number"
        }
      },
      "required": [
        "code",
        "label",
        "value"
      ],
      "title": "Characteristic - SampleCharacteristic",
      "type": "object"
    },
    "minimalContract_770": {
      "additionalProperties": false,
      "properties": {
        "crm_id": {
          "description": "numContratOrigin",
          "type": "string"
        },
        "id": {
          "description": "numContratOrigin",
          "pattern": "\\d*",
          "type": "string"
        }
      },
      "required": [
        "crm_id",
        "id"
      ],
      "title": "Contract - minimalContract",
      "type": "object"
    }
  },
  "description": "Automatically generated (please edit me)",
  "properties": {
    "contracts": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "amount_to_deliver": {
            "description": "qteSoldeContrat",
            "minimum": 0,
            "type": "number"
          },
          "amount_to_deposit": {
            "minimum": 0,
            "type": "number"
          },
          "closing_date": {
            "description": "backend Data (settlement_price) : closingDate",
            "format": "date",
            "type": "string"
          },
          "commencement_date": {
            "description": "dateExecDebut",
            "format": "date",
            "type": "string"
          },
          "commodity": {
            "anyOf": [
              {
                "description": "codeContratTerme",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "commodity_id": {
            "anyOf": [
              {
                "description": "backend Data (settlement_price) : sflCommodity",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "contracts": {
            "items": {
              "$ref": "#/definitions/minimalContract_770",
              "type": "object"
            },
            "type": "array"
          },
          "crm_id": {
            "description": "numContratOrigin",
            "type": "string"
          },
          "date": {
            "description": "dateContrat",
            "format": "date",
            "type": "string"
          },
          "delivered_amount": {
            "description": "qteLivreContrat",
            "minimum": 0,
            "type": "number"
          },
          "deposited_amount": {
            "description": "qteLivreDepot",
            "minimum": 0,
            "type": "number"
          },
          "fiscal_year": {
            "description": "campagne",
            "maximum": 2018,
            "minimum": 2017,
            "type": "integer"
          },
          "gain": {
            "description": "gain",
            "type": "number"
          },
          "id": {
            "description": "numContratOrigin",
            "pattern": "\\d*",
            "type": "string"
          },
          "is_closed": {
            "description": "clotureContrat == 'OUI'",
            "type": "boolean"
          },
          "itk_feedback": {
            "anyOf": [
              {
                "description": "itkFeedback\r\nDirectement la chaîne à afficher. Valeurs possibles : pas de retour, retour papier ou retour electronique",
                "enum": [
                  "pas de retour",
                  "retour papier",
                  "retour electronique"
                ],
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "maturity": {
            "anyOf": [
              {
                "description": "echeanceMatif",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "maturity_id": {
            "anyOf": [
              {
                "description": "backend Data (settlement_price) : sflMaturity",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "minimum_price": {
            "description": "prixMini",
            "minimum": 0,
            "type": "number"
          },
          "name": {
            "description": "libContrat",
            "type": "string"
          },
          "price": {
            "description": "prixContrat",
            "minimum": 0,
            "type": "number"
          },
          "product_name": {
            "description": "libProduitContrat",
            "type": "string"
          },
          "quality_bonus": {
            "anyOf": [
              {
                "description": "qualityBonus",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "samples": {
            "items": {
              "$ref": "#/definitions/DefaultSample_778",
              "type": "object"
            },
            "type": "array"
          },
          "settlement_price": {
            "anyOf": [
              {
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "settlements": {
            "items": {
              "$ref": "#/definitions/DefaultSettlement_560",
              "type": "object"
            },
            "type": "array"
          },
          "special_bonus": {
            "anyOf": [
              {
                "description": "specialBonus",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "strike": {
            "description": "cotation",
            "type": "number"
          },
          "surface": {
            "anyOf": [
              {
                "description": "surface",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "termination_date": {
            "description": "dateExecFin",
            "format": "date",
            "type": "string"
          },
          "total_amount": {
            "description": "qteContrat",
            "minimum": 0,
            "type": "number"
          },
          "type": {
            "description": "typeContrat",
            "type": "string"
          },
          "variety": {
            "description": "codFamOpticollecte",
            "type": "string"
          },
          "variety_name": {
            "description": "libFamOpticollecte",
            "type": "string"
          },
          "variety_standard_deviation": {
            "anyOf": [
              {
                "description": "varietyStandardDeviation",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "warranty_cost": {
            "description": "primeOption",
            "minimum": 0,
            "type": "number"
          },
          "yield": {
            "anyOf": [
              {
                "description": "yield",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "required": [
          "amount_to_deliver",
          "amount_to_deposit",
          "closing_date",
          "commencement_date",
          "commodity",
          "commodity_id",
          "contracts",
          "crm_id",
          "date",
          "delivered_amount",
          "deposited_amount",
          "fiscal_year",
          "gain",
          "id",
          "is_closed",
          "itk_feedback",
          "maturity",
          "maturity_id",
          "name",
          "price",
          "product_name",
          "quality_bonus",
          "samples",
          "settlement_price",
          "settlements",
          "special_bonus",
          "strike",
          "surface",
          "termination_date",
          "total_amount",
          "type",
          "variety",
          "variety_name",
          "variety_standard_deviation",
          "yield"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "contracts"
  ],
  "title": "Contract - DefaultContract",
  "type": "object"
}

JSON instance

{
  "contracts": [
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [
        {
          "crm_id": "281488-000",
          "id": "295019"
        }
      ],
      "crm_id": "39457-000",
      "date": "2018-12-18",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "45359",
      "is_closed": false,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat d'Engagement",
      "price": 0,
      "product_name": "BLE OREGRAIN BAGUEPI",
      "quality_bonus": 2,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 7,
      "termination_date": "2019-03-31",
      "total_amount": 46.913,
      "type": "P01",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 2,
      "yield": 6.702
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [
        {
          "crm_id": "200749-000",
          "id": "215592"
        }
      ],
      "crm_id": "28847-000",
      "date": "2017-09-12",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "34697",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat d'Engagement",
      "price": 0,
      "product_name": "BLE FRUCTIDOR BAGUEPI",
      "quality_bonus": 2,
      "samples": [
        {
          "cell_varieties": [],
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 78.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.5
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 419
            },
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 78.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.5
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 419
            }
          ],
          "date": "2018-09-20",
          "number": "535090317515346",
          "quantity": 0
        }
      ],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 22,
      "termination_date": "2019-03-31",
      "total_amount": 160,
      "type": "P01",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 2,
      "yield": 7.273
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [
        {
          "crm_id": "200748-000",
          "id": "215591"
        }
      ],
      "crm_id": "28846-000",
      "date": "2017-09-12",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "34696",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat d'Engagement",
      "price": 0,
      "product_name": "BLE OREGRAIN BAGUEPI",
      "quality_bonus": 2,
      "samples": [
        {
          "cell_varieties": [],
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.9
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 79.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.2
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 371
            }
          ],
          "date": "2018-09-20",
          "number": "535090317515342",
          "quantity": 0
        }
      ],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 25,
      "termination_date": "2019-03-31",
      "total_amount": 180,
      "type": "P01",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 3,
      "yield": 7.2
    },
    {
      "amount_to_deliver": -68.136,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [
        {
          "crm_id": "200750-000",
          "id": "215593"
        },
        {
          "crm_id": "200750-001",
          "id": "215593"
        }
      ],
      "crm_id": "28845-000",
      "date": "2017-09-12",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "34695",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat d'Engagement",
      "price": 0,
      "product_name": "BLE BPMF BAGUEPI",
      "quality_bonus": 2,
      "samples": [
        {
          "cell_varieties": [
            {
              "cell": "PIN GAUCHE",
              "variety": null
            }
          ],
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.3
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 78.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.5
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 303
            },
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.2
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 80
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.3
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 319
            }
          ],
          "date": "2018-09-20",
          "number": "535090317515336",
          "quantity": 0
        }
      ],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 100,
      "termination_date": "2019-03-31",
      "total_amount": 700,
      "type": "P01",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7
    },
    {
      "amount_to_deliver": 200,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2019-01-31",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "284710-000",
      "date": "2019-01-21",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "298280",
      "is_closed": false,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 174,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2019-03-30",
      "total_amount": 200,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "281488-000",
      "date": "2018-12-18",
      "delivered_amount": 46.913,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 15.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8383-4",
          "invoices": [
            {
              "amount": 28.024,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 28.278,
          "net_price": 0,
          "normed_amount": 28.024,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 15.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8384-3",
          "invoices": [
            {
              "amount": 18.889,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                },
                {
                  "code": "C1",
                  "label": "Approche",
                  "value": 2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 163.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 17
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 19.06,
          "net_price": 0,
          "normed_amount": 18.889,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "295019",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE OREGRAIN BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 7,
      "termination_date": "2019-03-31",
      "total_amount": 46.913,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 6.702
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-07-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "281168-000",
      "date": "2018-12-14",
      "delivered_amount": 160.783,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 74.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            }
          ],
          "date": "2018-07-09",
          "delivery_number": "11963-7",
          "invoices": [
            {
              "amount": 14.985,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 15.06,
          "net_price": 0,
          "normed_amount": 14.985,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 75.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.8
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "11998-7",
          "invoices": [
            {
              "amount": 16.477,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 163.96
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": -8.04
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.96
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 16.56,
          "net_price": 0,
          "normed_amount": 16.477,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.7
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12011-7",
          "invoices": [
            {
              "amount": 12.935,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 13,
          "net_price": 0,
          "normed_amount": 12.935,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12020-7",
          "invoices": [
            {
              "amount": 13.333,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 13.4,
          "net_price": 0,
          "normed_amount": 13.333,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.2
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.7
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12023-7",
          "invoices": [
            {
              "amount": 15.224,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 15.3,
          "net_price": 0,
          "normed_amount": 15.224,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 75.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12033-7",
          "invoices": [
            {
              "amount": 15.263,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 15.34,
          "net_price": 0,
          "normed_amount": 15.263,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.6
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12038-7",
          "invoices": [
            {
              "amount": 13.054,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 13.12,
          "net_price": 0,
          "normed_amount": 13.054,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.2
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12044-7",
          "invoices": [
            {
              "amount": 17.134,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 163.96
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": -8.04
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.96
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 17.22,
          "net_price": 0,
          "normed_amount": 17.134,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.9
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12052-7",
          "invoices": [
            {
              "amount": 15.502,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 15.58,
          "net_price": 0,
          "normed_amount": 15.502,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12073-7",
          "invoices": [
            {
              "amount": 6.786,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 6.82,
          "net_price": 0,
          "normed_amount": 6.786,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.9
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12
            }
          ],
          "date": "2018-07-11",
          "delivery_number": "12166-7",
          "invoices": [
            {
              "amount": 12.666,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 163.96
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": -8.04
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.96
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 12.729,
          "net_price": 0,
          "normed_amount": 12.666,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.9
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12
            }
          ],
          "date": "2018-07-11",
          "delivery_number": "12166-10",
          "invoices": [
            {
              "amount": 3.712,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 163.959
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": -8.041
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.959
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 3.731,
          "net_price": 0,
          "normed_amount": 3.712,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29929-17",
          "invoices": [
            {
              "amount": 3.712,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 174.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 174.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 3.716,
          "net_price": 0,
          "normed_amount": 3.712,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "294660",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 172,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2018-08-31",
      "total_amount": 157.071,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "249749-000",
      "date": "2018-08-03",
      "delivered_amount": 85,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29899-4",
          "invoices": [
            {
              "amount": 17.801,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 17.801,
          "net_price": 0,
          "normed_amount": 17.801,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29912-1",
          "invoices": [
            {
              "amount": 19.16,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.16,
          "net_price": 0,
          "normed_amount": 19.16,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 74.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.9
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29913-1",
          "invoices": [
            {
              "amount": 19.12,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.12,
          "net_price": 0,
          "normed_amount": 19.12,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 75.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.8
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29915-1",
          "invoices": [
            {
              "amount": 11.84,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 11.84,
          "net_price": 0,
          "normed_amount": 11.84,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29918-1",
          "invoices": [
            {
              "amount": 17.079,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 17.079,
          "net_price": 0,
          "normed_amount": 17.079,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "264111",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 187,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2019-03-30",
      "total_amount": 85,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2019-01-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "235318-000",
      "date": "2018-06-19",
      "delivered_amount": 90,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29918-4",
          "invoices": [
            {
              "amount": 2.121,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 2.121,
          "net_price": 0,
          "normed_amount": 2.121,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29919-3",
          "invoices": [
            {
              "amount": 19.02,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.02,
          "net_price": 0,
          "normed_amount": 19.02,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.7
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.1
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29920-3",
          "invoices": [
            {
              "amount": 18.921,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 18.94,
          "net_price": 0,
          "normed_amount": 18.921,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 75.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29923-3",
          "invoices": [
            {
              "amount": 18.96,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 18.96,
          "net_price": 0,
          "normed_amount": 18.96,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.1
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29928-3",
          "invoices": [
            {
              "amount": 19.62,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.64,
          "net_price": 0,
          "normed_amount": 19.62,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29929-3",
          "invoices": [
            {
              "amount": 11.358,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 11.369,
          "net_price": 0,
          "normed_amount": 11.358,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "249918",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 151,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2019-03-30",
      "total_amount": 90,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 68.136,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "200750-001",
      "date": "2018-12-18",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "215593",
      "is_closed": false,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE BPMF BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 9.73,
      "termination_date": "2019-03-31",
      "total_amount": 68.136,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "200750-000",
      "date": "2017-11-29",
      "delivered_amount": 584.951,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            }
          ],
          "date": "2018-10-08",
          "delivery_number": "10130-4",
          "invoices": [
            {
              "amount": 17.46,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 17.46,
          "net_price": 0,
          "normed_amount": 17.46,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.7
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 81.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            }
          ],
          "date": "2018-10-08",
          "delivery_number": "10131-3",
          "invoices": [
            {
              "amount": 29.72,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.72,
          "net_price": 0,
          "normed_amount": 29.72,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-27",
          "delivery_number": "10610-1",
          "invoices": [
            {
              "amount": 29.151,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.18,
          "net_price": 0,
          "normed_amount": 29.151,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.7
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10616-1",
          "invoices": [
            {
              "amount": 30.16,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.16,
          "net_price": 0,
          "normed_amount": 30.16,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10617-1",
          "invoices": [
            {
              "amount": 30.14,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.14,
          "net_price": 0,
          "normed_amount": 30.14,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10619-1",
          "invoices": [
            {
              "amount": 29.46,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.46,
          "net_price": 0,
          "normed_amount": 29.46,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10623-1",
          "invoices": [
            {
              "amount": 29.82,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.82,
          "net_price": 0,
          "normed_amount": 29.82,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10631-1",
          "invoices": [
            {
              "amount": 29.76,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.76,
          "net_price": 0,
          "normed_amount": 29.76,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-29",
          "delivery_number": "10635-1",
          "invoices": [
            {
              "amount": 30.04,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.04,
          "net_price": 0,
          "normed_amount": 30.04,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.8
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-29",
          "delivery_number": "10644-1",
          "invoices": [
            {
              "amount": 29.82,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.82,
          "net_price": 0,
          "normed_amount": 29.82,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10647-1",
          "invoices": [
            {
              "amount": 30.34,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.34,
          "net_price": 0,
          "normed_amount": 30.34,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.2
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10648-1",
          "invoices": [
            {
              "amount": 29.96,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.96,
          "net_price": 0,
          "normed_amount": 29.96,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10649-1",
          "invoices": [
            {
              "amount": 29.64,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.64,
          "net_price": 0,
          "normed_amount": 29.64,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.8
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10650-1",
          "invoices": [
            {
              "amount": 29.94,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.94,
          "net_price": 0,
          "normed_amount": 29.94,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10651-1",
          "invoices": [
            {
              "amount": 30.3,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.3,
          "net_price": 0,
          "normed_amount": 30.3,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.1
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10666-1",
          "invoices": [
            {
              "amount": 30.04,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.04,
          "net_price": 0,
          "normed_amount": 30.04,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10667-1",
          "invoices": [
            {
              "amount": 29.88,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.88,
          "net_price": 0,
          "normed_amount": 29.88,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10668-1",
          "invoices": [
            {
              "amount": 30.22,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.22,
          "net_price": 0,
          "normed_amount": 30.22,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10669-1",
          "invoices": [
            {
              "amount": 29.48,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.48,
          "net_price": 0,
          "normed_amount": 29.48,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10670-1",
          "invoices": [
            {
              "amount": 29.62,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.62,
          "net_price": 0,
          "normed_amount": 29.62,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "215593",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE BPMF BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 100,
      "termination_date": "2019-03-31",
      "total_amount": 700,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "200749-000",
      "date": "2017-11-29",
      "delivered_amount": 160,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.9
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "10051-1",
          "invoices": [
            {
              "amount": 30.08,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 30.08,
          "net_price": 0,
          "normed_amount": 30.08,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "10063-1",
          "invoices": [
            {
              "amount": 29.94,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 29.94,
          "net_price": 0,
          "normed_amount": 29.94,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 81
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            }
          ],
          "date": "2018-10-04",
          "delivery_number": "10102-1",
          "invoices": [
            {
              "amount": 28.16,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 28.16,
          "net_price": 0,
          "normed_amount": 28.16,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-05",
          "delivery_number": "10121-1",
          "invoices": [
            {
              "amount": 29.38,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 29.38,
          "net_price": 0,
          "normed_amount": 29.38,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-10-05",
          "delivery_number": "10123-1",
          "invoices": [
            {
              "amount": 29.94,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 29.94,
          "net_price": 0,
          "normed_amount": 29.94,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            }
          ],
          "date": "2018-10-08",
          "delivery_number": "10130-1",
          "invoices": [
            {
              "amount": 12.5,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 12.5,
          "net_price": 0,
          "normed_amount": 12.5,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "215592",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE FRUCTIDOR BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 22,
      "termination_date": "2019-03-31",
      "total_amount": 160,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7.273
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "200748-000",
      "date": "2017-11-29",
      "delivered_amount": 180,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.7
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8374-1",
          "invoices": [
            {
              "amount": 29.561,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 29.62,
          "net_price": 0,
          "normed_amount": 29.561,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.7
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8375-1",
          "invoices": [
            {
              "amount": 29.561,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 29.62,
          "net_price": 0,
          "normed_amount": 29.561,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8376-1",
          "invoices": [
            {
              "amount": 29.83,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 29.86,
          "net_price": 0,
          "normed_amount": 29.83,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.7
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8377-1",
          "invoices": [
            {
              "amount": 30.02,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 30.08,
          "net_price": 0,
          "normed_amount": 30.02,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.7
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.2
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8378-3",
          "invoices": [
            {
              "amount": 29.551,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 29.64,
          "net_price": 0,
          "normed_amount": 29.551,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 15.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8382-1",
          "invoices": [
            {
              "amount": 29.909,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 30.18,
          "net_price": 0,
          "normed_amount": 29.909,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 15.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8383-1",
          "invoices": [
            {
              "amount": 1.568,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 1.582,
          "net_price": 0,
          "normed_amount": 1.568,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "215591",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE OREGRAIN BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 25,
      "termination_date": "2019-03-31",
      "total_amount": 180,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7.2
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "164912-000",
      "date": "2017-07-13",
      "delivered_amount": 60,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.7
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29890-1",
          "invoices": [
            {
              "amount": 19.501,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 158.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 156
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 158.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.54,
          "net_price": 0,
          "normed_amount": 19.501,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29891-1",
          "invoices": [
            {
              "amount": 19.52,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 158.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 156
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 158.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.52,
          "net_price": 0,
          "normed_amount": 19.52,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.2
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29898-1",
          "invoices": [
            {
              "amount": 18.86,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 158.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 156
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 158.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 18.86,
          "net_price": 0,
          "normed_amount": 18.86,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29899-1",
          "invoices": [
            {
              "amount": 2.119,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 158.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 156
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 158.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 2.119,
          "net_price": 0,
          "normed_amount": 2.119,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "180530",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 156,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2019-02-28",
      "total_amount": 60,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": null,
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "EHC-000038-0",
      "date": "2018-09-20",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "0",
      "is_closed": false,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Echantillon Hors Contrat",
      "price": 0,
      "product_name": "BLE BPMF MEUNERIE",
      "quality_bonus": 0,
      "samples": [
        {
          "cell_varieties": [
            {
              "cell": "STAB",
              "variety": "AUCKLAND"
            }
          ],
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.1
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 74.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.2
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 433
            },
            {
              "code": "01",
              "label": "Humidité",
              "value": 11.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 75.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.8
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 436
            }
          ],
          "date": "2018-09-20",
          "number": "0",
          "quantity": 0
        }
      ],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": null,
      "total_amount": 0,
      "type": "EHC",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    }
  ]
}

Validation #509

Failure

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

  • The property '#/contracts/0/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/1/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/1/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/1' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/2/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/2/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/2' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/3/amount_to_deliver' did not have a minimum value of 0, inclusively in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/3/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/3/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/3/samples/0/cell_varieties/0/variety' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb#
  • The property '#/contracts/3' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/4/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/4/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/4' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/5' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/5/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/5/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/5' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/6' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/6/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/6/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/6' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/7' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/7/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/7/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/7' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/8' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/8/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/8/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/8' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/9/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/9/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/9' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/10' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/10/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/10/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/10' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/11' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/11/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/11/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/11' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/12' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/12/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/12/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/12' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/13' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/13/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/13/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/13' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14/commencement_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14/termination_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultCellVariety_776": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "cell": {
          "type": "string"
        },
        "variety": {
          "type": "string"
        }
      },
      "required": [
        "cell",
        "variety"
      ],
      "title": "CellVariety - DefaultCellVariety",
      "type": "object"
    },
    "DefaultSample_778": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "cell_varieties": {
          "items": {
            "$ref": "#/definitions/DefaultCellVariety_776",
            "type": "object"
          },
          "type": "array"
        },
        "characteristics": {
          "items": {
            "$ref": "#/definitions/SampleCharacteristic_777",
            "type": "object"
          },
          "type": "array"
        },
        "date": {
          "description": "The ISO 8601 date format (%Y-%m-%d)",
          "format": "datetime",
          "type": "string"
        },
        "number": {
          "type": "string"
        },
        "quantity": {
          "minimum": 0,
          "type": "number"
        }
      },
      "required": [
        "cell_varieties",
        "characteristics",
        "date",
        "number",
        "quantity"
      ],
      "title": "Sample - DefaultSample",
      "type": "object"
    },
    "DefaultSettlement_560": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "amount": {
          "minimum": 0,
          "type": "number"
        },
        "date": {
          "format": "date",
          "type": "string"
        },
        "price": {
          "minimum": 0,
          "type": "number"
        },
        "status": {
          "description": "0 => nothing special, 1 => to validate",
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        }
      },
      "required": [
        "amount",
        "date",
        "price",
        "status"
      ],
      "title": "Settlement - DefaultSettlement",
      "type": "object"
    },
    "SampleCharacteristic_777": {
      "additionalProperties": false,
      "properties": {
        "code": {
          "type": "string"
        },
        "label": {
          "type": "string"
        },
        "value": {
          "minimum": 0,
          "type": "number"
        }
      },
      "required": [
        "code",
        "label",
        "value"
      ],
      "title": "Characteristic - SampleCharacteristic",
      "type": "object"
    },
    "minimalContract_770": {
      "additionalProperties": false,
      "properties": {
        "crm_id": {
          "description": "numContratOrigin",
          "type": "string"
        },
        "id": {
          "description": "numContratOrigin",
          "pattern": "\\d*",
          "type": "string"
        }
      },
      "required": [
        "crm_id",
        "id"
      ],
      "title": "Contract - minimalContract",
      "type": "object"
    }
  },
  "description": "Automatically generated (please edit me)",
  "properties": {
    "contracts": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "amount_to_deliver": {
            "description": "qteSoldeContrat",
            "minimum": 0,
            "type": "number"
          },
          "amount_to_deposit": {
            "minimum": 0,
            "type": "number"
          },
          "closing_date": {
            "description": "backend Data (settlement_price) : closingDate",
            "format": "date",
            "type": "string"
          },
          "commencement_date": {
            "description": "dateExecDebut",
            "format": "date",
            "type": "string"
          },
          "commodity": {
            "anyOf": [
              {
                "description": "codeContratTerme",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "commodity_id": {
            "anyOf": [
              {
                "description": "backend Data (settlement_price) : sflCommodity",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "contracts": {
            "items": {
              "$ref": "#/definitions/minimalContract_770",
              "type": "object"
            },
            "type": "array"
          },
          "crm_id": {
            "description": "numContratOrigin",
            "type": "string"
          },
          "date": {
            "description": "dateContrat",
            "format": "date",
            "type": "string"
          },
          "delivered_amount": {
            "description": "qteLivreContrat",
            "minimum": 0,
            "type": "number"
          },
          "deposited_amount": {
            "description": "qteLivreDepot",
            "minimum": 0,
            "type": "number"
          },
          "fiscal_year": {
            "description": "campagne",
            "maximum": 2018,
            "minimum": 2017,
            "type": "integer"
          },
          "gain": {
            "description": "gain",
            "type": "number"
          },
          "id": {
            "description": "numContratOrigin",
            "pattern": "\\d*",
            "type": "string"
          },
          "is_closed": {
            "description": "clotureContrat == 'OUI'",
            "type": "boolean"
          },
          "itk_feedback": {
            "anyOf": [
              {
                "description": "itkFeedback\r\nDirectement la chaîne à afficher. Valeurs possibles : pas de retour, retour papier ou retour electronique",
                "enum": [
                  "pas de retour",
                  "retour papier",
                  "retour electronique"
                ],
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "maturity": {
            "anyOf": [
              {
                "description": "echeanceMatif",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "maturity_id": {
            "anyOf": [
              {
                "description": "backend Data (settlement_price) : sflMaturity",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "minimum_price": {
            "description": "prixMini",
            "minimum": 0,
            "type": "number"
          },
          "name": {
            "description": "libContrat",
            "type": "string"
          },
          "price": {
            "description": "prixContrat",
            "minimum": 0,
            "type": "number"
          },
          "product_name": {
            "description": "libProduitContrat",
            "type": "string"
          },
          "quality_bonus": {
            "anyOf": [
              {
                "description": "qualityBonus",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "samples": {
            "items": {
              "$ref": "#/definitions/DefaultSample_778",
              "type": "object"
            },
            "type": "array"
          },
          "settlement_price": {
            "anyOf": [
              {
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "settlements": {
            "items": {
              "$ref": "#/definitions/DefaultSettlement_560",
              "type": "object"
            },
            "type": "array"
          },
          "special_bonus": {
            "anyOf": [
              {
                "description": "specialBonus",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "strike": {
            "description": "cotation",
            "type": "number"
          },
          "surface": {
            "anyOf": [
              {
                "description": "surface",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "termination_date": {
            "description": "dateExecFin",
            "format": "date",
            "type": "string"
          },
          "total_amount": {
            "description": "qteContrat",
            "minimum": 0,
            "type": "number"
          },
          "type": {
            "description": "typeContrat",
            "type": "string"
          },
          "variety": {
            "description": "codFamOpticollecte",
            "type": "string"
          },
          "variety_name": {
            "description": "libFamOpticollecte",
            "type": "string"
          },
          "variety_standard_deviation": {
            "anyOf": [
              {
                "description": "varietyStandardDeviation",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "warranty_cost": {
            "description": "primeOption",
            "minimum": 0,
            "type": "number"
          },
          "yield": {
            "anyOf": [
              {
                "description": "yield",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "required": [
          "amount_to_deliver",
          "amount_to_deposit",
          "closing_date",
          "commencement_date",
          "commodity",
          "commodity_id",
          "contracts",
          "crm_id",
          "date",
          "delivered_amount",
          "deposited_amount",
          "fiscal_year",
          "gain",
          "id",
          "is_closed",
          "itk_feedback",
          "maturity",
          "maturity_id",
          "name",
          "price",
          "product_name",
          "quality_bonus",
          "samples",
          "settlement_price",
          "settlements",
          "special_bonus",
          "strike",
          "surface",
          "termination_date",
          "total_amount",
          "type",
          "variety",
          "variety_name",
          "variety_standard_deviation",
          "yield"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "contracts"
  ],
  "title": "Contract - DefaultContract",
  "type": "object"
}

JSON instance

{
  "contracts": [
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [
        {
          "crm_id": "281488-000",
          "id": "295019"
        }
      ],
      "crm_id": "39457-000",
      "date": "2018-12-18",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "45359",
      "is_closed": false,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat d'Engagement",
      "price": 0,
      "product_name": "BLE OREGRAIN BAGUEPI",
      "quality_bonus": 2,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 7,
      "termination_date": "2019-03-31",
      "total_amount": 46.913,
      "type": "P01",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 2,
      "yield": 6.702
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [
        {
          "crm_id": "200749-000",
          "id": "215592"
        }
      ],
      "crm_id": "28847-000",
      "date": "2017-09-12",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "34697",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat d'Engagement",
      "price": 0,
      "product_name": "BLE FRUCTIDOR BAGUEPI",
      "quality_bonus": 2,
      "samples": [
        {
          "cell_varieties": [],
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 78.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.5
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 419
            },
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 78.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.5
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 419
            }
          ],
          "date": "2018-09-20",
          "number": "535090317515346",
          "quantity": 0
        }
      ],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 22,
      "termination_date": "2019-03-31",
      "total_amount": 160,
      "type": "P01",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 2,
      "yield": 7.273
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [
        {
          "crm_id": "200748-000",
          "id": "215591"
        }
      ],
      "crm_id": "28846-000",
      "date": "2017-09-12",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "34696",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat d'Engagement",
      "price": 0,
      "product_name": "BLE OREGRAIN BAGUEPI",
      "quality_bonus": 2,
      "samples": [
        {
          "cell_varieties": [],
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.9
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 79.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.2
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 371
            }
          ],
          "date": "2018-09-20",
          "number": "535090317515342",
          "quantity": 0
        }
      ],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 25,
      "termination_date": "2019-03-31",
      "total_amount": 180,
      "type": "P01",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 3,
      "yield": 7.2
    },
    {
      "amount_to_deliver": -68.136,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [
        {
          "crm_id": "200750-000",
          "id": "215593"
        },
        {
          "crm_id": "200750-001",
          "id": "215593"
        }
      ],
      "crm_id": "28845-000",
      "date": "2017-09-12",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "34695",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat d'Engagement",
      "price": 0,
      "product_name": "BLE BPMF BAGUEPI",
      "quality_bonus": 2,
      "samples": [
        {
          "cell_varieties": [
            {
              "cell": "PIN GAUCHE",
              "variety": null
            }
          ],
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.3
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 78.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.5
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 303
            },
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.2
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 80
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.3
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 319
            }
          ],
          "date": "2018-09-20",
          "number": "535090317515336",
          "quantity": 0
        }
      ],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 100,
      "termination_date": "2019-03-31",
      "total_amount": 700,
      "type": "P01",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7
    },
    {
      "amount_to_deliver": 200,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2019-01-31",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "284710-000",
      "date": "2019-01-21",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "298280",
      "is_closed": false,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 174,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2019-03-30",
      "total_amount": 200,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "281488-000",
      "date": "2018-12-18",
      "delivered_amount": 46.913,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 15.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8383-4",
          "invoices": [
            {
              "amount": 28.024,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 28.278,
          "net_price": 0,
          "normed_amount": 28.024,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 15.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8384-3",
          "invoices": [
            {
              "amount": 18.889,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                },
                {
                  "code": "C1",
                  "label": "Approche",
                  "value": 2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 163.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 17
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 19.06,
          "net_price": 0,
          "normed_amount": 18.889,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "295019",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE OREGRAIN BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 7,
      "termination_date": "2019-03-31",
      "total_amount": 46.913,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 6.702
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-07-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "281168-000",
      "date": "2018-12-14",
      "delivered_amount": 160.783,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 74.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            }
          ],
          "date": "2018-07-09",
          "delivery_number": "11963-7",
          "invoices": [
            {
              "amount": 14.985,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 15.06,
          "net_price": 0,
          "normed_amount": 14.985,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 75.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.8
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "11998-7",
          "invoices": [
            {
              "amount": 16.477,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 163.96
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": -8.04
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.96
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 16.56,
          "net_price": 0,
          "normed_amount": 16.477,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.7
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12011-7",
          "invoices": [
            {
              "amount": 12.935,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 13,
          "net_price": 0,
          "normed_amount": 12.935,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12020-7",
          "invoices": [
            {
              "amount": 13.333,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 13.4,
          "net_price": 0,
          "normed_amount": 13.333,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.2
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.7
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12023-7",
          "invoices": [
            {
              "amount": 15.224,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 15.3,
          "net_price": 0,
          "normed_amount": 15.224,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 75.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12033-7",
          "invoices": [
            {
              "amount": 15.263,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 15.34,
          "net_price": 0,
          "normed_amount": 15.263,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.6
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12038-7",
          "invoices": [
            {
              "amount": 13.054,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 13.12,
          "net_price": 0,
          "normed_amount": 13.054,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.2
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12044-7",
          "invoices": [
            {
              "amount": 17.134,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 163.96
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": -8.04
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.96
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 17.22,
          "net_price": 0,
          "normed_amount": 17.134,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.9
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12052-7",
          "invoices": [
            {
              "amount": 15.502,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 15.58,
          "net_price": 0,
          "normed_amount": 15.502,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12073-7",
          "invoices": [
            {
              "amount": 6.786,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 6.82,
          "net_price": 0,
          "normed_amount": 6.786,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.9
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12
            }
          ],
          "date": "2018-07-11",
          "delivery_number": "12166-7",
          "invoices": [
            {
              "amount": 12.666,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 163.96
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": -8.04
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.96
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 12.729,
          "net_price": 0,
          "normed_amount": 12.666,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.9
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12
            }
          ],
          "date": "2018-07-11",
          "delivery_number": "12166-10",
          "invoices": [
            {
              "amount": 3.712,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 163.959
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": -8.041
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.959
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 3.731,
          "net_price": 0,
          "normed_amount": 3.712,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29929-17",
          "invoices": [
            {
              "amount": 3.712,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 174.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 174.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 3.716,
          "net_price": 0,
          "normed_amount": 3.712,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "294660",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 172,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2018-08-31",
      "total_amount": 157.071,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "249749-000",
      "date": "2018-08-03",
      "delivered_amount": 85,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29899-4",
          "invoices": [
            {
              "amount": 17.801,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 17.801,
          "net_price": 0,
          "normed_amount": 17.801,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29912-1",
          "invoices": [
            {
              "amount": 19.16,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.16,
          "net_price": 0,
          "normed_amount": 19.16,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 74.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.9
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29913-1",
          "invoices": [
            {
              "amount": 19.12,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.12,
          "net_price": 0,
          "normed_amount": 19.12,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 75.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.8
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29915-1",
          "invoices": [
            {
              "amount": 11.84,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 11.84,
          "net_price": 0,
          "normed_amount": 11.84,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29918-1",
          "invoices": [
            {
              "amount": 17.079,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 17.079,
          "net_price": 0,
          "normed_amount": 17.079,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "264111",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 187,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2019-03-30",
      "total_amount": 85,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2019-01-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "235318-000",
      "date": "2018-06-19",
      "delivered_amount": 90,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29918-4",
          "invoices": [
            {
              "amount": 2.121,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 2.121,
          "net_price": 0,
          "normed_amount": 2.121,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29919-3",
          "invoices": [
            {
              "amount": 19.02,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.02,
          "net_price": 0,
          "normed_amount": 19.02,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.7
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.1
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29920-3",
          "invoices": [
            {
              "amount": 18.921,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 18.94,
          "net_price": 0,
          "normed_amount": 18.921,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 75.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29923-3",
          "invoices": [
            {
              "amount": 18.96,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 18.96,
          "net_price": 0,
          "normed_amount": 18.96,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.1
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29928-3",
          "invoices": [
            {
              "amount": 19.62,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.64,
          "net_price": 0,
          "normed_amount": 19.62,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29929-3",
          "invoices": [
            {
              "amount": 11.358,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 11.369,
          "net_price": 0,
          "normed_amount": 11.358,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "249918",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 151,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2019-03-30",
      "total_amount": 90,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 68.136,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "200750-001",
      "date": "2018-12-18",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "215593",
      "is_closed": false,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE BPMF BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 9.73,
      "termination_date": "2019-03-31",
      "total_amount": 68.136,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "200750-000",
      "date": "2017-11-29",
      "delivered_amount": 584.951,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            }
          ],
          "date": "2018-10-08",
          "delivery_number": "10130-4",
          "invoices": [
            {
              "amount": 17.46,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 17.46,
          "net_price": 0,
          "normed_amount": 17.46,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.7
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 81.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            }
          ],
          "date": "2018-10-08",
          "delivery_number": "10131-3",
          "invoices": [
            {
              "amount": 29.72,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.72,
          "net_price": 0,
          "normed_amount": 29.72,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-27",
          "delivery_number": "10610-1",
          "invoices": [
            {
              "amount": 29.151,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.18,
          "net_price": 0,
          "normed_amount": 29.151,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.7
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10616-1",
          "invoices": [
            {
              "amount": 30.16,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.16,
          "net_price": 0,
          "normed_amount": 30.16,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10617-1",
          "invoices": [
            {
              "amount": 30.14,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.14,
          "net_price": 0,
          "normed_amount": 30.14,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10619-1",
          "invoices": [
            {
              "amount": 29.46,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.46,
          "net_price": 0,
          "normed_amount": 29.46,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10623-1",
          "invoices": [
            {
              "amount": 29.82,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.82,
          "net_price": 0,
          "normed_amount": 29.82,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10631-1",
          "invoices": [
            {
              "amount": 29.76,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.76,
          "net_price": 0,
          "normed_amount": 29.76,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-29",
          "delivery_number": "10635-1",
          "invoices": [
            {
              "amount": 30.04,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.04,
          "net_price": 0,
          "normed_amount": 30.04,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.8
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-29",
          "delivery_number": "10644-1",
          "invoices": [
            {
              "amount": 29.82,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.82,
          "net_price": 0,
          "normed_amount": 29.82,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10647-1",
          "invoices": [
            {
              "amount": 30.34,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.34,
          "net_price": 0,
          "normed_amount": 30.34,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.2
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10648-1",
          "invoices": [
            {
              "amount": 29.96,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.96,
          "net_price": 0,
          "normed_amount": 29.96,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10649-1",
          "invoices": [
            {
              "amount": 29.64,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.64,
          "net_price": 0,
          "normed_amount": 29.64,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.8
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10650-1",
          "invoices": [
            {
              "amount": 29.94,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.94,
          "net_price": 0,
          "normed_amount": 29.94,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10651-1",
          "invoices": [
            {
              "amount": 30.3,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.3,
          "net_price": 0,
          "normed_amount": 30.3,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.1
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10666-1",
          "invoices": [
            {
              "amount": 30.04,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.04,
          "net_price": 0,
          "normed_amount": 30.04,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10667-1",
          "invoices": [
            {
              "amount": 29.88,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.88,
          "net_price": 0,
          "normed_amount": 29.88,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10668-1",
          "invoices": [
            {
              "amount": 30.22,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.22,
          "net_price": 0,
          "normed_amount": 30.22,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10669-1",
          "invoices": [
            {
              "amount": 29.48,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.48,
          "net_price": 0,
          "normed_amount": 29.48,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10670-1",
          "invoices": [
            {
              "amount": 29.62,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.62,
          "net_price": 0,
          "normed_amount": 29.62,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "215593",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE BPMF BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 100,
      "termination_date": "2019-03-31",
      "total_amount": 700,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "200749-000",
      "date": "2017-11-29",
      "delivered_amount": 160,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.9
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "10051-1",
          "invoices": [
            {
              "amount": 30.08,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 30.08,
          "net_price": 0,
          "normed_amount": 30.08,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "10063-1",
          "invoices": [
            {
              "amount": 29.94,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 29.94,
          "net_price": 0,
          "normed_amount": 29.94,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 81
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            }
          ],
          "date": "2018-10-04",
          "delivery_number": "10102-1",
          "invoices": [
            {
              "amount": 28.16,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 28.16,
          "net_price": 0,
          "normed_amount": 28.16,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-05",
          "delivery_number": "10121-1",
          "invoices": [
            {
              "amount": 29.38,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 29.38,
          "net_price": 0,
          "normed_amount": 29.38,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-10-05",
          "delivery_number": "10123-1",
          "invoices": [
            {
              "amount": 29.94,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 29.94,
          "net_price": 0,
          "normed_amount": 29.94,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            }
          ],
          "date": "2018-10-08",
          "delivery_number": "10130-1",
          "invoices": [
            {
              "amount": 12.5,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 12.5,
          "net_price": 0,
          "normed_amount": 12.5,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "215592",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE FRUCTIDOR BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 22,
      "termination_date": "2019-03-31",
      "total_amount": 160,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7.273
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "200748-000",
      "date": "2017-11-29",
      "delivered_amount": 180,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.7
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8374-1",
          "invoices": [
            {
              "amount": 29.561,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 29.62,
          "net_price": 0,
          "normed_amount": 29.561,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.7
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8375-1",
          "invoices": [
            {
              "amount": 29.561,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 29.62,
          "net_price": 0,
          "normed_amount": 29.561,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8376-1",
          "invoices": [
            {
              "amount": 29.83,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 29.86,
          "net_price": 0,
          "normed_amount": 29.83,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.7
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8377-1",
          "invoices": [
            {
              "amount": 30.02,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 30.08,
          "net_price": 0,
          "normed_amount": 30.02,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.7
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.2
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8378-3",
          "invoices": [
            {
              "amount": 29.551,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 29.64,
          "net_price": 0,
          "normed_amount": 29.551,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 15.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8382-1",
          "invoices": [
            {
              "amount": 29.909,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 30.18,
          "net_price": 0,
          "normed_amount": 29.909,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 15.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8383-1",
          "invoices": [
            {
              "amount": 1.568,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 1.582,
          "net_price": 0,
          "normed_amount": 1.568,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "215591",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE OREGRAIN BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 25,
      "termination_date": "2019-03-31",
      "total_amount": 180,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7.2
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "164912-000",
      "date": "2017-07-13",
      "delivered_amount": 60,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.7
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29890-1",
          "invoices": [
            {
              "amount": 19.501,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 158.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 156
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 158.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.54,
          "net_price": 0,
          "normed_amount": 19.501,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29891-1",
          "invoices": [
            {
              "amount": 19.52,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 158.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 156
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 158.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.52,
          "net_price": 0,
          "normed_amount": 19.52,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.2
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29898-1",
          "invoices": [
            {
              "amount": 18.86,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 158.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 156
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 158.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 18.86,
          "net_price": 0,
          "normed_amount": 18.86,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29899-1",
          "invoices": [
            {
              "amount": 2.119,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 158.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 156
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 158.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 2.119,
          "net_price": 0,
          "normed_amount": 2.119,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "180530",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 156,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2019-02-28",
      "total_amount": 60,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": null,
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "EHC-000038-0",
      "date": "2018-09-20",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "0",
      "is_closed": false,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Echantillon Hors Contrat",
      "price": 0,
      "product_name": "BLE BPMF MEUNERIE",
      "quality_bonus": 0,
      "samples": [
        {
          "cell_varieties": [
            {
              "cell": "STAB",
              "variety": "AUCKLAND"
            }
          ],
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.1
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 74.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.2
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 433
            },
            {
              "code": "01",
              "label": "Humidité",
              "value": 11.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 75.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.8
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 436
            }
          ],
          "date": "2018-09-20",
          "number": "0",
          "quantity": 0
        }
      ],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": null,
      "total_amount": 0,
      "type": "EHC",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    }
  ]
}

Validation #508

Failure

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

  • The property '#/contracts/0/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/0' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/1/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/1/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/1' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/2/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/2/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/2' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/3/amount_to_deliver' did not have a minimum value of 0, inclusively in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/3/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/3/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/3/samples/0/cell_varieties/0/variety' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb#
  • The property '#/contracts/3' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/4/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/4/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/4' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/5' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/5/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/5/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/5' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/6' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/6/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/6/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/6' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/7' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/7/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/7/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/7' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/8' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/8/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/8/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/8' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/9/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/9/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/9' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/10' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/10/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/10/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/10' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/11' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/11/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/11/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/11' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/12' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/12/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/12/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/12' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/13' contains additional properties ["deliveries"] outside of the schema when none are allowed in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/13/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/13/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/13' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14/amount_to_deposit' of type null did not match the following type: number in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14/closing_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14/commencement_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14/termination_date' of type null did not match the following type: string in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb
  • The property '#/contracts/14' did not contain a required property of 'settlements' in schema eafe8d92-41c7-54d5-b145-d2fc2c103afb

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultCellVariety_776": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "cell": {
          "type": "string"
        },
        "variety": {
          "type": "string"
        }
      },
      "required": [
        "cell",
        "variety"
      ],
      "title": "CellVariety - DefaultCellVariety",
      "type": "object"
    },
    "DefaultSample_778": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "cell_varieties": {
          "items": {
            "$ref": "#/definitions/DefaultCellVariety_776",
            "type": "object"
          },
          "type": "array"
        },
        "characteristics": {
          "items": {
            "$ref": "#/definitions/SampleCharacteristic_777",
            "type": "object"
          },
          "type": "array"
        },
        "date": {
          "description": "The ISO 8601 date format (%Y-%m-%d)",
          "format": "datetime",
          "type": "string"
        },
        "number": {
          "type": "string"
        },
        "quantity": {
          "minimum": 0,
          "type": "number"
        }
      },
      "required": [
        "cell_varieties",
        "characteristics",
        "date",
        "number",
        "quantity"
      ],
      "title": "Sample - DefaultSample",
      "type": "object"
    },
    "DefaultSettlement_560": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "amount": {
          "minimum": 0,
          "type": "number"
        },
        "date": {
          "format": "date",
          "type": "string"
        },
        "price": {
          "minimum": 0,
          "type": "number"
        },
        "status": {
          "description": "0 => nothing special, 1 => to validate",
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        }
      },
      "required": [
        "amount",
        "date",
        "price",
        "status"
      ],
      "title": "Settlement - DefaultSettlement",
      "type": "object"
    },
    "SampleCharacteristic_777": {
      "additionalProperties": false,
      "properties": {
        "code": {
          "type": "string"
        },
        "label": {
          "type": "string"
        },
        "value": {
          "minimum": 0,
          "type": "number"
        }
      },
      "required": [
        "code",
        "label",
        "value"
      ],
      "title": "Characteristic - SampleCharacteristic",
      "type": "object"
    },
    "minimalContract_770": {
      "additionalProperties": false,
      "properties": {
        "crm_id": {
          "description": "numContratOrigin",
          "type": "string"
        },
        "id": {
          "description": "numContratOrigin",
          "pattern": "\\d*",
          "type": "string"
        }
      },
      "required": [
        "crm_id",
        "id"
      ],
      "title": "Contract - minimalContract",
      "type": "object"
    }
  },
  "description": "Automatically generated (please edit me)",
  "properties": {
    "contracts": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "amount_to_deliver": {
            "description": "qteSoldeContrat",
            "minimum": 0,
            "type": "number"
          },
          "amount_to_deposit": {
            "minimum": 0,
            "type": "number"
          },
          "closing_date": {
            "description": "backend Data (settlement_price) : closingDate",
            "format": "date",
            "type": "string"
          },
          "commencement_date": {
            "description": "dateExecDebut",
            "format": "date",
            "type": "string"
          },
          "commodity": {
            "anyOf": [
              {
                "description": "codeContratTerme",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "commodity_id": {
            "anyOf": [
              {
                "description": "backend Data (settlement_price) : sflCommodity",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "contracts": {
            "items": {
              "$ref": "#/definitions/minimalContract_770",
              "type": "object"
            },
            "type": "array"
          },
          "crm_id": {
            "description": "numContratOrigin",
            "type": "string"
          },
          "date": {
            "description": "dateContrat",
            "format": "date",
            "type": "string"
          },
          "delivered_amount": {
            "description": "qteLivreContrat",
            "minimum": 0,
            "type": "number"
          },
          "deposited_amount": {
            "description": "qteLivreDepot",
            "minimum": 0,
            "type": "number"
          },
          "fiscal_year": {
            "description": "campagne",
            "maximum": 2018,
            "minimum": 2017,
            "type": "integer"
          },
          "gain": {
            "description": "gain",
            "type": "number"
          },
          "id": {
            "description": "numContratOrigin",
            "pattern": "\\d*",
            "type": "string"
          },
          "is_closed": {
            "description": "clotureContrat == 'OUI'",
            "type": "boolean"
          },
          "itk_feedback": {
            "anyOf": [
              {
                "description": "itkFeedback\r\nDirectement la chaîne à afficher. Valeurs possibles : pas de retour, retour papier ou retour electronique",
                "enum": [
                  "pas de retour",
                  "retour papier",
                  "retour electronique"
                ],
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "maturity": {
            "anyOf": [
              {
                "description": "echeanceMatif",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "maturity_id": {
            "anyOf": [
              {
                "description": "backend Data (settlement_price) : sflMaturity",
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "minimum_price": {
            "description": "prixMini",
            "minimum": 0,
            "type": "number"
          },
          "name": {
            "description": "libContrat",
            "type": "string"
          },
          "price": {
            "description": "prixContrat",
            "minimum": 0,
            "type": "number"
          },
          "product_name": {
            "description": "libProduitContrat",
            "type": "string"
          },
          "quality_bonus": {
            "anyOf": [
              {
                "description": "qualityBonus",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "samples": {
            "items": {
              "$ref": "#/definitions/DefaultSample_778",
              "type": "object"
            },
            "type": "array"
          },
          "settlement_price": {
            "anyOf": [
              {
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "settlements": {
            "items": {
              "$ref": "#/definitions/DefaultSettlement_560",
              "type": "object"
            },
            "type": "array"
          },
          "special_bonus": {
            "anyOf": [
              {
                "description": "specialBonus",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "strike": {
            "description": "cotation",
            "type": "number"
          },
          "surface": {
            "anyOf": [
              {
                "description": "surface",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "termination_date": {
            "description": "dateExecFin",
            "format": "date",
            "type": "string"
          },
          "total_amount": {
            "description": "qteContrat",
            "minimum": 0,
            "type": "number"
          },
          "type": {
            "description": "typeContrat",
            "type": "string"
          },
          "variety": {
            "description": "codFamOpticollecte",
            "type": "string"
          },
          "variety_name": {
            "description": "libFamOpticollecte",
            "type": "string"
          },
          "variety_standard_deviation": {
            "anyOf": [
              {
                "description": "varietyStandardDeviation",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          },
          "warranty_cost": {
            "description": "primeOption",
            "minimum": 0,
            "type": "number"
          },
          "yield": {
            "anyOf": [
              {
                "description": "yield",
                "minimum": 0,
                "type": "number"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "required": [
          "amount_to_deliver",
          "amount_to_deposit",
          "closing_date",
          "commencement_date",
          "commodity",
          "commodity_id",
          "contracts",
          "crm_id",
          "date",
          "delivered_amount",
          "deposited_amount",
          "fiscal_year",
          "gain",
          "id",
          "is_closed",
          "itk_feedback",
          "maturity",
          "maturity_id",
          "name",
          "price",
          "product_name",
          "quality_bonus",
          "samples",
          "settlement_price",
          "settlements",
          "special_bonus",
          "strike",
          "surface",
          "termination_date",
          "total_amount",
          "type",
          "variety",
          "variety_name",
          "variety_standard_deviation",
          "yield"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "contracts"
  ],
  "title": "Contract - DefaultContract",
  "type": "object"
}

JSON instance

{
  "contracts": [
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [
        {
          "crm_id": "281488-000",
          "id": "295019"
        }
      ],
      "crm_id": "39457-000",
      "date": "2018-12-18",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "45359",
      "is_closed": false,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat d'Engagement",
      "price": 0,
      "product_name": "BLE OREGRAIN BAGUEPI",
      "quality_bonus": 2,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 7,
      "termination_date": "2019-03-31",
      "total_amount": 46.913,
      "type": "P01",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 2,
      "yield": 6.702
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [
        {
          "crm_id": "200749-000",
          "id": "215592"
        }
      ],
      "crm_id": "28847-000",
      "date": "2017-09-12",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "34697",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat d'Engagement",
      "price": 0,
      "product_name": "BLE FRUCTIDOR BAGUEPI",
      "quality_bonus": 2,
      "samples": [
        {
          "cell_varieties": [],
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 78.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.5
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 419
            },
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 78.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.5
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 419
            }
          ],
          "date": "2018-09-20",
          "number": "535090317515346",
          "quantity": 0
        }
      ],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 22,
      "termination_date": "2019-03-31",
      "total_amount": 160,
      "type": "P01",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 2,
      "yield": 7.273
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [
        {
          "crm_id": "200748-000",
          "id": "215591"
        }
      ],
      "crm_id": "28846-000",
      "date": "2017-09-12",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "34696",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat d'Engagement",
      "price": 0,
      "product_name": "BLE OREGRAIN BAGUEPI",
      "quality_bonus": 2,
      "samples": [
        {
          "cell_varieties": [],
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.9
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 79.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.2
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 371
            }
          ],
          "date": "2018-09-20",
          "number": "535090317515342",
          "quantity": 0
        }
      ],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 25,
      "termination_date": "2019-03-31",
      "total_amount": 180,
      "type": "P01",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 3,
      "yield": 7.2
    },
    {
      "amount_to_deliver": -68.136,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [
        {
          "crm_id": "200750-000",
          "id": "215593"
        },
        {
          "crm_id": "200750-001",
          "id": "215593"
        }
      ],
      "crm_id": "28845-000",
      "date": "2017-09-12",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "34695",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat d'Engagement",
      "price": 0,
      "product_name": "BLE BPMF BAGUEPI",
      "quality_bonus": 2,
      "samples": [
        {
          "cell_varieties": [
            {
              "cell": "PIN GAUCHE",
              "variety": null
            }
          ],
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.3
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 78.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.5
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 303
            },
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.2
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 80
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.3
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 319
            }
          ],
          "date": "2018-09-20",
          "number": "535090317515336",
          "quantity": 0
        }
      ],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 100,
      "termination_date": "2019-03-31",
      "total_amount": 700,
      "type": "P01",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7
    },
    {
      "amount_to_deliver": 200,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2019-01-31",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "284710-000",
      "date": "2019-01-21",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "298280",
      "is_closed": false,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 174,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2019-03-30",
      "total_amount": 200,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "281488-000",
      "date": "2018-12-18",
      "delivered_amount": 46.913,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 15.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8383-4",
          "invoices": [
            {
              "amount": 28.024,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 28.278,
          "net_price": 0,
          "normed_amount": 28.024,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 15.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8384-3",
          "invoices": [
            {
              "amount": 18.889,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                },
                {
                  "code": "C1",
                  "label": "Approche",
                  "value": 2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 163.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 17
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 19.06,
          "net_price": 0,
          "normed_amount": 18.889,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "295019",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE OREGRAIN BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 7,
      "termination_date": "2019-03-31",
      "total_amount": 46.913,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 6.702
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-07-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "281168-000",
      "date": "2018-12-14",
      "delivered_amount": 160.783,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 74.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            }
          ],
          "date": "2018-07-09",
          "delivery_number": "11963-7",
          "invoices": [
            {
              "amount": 14.985,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 15.06,
          "net_price": 0,
          "normed_amount": 14.985,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 75.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.8
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "11998-7",
          "invoices": [
            {
              "amount": 16.477,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 163.96
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": -8.04
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.96
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 16.56,
          "net_price": 0,
          "normed_amount": 16.477,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.7
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12011-7",
          "invoices": [
            {
              "amount": 12.935,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 13,
          "net_price": 0,
          "normed_amount": 12.935,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12020-7",
          "invoices": [
            {
              "amount": 13.333,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 13.4,
          "net_price": 0,
          "normed_amount": 13.333,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.2
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.7
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12023-7",
          "invoices": [
            {
              "amount": 15.224,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 15.3,
          "net_price": 0,
          "normed_amount": 15.224,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 75.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12033-7",
          "invoices": [
            {
              "amount": 15.263,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 15.34,
          "net_price": 0,
          "normed_amount": 15.263,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.6
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12038-7",
          "invoices": [
            {
              "amount": 13.054,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 13.12,
          "net_price": 0,
          "normed_amount": 13.054,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.2
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12044-7",
          "invoices": [
            {
              "amount": 17.134,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 163.96
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": -8.04
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.96
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 17.22,
          "net_price": 0,
          "normed_amount": 17.134,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.9
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12052-7",
          "invoices": [
            {
              "amount": 15.502,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 15.58,
          "net_price": 0,
          "normed_amount": 15.502,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            }
          ],
          "date": "2018-07-10",
          "delivery_number": "12073-7",
          "invoices": [
            {
              "amount": 6.786,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 172
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 172
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 6.82,
          "net_price": 0,
          "normed_amount": 6.786,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.9
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12
            }
          ],
          "date": "2018-07-11",
          "delivery_number": "12166-7",
          "invoices": [
            {
              "amount": 12.666,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 163.96
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": -8.04
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.96
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 12.729,
          "net_price": 0,
          "normed_amount": 12.666,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.9
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12
            }
          ],
          "date": "2018-07-11",
          "delivery_number": "12166-10",
          "invoices": [
            {
              "amount": 3.712,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 163.959
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": -8.041
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.959
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 3.731,
          "net_price": 0,
          "normed_amount": 3.712,
          "place_id": "0794",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "SUILLY LA TOUR",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29929-17",
          "invoices": [
            {
              "amount": 3.712,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2019-01-08",
                  "invoice_number": "16269889",
                  "label": "Décompte",
                  "net_price": 174.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 172
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 174.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 3.716,
          "net_price": 0,
          "normed_amount": 3.712,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "294660",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 172,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2018-08-31",
      "total_amount": 157.071,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "249749-000",
      "date": "2018-08-03",
      "delivered_amount": 85,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29899-4",
          "invoices": [
            {
              "amount": 17.801,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 17.801,
          "net_price": 0,
          "normed_amount": 17.801,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29912-1",
          "invoices": [
            {
              "amount": 19.16,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.16,
          "net_price": 0,
          "normed_amount": 19.16,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 74.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.9
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29913-1",
          "invoices": [
            {
              "amount": 19.12,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.12,
          "net_price": 0,
          "normed_amount": 19.12,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 75.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.8
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29915-1",
          "invoices": [
            {
              "amount": 11.84,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 11.84,
          "net_price": 0,
          "normed_amount": 11.84,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29918-1",
          "invoices": [
            {
              "amount": 17.079,
              "characteristics": [
                {
                  "code": "D1",
                  "label": "Déd. Direct Ferme",
                  "value": -2
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 187.325
                },
                {
                  "code": "COM",
                  "invoice_date": "2018-11-02",
                  "invoice_number": "16262428",
                  "label": "Complément Prix",
                  "net_price": 2
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 187
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": -2
                },
                {
                  "code": "XFAC06",
                  "label": "Frais Transport",
                  "value": 2
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 189.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 17.079,
          "net_price": 0,
          "normed_amount": 17.079,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "264111",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 187,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2019-03-30",
      "total_amount": 85,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2019-01-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "235318-000",
      "date": "2018-06-19",
      "delivered_amount": 90,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29918-4",
          "invoices": [
            {
              "amount": 2.121,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 2.121,
          "net_price": 0,
          "normed_amount": 2.121,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29919-3",
          "invoices": [
            {
              "amount": 19.02,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.02,
          "net_price": 0,
          "normed_amount": 19.02,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.7
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.1
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29920-3",
          "invoices": [
            {
              "amount": 18.921,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 18.94,
          "net_price": 0,
          "normed_amount": 18.921,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 75.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29923-3",
          "invoices": [
            {
              "amount": 18.96,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 18.96,
          "net_price": 0,
          "normed_amount": 18.96,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.1
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29928-3",
          "invoices": [
            {
              "amount": 19.62,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.64,
          "net_price": 0,
          "normed_amount": 19.62,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "29929-3",
          "invoices": [
            {
              "amount": 11.358,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 153.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 151
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 153.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 11.369,
          "net_price": 0,
          "normed_amount": 11.358,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "249918",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 151,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2019-03-30",
      "total_amount": 90,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 68.136,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "200750-001",
      "date": "2018-12-18",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "215593",
      "is_closed": false,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE BPMF BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 9.73,
      "termination_date": "2019-03-31",
      "total_amount": 68.136,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "200750-000",
      "date": "2017-11-29",
      "delivered_amount": 584.951,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            }
          ],
          "date": "2018-10-08",
          "delivery_number": "10130-4",
          "invoices": [
            {
              "amount": 17.46,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 17.46,
          "net_price": 0,
          "normed_amount": 17.46,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.7
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 81.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            }
          ],
          "date": "2018-10-08",
          "delivery_number": "10131-3",
          "invoices": [
            {
              "amount": 29.72,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.72,
          "net_price": 0,
          "normed_amount": 29.72,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-27",
          "delivery_number": "10610-1",
          "invoices": [
            {
              "amount": 29.151,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.18,
          "net_price": 0,
          "normed_amount": 29.151,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.7
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10616-1",
          "invoices": [
            {
              "amount": 30.16,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.16,
          "net_price": 0,
          "normed_amount": 30.16,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10617-1",
          "invoices": [
            {
              "amount": 30.14,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.14,
          "net_price": 0,
          "normed_amount": 30.14,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10619-1",
          "invoices": [
            {
              "amount": 29.46,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.46,
          "net_price": 0,
          "normed_amount": 29.46,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10623-1",
          "invoices": [
            {
              "amount": 29.82,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.82,
          "net_price": 0,
          "normed_amount": 29.82,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-28",
          "delivery_number": "10631-1",
          "invoices": [
            {
              "amount": 29.76,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.76,
          "net_price": 0,
          "normed_amount": 29.76,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-29",
          "delivery_number": "10635-1",
          "invoices": [
            {
              "amount": 30.04,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.04,
          "net_price": 0,
          "normed_amount": 30.04,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.8
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-29",
          "delivery_number": "10644-1",
          "invoices": [
            {
              "amount": 29.82,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.82,
          "net_price": 0,
          "normed_amount": 29.82,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10647-1",
          "invoices": [
            {
              "amount": 30.34,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.34,
          "net_price": 0,
          "normed_amount": 30.34,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.2
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10648-1",
          "invoices": [
            {
              "amount": 29.96,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.96,
          "net_price": 0,
          "normed_amount": 29.96,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10649-1",
          "invoices": [
            {
              "amount": 29.64,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.64,
          "net_price": 0,
          "normed_amount": 29.64,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.8
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10650-1",
          "invoices": [
            {
              "amount": 29.94,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.94,
          "net_price": 0,
          "normed_amount": 29.94,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-11-30",
          "delivery_number": "10651-1",
          "invoices": [
            {
              "amount": 30.3,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-10",
                  "invoice_number": "16267369",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.3,
          "net_price": 0,
          "normed_amount": 30.3,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.1
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10666-1",
          "invoices": [
            {
              "amount": 30.04,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.04,
          "net_price": 0,
          "normed_amount": 30.04,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10667-1",
          "invoices": [
            {
              "amount": 29.88,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.88,
          "net_price": 0,
          "normed_amount": 29.88,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10668-1",
          "invoices": [
            {
              "amount": 30.22,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 30.22,
          "net_price": 0,
          "normed_amount": 30.22,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10669-1",
          "invoices": [
            {
              "amount": 29.48,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.48,
          "net_price": 0,
          "normed_amount": 29.48,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-03",
          "delivery_number": "10670-1",
          "invoices": [
            {
              "amount": 29.62,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE BPMF BAGUEPI"
            }
          ],
          "net_amount": 29.62,
          "net_price": 0,
          "normed_amount": 29.62,
          "place_id": "0055",
          "product_code": "000288",
          "product_name": "BLE BPMF BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "215593",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE BPMF BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 100,
      "termination_date": "2019-03-31",
      "total_amount": 700,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "200749-000",
      "date": "2017-11-29",
      "delivered_amount": 160,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.9
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "10051-1",
          "invoices": [
            {
              "amount": 30.08,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 30.08,
          "net_price": 0,
          "normed_amount": 30.08,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            }
          ],
          "date": "2018-10-02",
          "delivery_number": "10063-1",
          "invoices": [
            {
              "amount": 29.94,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 29.94,
          "net_price": 0,
          "normed_amount": 29.94,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 81
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            }
          ],
          "date": "2018-10-04",
          "delivery_number": "10102-1",
          "invoices": [
            {
              "amount": 28.16,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 28.16,
          "net_price": 0,
          "normed_amount": 28.16,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 79.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-05",
          "delivery_number": "10121-1",
          "invoices": [
            {
              "amount": 29.38,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 29.38,
          "net_price": 0,
          "normed_amount": 29.38,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 13
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-10-05",
          "delivery_number": "10123-1",
          "invoices": [
            {
              "amount": 29.94,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 29.94,
          "net_price": 0,
          "normed_amount": 29.94,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.8
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 80.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 11.9
            }
          ],
          "date": "2018-10-08",
          "delivery_number": "10130-1",
          "invoices": [
            {
              "amount": 12.5,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE FRUCTIDOR BAGUEPI"
            }
          ],
          "net_amount": 12.5,
          "net_price": 0,
          "normed_amount": 12.5,
          "place_id": "0055",
          "product_code": "001122",
          "product_name": "BLE FRUCTIDOR BAGUEPI",
          "settled_amount": 0,
          "site_label": "PEZARCHES",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "215592",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE FRUCTIDOR BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 22,
      "termination_date": "2019-03-31",
      "total_amount": 160,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7.273
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "200748-000",
      "date": "2017-11-29",
      "delivered_amount": 180,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.7
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8374-1",
          "invoices": [
            {
              "amount": 29.561,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 29.62,
          "net_price": 0,
          "normed_amount": 29.561,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.7
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8375-1",
          "invoices": [
            {
              "amount": 29.561,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 29.62,
          "net_price": 0,
          "normed_amount": 29.561,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.4
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.6
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 78.8
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8376-1",
          "invoices": [
            {
              "amount": 29.83,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 163.72
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 6
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 163.72
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 29.86,
          "net_price": 0,
          "normed_amount": 29.83,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.7
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.3
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8377-1",
          "invoices": [
            {
              "amount": 30.02,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 30.08,
          "net_price": 0,
          "normed_amount": 30.02,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 14.7
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.2
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8378-3",
          "invoices": [
            {
              "amount": 29.551,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 29.64,
          "net_price": 0,
          "normed_amount": 29.551,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 15.5
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.4
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.6
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8382-1",
          "invoices": [
            {
              "amount": 29.909,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 30.18,
          "net_price": 0,
          "normed_amount": 29.909,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 15.1
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.8
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 76.1
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.2
            },
            {
              "code": "21",
              "label": "Insectes",
              "rebill": 0,
              "value": 1
            }
          ],
          "date": "2018-12-13",
          "delivery_number": "8383-1",
          "invoices": [
            {
              "amount": 1.568,
              "characteristics": [
                {
                  "code": "05",
                  "label": "Protéine",
                  "value": 6
                },
                {
                  "code": "21",
                  "label": "Insectes",
                  "value": -2.5
                },
                {
                  "code": "A1",
                  "label": "Stockage",
                  "value": 5
                },
                {
                  "code": "B1",
                  "label": "Engagement",
                  "value": 10
                }
              ],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-12-21",
                  "invoice_number": "16269338",
                  "label": "Décompte",
                  "net_price": 161.22
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 139
                },
                {
                  "code": "XFAC02",
                  "label": "Complément",
                  "value": 15
                },
                {
                  "code": "XFAC03",
                  "label": "Boni/Réf",
                  "value": 3.5
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 3.72
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 161.22
                }
              ],
              "product_label": "BLE OREGRAIN BAGUEPI"
            }
          ],
          "net_amount": 1.582,
          "net_price": 0,
          "normed_amount": 1.568,
          "place_id": "0285",
          "product_code": "000286",
          "product_name": "BLE OREGRAIN BAGUEPI",
          "settled_amount": 0,
          "site_label": "HERME",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "215591",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Optimum Sécurisé",
      "price": 0,
      "product_name": "BLE OREGRAIN BAGUEPI",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 25,
      "termination_date": "2019-03-31",
      "total_amount": 180,
      "type": "APO",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 7.2
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": "2018-09-01",
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "164912-000",
      "date": "2017-07-13",
      "delivered_amount": 60,
      "deliveries": [
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.7
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.4
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29890-1",
          "invoices": [
            {
              "amount": 19.501,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 158.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 156
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 158.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.54,
          "net_price": 0,
          "normed_amount": 19.501,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 12.3
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.6
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.5
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29891-1",
          "invoices": [
            {
              "amount": 19.52,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 158.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 156
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 158.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 19.52,
          "net_price": 0,
          "normed_amount": 19.52,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77.2
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29898-1",
          "invoices": [
            {
              "amount": 18.86,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 158.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 156
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 158.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 18.86,
          "net_price": 0,
          "normed_amount": 18.86,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        },
        {
          "base_price": 0,
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "rebill": 0,
              "value": 11.9
            },
            {
              "code": "02",
              "label": "Impuretés",
              "rebill": 0,
              "value": 0.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "rebill": 0,
              "value": 77
            },
            {
              "code": "05",
              "label": "Protéine",
              "rebill": 0,
              "value": 12.7
            }
          ],
          "date": "2018-10-01",
          "delivery_number": "29899-1",
          "invoices": [
            {
              "amount": 2.119,
              "characteristics": [],
              "lines": [
                {
                  "code": "DEC",
                  "invoice_date": "2018-10-25",
                  "invoice_number": "16261536",
                  "label": "Décompte",
                  "net_price": 158.325
                }
              ],
              "prices": [
                {
                  "code": "XFAC01",
                  "label": "Prix de base",
                  "value": 156
                },
                {
                  "code": "XFAC07",
                  "label": "MBM",
                  "value": 2.325
                },
                {
                  "code": "XFAC08",
                  "label": "Prix Net",
                  "value": 158.325
                }
              ],
              "product_label": "BLE 1"
            }
          ],
          "net_amount": 2.119,
          "net_price": 0,
          "normed_amount": 2.119,
          "place_id": "0193",
          "product_code": "000005",
          "product_name": "BLE 1",
          "settled_amount": 0,
          "site_label": "ARZEMBOUY",
          "stock_type": 0
        }
      ],
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "180530",
      "is_closed": true,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Contrat Prix Ferme",
      "price": 156,
      "product_name": "BLE 1",
      "quality_bonus": 0,
      "samples": [],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": "2019-02-28",
      "total_amount": 60,
      "type": "APF",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    },
    {
      "amount_to_deliver": 0,
      "amount_to_deposit": null,
      "closing_date": null,
      "commencement_date": null,
      "commodity": null,
      "commodity_id": null,
      "contracts": [],
      "crm_id": "EHC-000038-0",
      "date": "2018-09-20",
      "delivered_amount": 0,
      "deposited_amount": 0,
      "fiscal_year": 2018,
      "gain": 0,
      "id": "0",
      "is_closed": false,
      "itk_feedback": null,
      "maturity": null,
      "maturity_id": null,
      "name": "Echantillon Hors Contrat",
      "price": 0,
      "product_name": "BLE BPMF MEUNERIE",
      "quality_bonus": 0,
      "samples": [
        {
          "cell_varieties": [
            {
              "cell": "STAB",
              "variety": "AUCKLAND"
            }
          ],
          "characteristics": [
            {
              "code": "01",
              "label": "Humidité",
              "value": 12.1
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 74.7
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.2
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 433
            },
            {
              "code": "01",
              "label": "Humidité",
              "value": 11.5
            },
            {
              "code": "03",
              "label": "Poids Spécifique",
              "value": 75.5
            },
            {
              "code": "05",
              "label": "Protéine",
              "value": 12.8
            },
            {
              "code": "15",
              "label": "Hagberg",
              "value": 436
            }
          ],
          "date": "2018-09-20",
          "number": "0",
          "quantity": 0
        }
      ],
      "settlement_price": null,
      "special_bonus": null,
      "strike": 0,
      "surface": 0,
      "termination_date": null,
      "total_amount": 0,
      "type": "EHC",
      "variety": "BT",
      "variety_name": "BLE TENDRE",
      "variety_standard_deviation": 0,
      "yield": 0
    }
  ]
}

Validation #507

Failure

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

  • The property '#/' contains additional properties ["weather_forecast"] outside of the schema when none are allowed in schema b1ec8b02-9cf3-5ef8-b5a2-1130894a78a2
  • The property '#/' did not contain a required property of 'weather_forecasts' in schema b1ec8b02-9cf3-5ef8-b5a2-1130894a78a2

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultDailyReport_369": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "max_humidity": {
          "maximum": 100,
          "minimum": 30,
          "type": "number"
        },
        "max_temperature": {
          "anyOf": [
            {
              "maximum": 70,
              "minimum": 0,
              "type": "number"
            },
            {
              "type": "null"
            }
          ]
        },
        "min_humidity": {
          "maximum": 100,
          "minimum": -15,
          "type": "number"
        },
        "min_temperature": {
          "anyOf": [
            {
              "maximum": 40,
              "minimum": -15,
              "type": "number"
            },
            {
              "type": "null"
            }
          ]
        },
        "pluviometry_cumul": {
          "maximum": 200,
          "minimum": 0,
          "type": "number"
        },
        "snow": {
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        },
        "time": {
          "format": "datetime",
          "type": "string"
        },
        "weather": {
          "maximum": 20,
          "minimum": 0,
          "type": "integer"
        },
        "weather_reports": {
          "items": {
            "$ref": "#/definitions/DefaultWeatherReport_368",
            "type": "object"
          },
          "type": "array"
        },
        "wind_direction": {
          "enum": [
            "N",
            "NNE",
            "NE",
            "ENE",
            "E",
            "ESE",
            "SE",
            "SSE",
            "S",
            "SSO",
            "SO",
            "OSO",
            "O",
            "ONO",
            "NO",
            "NNO"
          ],
          "type": "string"
        },
        "wind_gusts": {
          "maximum": 60,
          "minimum": 0,
          "type": "number"
        },
        "wind_speed": {
          "maximum": 30,
          "minimum": 5,
          "type": "number"
        }
      },
      "required": [
        "pluviometry_cumul",
        "snow",
        "time",
        "weather",
        "weather_reports"
      ],
      "title": "DailyReport - DefaultDailyReport",
      "type": "object"
    },
    "DefaultWarning_302": {
      "additionalProperties": false,
      "description": "Automatically generated",
      "properties": {
        "comment": {
          "type": "string"
        },
        "icon": {
          "anyOf": [
            {
              "type": "string"
            },
            {
              "type": "null"
            }
          ]
        },
        "type": {
          "enum": [
            "OK",
            "BEE",
            "GUST",
            "RAIN",
            "HY50",
            "HY70",
            "HY95",
            "WI19",
            "TE25",
            "TZ10",
            "RISK",
            "TE00",
            "TE05",
            "TE12",
            "TE13",
            "R1H3",
            "RAI2",
            "OPTI"
          ],
          "type": "string"
        }
      },
      "required": [
        "comment",
        "icon",
        "type"
      ],
      "title": "Warning - DefaultWarning",
      "type": "object"
    },
    "DefaultWeatherReport_368": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "humidity": {
          "maximum": 100,
          "minimum": 30,
          "type": "number"
        },
        "night": {
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        },
        "pluviometry": {
          "maximum": 204,
          "minimum": 0,
          "type": "number"
        },
        "pluviometry1h": {
          "type": "number"
        },
        "pluviometry_cumul": {
          "maximum": 200,
          "minimum": 0,
          "type": "number"
        },
        "recommended_spray": {
          "maximum": 2,
          "minimum": 0,
          "type": "integer"
        },
        "risk_of_rain": {
          "maximum": 100,
          "minimum": 0,
          "type": "number"
        },
        "snow": {
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        },
        "temperature": {
          "maximum": 100,
          "minimum": -15,
          "type": "number"
        },
        "time": {
          "format": "datetime",
          "type": "string"
        },
        "warnings": {
          "items": {
            "$ref": "#/definitions/DefaultWarning_302",
            "type": "object"
          },
          "type": "array"
        },
        "weather": {
          "maximum": 20,
          "minimum": 0,
          "type": "integer"
        },
        "wind_direction": {
          "enum": [
            "N",
            "NNE",
            "NE",
            "ENE",
            "E",
            "ESE",
            "SE",
            "SSE",
            "S",
            "SSO",
            "SO",
            "OSO",
            "O",
            "ONO",
            "NO",
            "NNO"
          ],
          "type": "string"
        },
        "wind_gusts": {
          "maximum": 100,
          "minimum": 0,
          "type": "number"
        },
        "wind_speed": {
          "maximum": 30,
          "minimum": 0,
          "type": "number"
        }
      },
      "required": [
        "humidity",
        "night",
        "pluviometry",
        "pluviometry1h",
        "pluviometry_cumul",
        "recommended_spray",
        "risk_of_rain",
        "snow",
        "temperature",
        "time",
        "warnings",
        "weather",
        "wind_direction",
        "wind_gusts",
        "wind_speed"
      ],
      "title": "WeatherReport - DefaultWeatherReport",
      "type": "object"
    }
  },
  "description": "Automatically generated (please edit me)",
  "properties": {
    "weather_forecasts": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "city": {
            "type": "string"
          },
          "city_code": {
            "type": "string"
          },
          "daily_reports": {
            "items": {
              "$ref": "#/definitions/DefaultDailyReport_369",
              "type": "object"
            },
            "type": "array"
          },
          "timezone": {
            "type": "string"
          }
        },
        "required": [
          "city",
          "city_code",
          "daily_reports",
          "timezone"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "weather_forecasts"
  ],
  "title": "WeatherForecast - DefaultWeatherForecast",
  "type": "object"
}

JSON instance

{
  "weather_forecast": {
    "city": "КИЇВ",
    "city_code": "CY_UA_26150422",
    "daily_reports": [
      {
        "max_humidity": 95.28,
        "max_temperature": -0.06,
        "min_humidity": 85.86,
        "min_temperature": -15.32,
        "pluviometry_cumul": 0.3,
        "snow": 1,
        "time": "2019-01-28T10:00:00+00:00",
        "weather": 14,
        "weather_reports": [
          {
            "humidity": 86.48,
            "night": 0,
            "pluviometry": 0,
            "pluviometry1h": 0,
            "pluviometry_cumul": 0,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 0,
            "temperature": -9.62,
            "time": "2019-01-28T10:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 4,
            "wind_direction": "ssEast",
            "wind_gusts": 21.65,
            "wind_speed": 10.97
          },
          {
            "humidity": 85.86,
            "night": 0,
            "pluviometry": 0.01,
            "pluviometry1h": 0,
            "pluviometry_cumul": 0.01,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 0,
            "temperature": -8.13,
            "time": "2019-01-28T11:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 23.95,
            "wind_speed": 11.7
          },
          {
            "humidity": 86.71,
            "night": 0,
            "pluviometry": 0.02,
            "pluviometry1h": 0,
            "pluviometry_cumul": 0.02,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 0,
            "temperature": -6.95,
            "time": "2019-01-28T12:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 25.52,
            "wind_speed": 12.27
          },
          {
            "humidity": 88.31,
            "night": 0,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 0,
            "temperature": -6.08,
            "time": "2019-01-28T13:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 25.54,
            "wind_speed": 12.97
          },
          {
            "humidity": 90.33,
            "night": 0,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 16.67,
            "snow": 0,
            "temperature": -5.47,
            "time": "2019-01-28T14:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 25.11,
            "wind_speed": 13.44
          },
          {
            "humidity": 91.67,
            "night": 1,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 0,
            "temperature": -4.95,
            "time": "2019-01-28T15:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 27.06,
            "wind_speed": 14.44
          },
          {
            "humidity": 92.54,
            "night": 1,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 1,
            "temperature": -4.47,
            "time": "2019-01-28T16:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "ssEast",
            "wind_gusts": 28.92,
            "wind_speed": 15.42
          },
          {
            "humidity": 92.98,
            "night": 1,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 0,
            "temperature": -3.94,
            "time": "2019-01-28T17:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 30.22,
            "wind_speed": 16.11
          },
          {
            "humidity": 93.22,
            "night": 1,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 16.67,
            "snow": 0,
            "temperature": -3.44,
            "time": "2019-01-28T18:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 31.34,
            "wind_speed": 16.73
          },
          {
            "humidity": 93.65,
            "night": 1,
            "pluviometry": 0.04,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.04,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 1,
            "temperature": -3.07,
            "time": "2019-01-28T19:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "ssEast",
            "wind_gusts": 31.87,
            "wind_speed": 17.17
          },
          {
            "humidity": 94.01,
            "night": 1,
            "pluviometry": 0.05,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.05,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 1,
            "temperature": -2.72,
            "time": "2019-01-28T20:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "ssEast",
            "wind_gusts": 31.96,
            "wind_speed": 17.52
          },
          {
            "humidity": 94.13,
            "night": 1,
            "pluviometry": 0.09,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.09,
            "recommended_spray": 2,
            "risk_of_rain": 16.67,
            "snow": 1,
            "temperature": -2.29,
            "time": "2019-01-28T21:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 33.06,
            "wind_speed": 18.01
          },
          {
            "humidity": 94.24,
            "night": 1,
            "pluviometry": 0.1,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.1,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": -1.91,
            "time": "2019-01-28T22:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 34.61,
            "wind_speed": 18.69
          },
          {
            "humidity": 94.32,
            "night": 1,
            "pluviometry": 0.12,
            "pluviometry1h": 0.05,
            "pluviometry_cumul": 0.12,
            "recommended_spray": 3,
            "risk_of_rain": 66.67,
            "snow": 0,
            "temperature": -1.58,
            "time": "2019-01-28T23:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 36.14,
            "wind_speed": 19.4
          },
          {
            "humidity": 94.47,
            "night": 1,
            "pluviometry": 0.1,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.1,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 1,
            "temperature": -1.28,
            "time": "2019-01-29T00:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 37.21,
            "wind_speed": 19.78
          },
          {
            "humidity": 94.84,
            "night": 1,
            "pluviometry": 0.1,
            "pluviometry1h": 0.04,
            "pluviometry_cumul": 0.1,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 1,
            "temperature": -1.03,
            "time": "2019-01-29T01:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 10,
            "wind_direction": "ssEast",
            "wind_gusts": 38.8,
            "wind_speed": 20.24
          },
          {
            "humidity": 95.05,
            "night": 1,
            "pluviometry": 0.08,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.08,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": -0.69,
            "time": "2019-01-29T02:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 38.93,
            "wind_speed": 20.49
          },
          {
            "humidity": 95.38,
            "night": 1,
            "pluviometry": 0.07,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.07,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": -0.35,
            "time": "2019-01-29T03:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 38.34,
            "wind_speed": 20.32
          },
          {
            "humidity": 95.35,
            "night": 1,
            "pluviometry": 0.06,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.06,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": -0.06,
            "time": "2019-01-29T04:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 37.07,
            "wind_speed": 20.09
          },
          {
            "humidity": 95.76,
            "night": 1,
            "pluviometry": 0.07,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.07,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 0.05,
            "time": "2019-01-29T05:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 36.95,
            "wind_speed": 19.37
          },
          {
            "humidity": 96.19,
            "night": 1,
            "pluviometry": 0.08,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.08,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 0.15,
            "time": "2019-01-29T06:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 35.12,
            "wind_speed": 18.58
          },
          {
            "humidity": 96.57,
            "night": 0,
            "pluviometry": 0.08,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.08,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 0.34,
            "time": "2019-01-29T07:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 33.63,
            "wind_speed": 17.59
          },
          {
            "humidity": 96.55,
            "night": 0,
            "pluviometry": 0.08,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.08,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 0.66,
            "time": "2019-01-29T08:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 31.94,
            "wind_speed": 16.72
          },
          {
            "humidity": 96.45,
            "night": 0,
            "pluviometry": 0.08,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.08,
            "recommended_spray": 2,
            "risk_of_rain": 33.33,
            "snow": 0,
            "temperature": 0.95,
            "time": "2019-01-29T09:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 30.78,
            "wind_speed": 15.4
          }
        ],
        "wind_direction": "SSE",
        "wind_gusts": 34.61,
        "wind_speed": 10.9012
      },
      {
        "max_humidity": 98.68,
        "max_temperature": 1.69,
        "min_humidity": 94.24,
        "min_temperature": -4.47,
        "pluviometry_cumul": 0.94,
        "snow": 1,
        "time": "2019-01-28T22:00:00+00:00",
        "weather": 15,
        "weather_reports": [
          {
            "humidity": 94.24,
            "night": 1,
            "pluviometry": 0.1,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.1,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 1,
            "temperature": -1.91,
            "time": "2019-01-28T22:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 34.61,
            "wind_speed": 18.69
          },
          {
            "humidity": 94.84,
            "night": 1,
            "pluviometry": 0.1,
            "pluviometry1h": 0.04,
            "pluviometry_cumul": 0.1,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 1,
            "temperature": -1.03,
            "time": "2019-01-29T01:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 10,
            "wind_direction": "ssEast",
            "wind_gusts": 38.8,
            "wind_speed": 20.24
          },
          {
            "humidity": 95.35,
            "night": 1,
            "pluviometry": 0.06,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.06,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": -0.06,
            "time": "2019-01-29T04:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 37.07,
            "wind_speed": 20.09
          },
          {
            "humidity": 96.57,
            "night": 0,
            "pluviometry": 0.08,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.08,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 0.34,
            "time": "2019-01-29T07:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 33.63,
            "wind_speed": 17.59
          },
          {
            "humidity": 96.47,
            "night": 0,
            "pluviometry": 0.09,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.09,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 1.22,
            "time": "2019-01-29T10:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 28.2,
            "wind_speed": 13.7
          },
          {
            "humidity": 96.6,
            "night": 0,
            "pluviometry": 0.07,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.07,
            "recommended_spray": 2,
            "risk_of_rain": 33.33,
            "snow": 0,
            "temperature": 1.69,
            "time": "2019-01-29T13:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 19.75,
            "wind_speed": 10.02
          },
          {
            "humidity": 97.67,
            "night": 0,
            "pluviometry": 0.09,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.09,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 1.02,
            "time": "2019-01-29T16:00:00+00:00",
            "warnings": [
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "south",
            "wind_gusts": 13.07,
            "wind_speed": 7.89
          },
          {
            "humidity": 98.03,
            "night": 1,
            "pluviometry": 0.13,
            "pluviometry1h": 0.04,
            "pluviometry_cumul": 0.13,
            "recommended_spray": 2,
            "risk_of_rain": 33.33,
            "snow": 1,
            "temperature": 0.6,
            "time": "2019-01-29T19:00:00+00:00",
            "warnings": [
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "south",
            "wind_gusts": 9.01,
            "wind_speed": 6.14
          }
        ],
        "wind_direction": "ssEast",
        "wind_gusts": 38.93,
        "wind_speed": 13.421999999999999
      },
      {
        "max_humidity": 99.5,
        "max_temperature": 2.42,
        "min_humidity": 92.33,
        "min_temperature": -0.09,
        "pluviometry_cumul": 3.64,
        "snow": 1,
        "time": "2019-01-29T22:00:00+00:00",
        "weather": 20,
        "weather_reports": [
          {
            "humidity": 98.68,
            "night": 1,
            "pluviometry": 0.2,
            "pluviometry1h": 0.05,
            "pluviometry_cumul": 0.2,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 1,
            "temperature": 0.27,
            "time": "2019-01-29T22:00:00+00:00",
            "warnings": [
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "ssEast",
            "wind_gusts": 5.31,
            "wind_speed": 4.89
          },
          {
            "humidity": 99.43,
            "night": 1,
            "pluviometry": 0.22,
            "pluviometry1h": 0.09,
            "pluviometry_cumul": 0.22,
            "recommended_spray": 2,
            "risk_of_rain": 83.33,
            "snow": 1,
            "temperature": -0.05,
            "time": "2019-01-30T01:00:00+00:00",
            "warnings": [
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 4.91,
            "wind_speed": 4.61
          },
          {
            "humidity": 99.47,
            "night": 1,
            "pluviometry": 0.73,
            "pluviometry1h": 0.21,
            "pluviometry_cumul": 0.73,
            "recommended_spray": 2,
            "risk_of_rain": 66.67,
            "snow": 1,
            "temperature": -0.07,
            "time": "2019-01-30T04:00:00+00:00",
            "warnings": [
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 15,
            "wind_direction": "ssEast",
            "wind_gusts": 6.14,
            "wind_speed": 4.53
          },
          {
            "humidity": 98.81,
            "night": 0,
            "pluviometry": 0.97,
            "pluviometry1h": 0.44,
            "pluviometry_cumul": 0.97,
            "recommended_spray": 2,
            "risk_of_rain": 83.33,
            "snow": 1,
            "temperature": 0.29,
            "time": "2019-01-30T07:00:00+00:00",
            "warnings": [
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 15,
            "wind_direction": "sEast",
            "wind_gusts": 8.22,
            "wind_speed": 6.08
          },
          {
            "humidity": 95.75,
            "night": 0,
            "pluviometry": 0.88,
            "pluviometry1h": 0.44,
            "pluviometry_cumul": 0.88,
            "recommended_spray": 2,
            "risk_of_rain": 83.33,
            "snow": 1,
            "temperature": 1.56,
            "time": "2019-01-30T10:00:00+00:00",
            "warnings": [
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 15,
            "wind_direction": "sEast",
            "wind_gusts": 12.74,
            "wind_speed": 8.38
          },
          {
            "humidity": 92.33,
            "night": 0,
            "pluviometry": 0.29,
            "pluviometry1h": 0.11,
            "pluviometry_cumul": 0.29,
            "recommended_spray": 2,
            "risk_of_rain": 83.33,
            "snow": 1,
            "temperature": 2.42,
            "time": "2019-01-30T13:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "ssEast",
            "wind_gusts": 21.74,
            "wind_speed": 11.26
          },
          {
            "humidity": 93.7,
            "night": 0,
            "pluviometry": 0.22,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.22,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 2.1,
            "time": "2019-01-30T16:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "south",
            "wind_gusts": 20.27,
            "wind_speed": 10.12
          },
          {
            "humidity": 95.82,
            "night": 1,
            "pluviometry": 0.27,
            "pluviometry1h": 0.13,
            "pluviometry_cumul": 0.27,
            "recommended_spray": 2,
            "risk_of_rain": 66.67,
            "snow": 0,
            "temperature": 1.72,
            "time": "2019-01-30T19:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "ssEast",
            "wind_gusts": 18.83,
            "wind_speed": 10.4
          }
        ],
        "wind_direction": "ssEast",
        "wind_gusts": 22.24,
        "wind_speed": 7.98
      },
      {
        "max_humidity": 98.25,
        "max_temperature": 1.95,
        "min_humidity": 89.37,
        "min_temperature": 0.09,
        "pluviometry_cumul": 1.32,
        "snow": 1,
        "time": "2019-01-30T22:00:00+00:00",
        "weather": 15,
        "weather_reports": [
          {
            "humidity": 96.15,
            "night": 1,
            "pluviometry": 0.12,
            "pluviometry1h": 0.05,
            "pluviometry_cumul": 0.12,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 1.68,
            "time": "2019-01-30T22:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 20.69,
            "wind_speed": 11.41
          },
          {
            "humidity": 96.11,
            "night": 1,
            "pluviometry": 0.16,
            "pluviometry1h": 0.06,
            "pluviometry_cumul": 0.16,
            "recommended_spray": 2,
            "risk_of_rain": 33.33,
            "snow": 0,
            "temperature": 1.38,
            "time": "2019-01-31T01:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "ssEast",
            "wind_gusts": 19.95,
            "wind_speed": 11.92
          },
          {
            "humidity": 97.21,
            "night": 1,
            "pluviometry": 0.09,
            "pluviometry1h": 0.04,
            "pluviometry_cumul": 0.09,
            "recommended_spray": 2,
            "risk_of_rain": 33.33,
            "snow": 0,
            "temperature": 0.88,
            "time": "2019-01-31T04:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 21.54,
            "wind_speed": 12.73
          },
          {
            "humidity": 96.21,
            "night": 0,
            "pluviometry": 0.1,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.1,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 0.66,
            "time": "2019-01-31T07:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 23.63,
            "wind_speed": 13.34
          },
          {
            "humidity": 90.35,
            "night": 0,
            "pluviometry": 0.16,
            "pluviometry1h": 0.05,
            "pluviometry_cumul": 0.16,
            "recommended_spray": 2,
            "risk_of_rain": 33.33,
            "snow": 0,
            "temperature": 1.76,
            "time": "2019-01-31T10:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 26.49,
            "wind_speed": 13.49
          },
          {
            "humidity": 90.29,
            "night": 0,
            "pluviometry": 0.13,
            "pluviometry1h": 0.04,
            "pluviometry_cumul": 0.13,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 1,
            "temperature": 1.61,
            "time": "2019-01-31T13:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 24.07,
            "wind_speed": 12.18
          },
          {
            "humidity": 95.7,
            "night": 0,
            "pluviometry": 0.23,
            "pluviometry1h": 0.08,
            "pluviometry_cumul": 0.23,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 1,
            "temperature": 0.09,
            "time": "2019-01-31T16:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 15,
            "wind_direction": "sEast",
            "wind_gusts": 27.24,
            "wind_speed": 13.77
          },
          {
            "humidity": 98.25,
            "night": 1,
            "pluviometry": 0.38,
            "pluviometry1h": 0.12,
            "pluviometry_cumul": 0.38,
            "recommended_spray": 2,
            "risk_of_rain": 66.67,
            "snow": 1,
            "temperature": -0.45,
            "time": "2019-01-31T19:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 15,
            "wind_direction": "sEast",
            "wind_gusts": 29.06,
            "wind_speed": 14.15
          }
        ],
        "wind_direction": "SE",
        "wind_gusts": 30.32,
        "wind_speed": 12.8884
      },
      {
        "max_humidity": 98.04,
        "max_temperature": 2.8,
        "min_humidity": 90.27,
        "min_temperature": -0.45,
        "pluviometry_cumul": 0.4,
        "snow": 1,
        "time": "2019-01-31T22:00:00+00:00",
        "weather": 15,
        "weather_reports": [
          {
            "humidity": 97.51,
            "night": 1,
            "pluviometry": 0.07,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.07,
            "recommended_spray": 2,
            "risk_of_rain": 33.33,
            "snow": 0,
            "temperature": -0.13,
            "time": "2019-01-31T22:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 22.2,
            "wind_speed": 11.95
          },
          {
            "humidity": 97.57,
            "night": 1,
            "pluviometry": 0.16,
            "pluviometry1h": 0.05,
            "pluviometry_cumul": 0.16,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 0.06,
            "time": "2019-02-01T01:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 20.61,
            "wind_speed": 10.18
          },
          {
            "humidity": 97.9,
            "night": 1,
            "pluviometry": 0.14,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.14,
            "recommended_spray": 2,
            "risk_of_rain": 33.33,
            "snow": 1,
            "temperature": 0.31,
            "time": "2019-02-01T04:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 15,
            "wind_direction": "ssEast",
            "wind_gusts": 18.97,
            "wind_speed": 9.36
          },
          {
            "humidity": 95.97,
            "night": 0,
            "pluviometry": 0.04,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.04,
            "recommended_spray": 2,
            "risk_of_rain": 20,
            "snow": 0,
            "temperature": 1.28,
            "time": "2019-02-01T07:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "south",
            "wind_gusts": 19.44,
            "wind_speed": 8.19
          },
          {
            "humidity": 90.95,
            "night": 0,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 20,
            "snow": 0,
            "temperature": 2.56,
            "time": "2019-02-01T10:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 20.48,
            "wind_speed": 7.17
          },
          {
            "humidity": 90.45,
            "night": 0,
            "pluviometry": 0.04,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.04,
            "recommended_spray": 2,
            "risk_of_rain": 20,
            "snow": 0,
            "temperature": 2.41,
            "time": "2019-02-01T13:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 21.8,
            "wind_speed": 7.56
          },
          {
            "humidity": 92.99,
            "night": 0,
            "pluviometry": 0.04,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.04,
            "recommended_spray": 2,
            "risk_of_rain": 20,
            "snow": 0,
            "temperature": 1.49,
            "time": "2019-02-01T16:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 20.89,
            "wind_speed": 8.41
          },
          {
            "humidity": 96.21,
            "night": 1,
            "pluviometry": 0.05,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.05,
            "recommended_spray": 2,
            "risk_of_rain": 40,
            "snow": 0,
            "temperature": 1.32,
            "time": "2019-02-01T19:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 22,
            "wind_speed": 8.7
          }
        ],
        "wind_direction": "sEast",
        "wind_gusts": 23.21,
        "wind_speed": 8.7508
      },
      {
        "max_humidity": 97.19,
        "max_temperature": 1.59,
        "min_humidity": 94.27,
        "min_temperature": -1.15,
        "pluviometry_cumul": 0.45,
        "snow": 0,
        "time": "2019-02-01T22:00:00+00:00",
        "weather": 15,
        "weather_reports": [
          {
            "humidity": 96.2,
            "night": 1,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 20,
            "snow": 0,
            "temperature": 0.27,
            "time": "2019-02-01T22:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 23.21,
            "wind_speed": 8.66
          },
          {
            "humidity": 96.28,
            "night": 1,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 0,
            "temperature": -1.15,
            "time": "2019-02-02T01:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 31.99,
            "wind_speed": 9.56
          },
          {
            "humidity": 96.51,
            "night": 1,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 0,
            "temperature": -0.76,
            "time": "2019-02-02T04:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "esEast",
            "wind_gusts": 35.85,
            "wind_speed": 10.45
          },
          {
            "humidity": 96.08,
            "night": 0,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 0,
            "temperature": -0.7,
            "time": "2019-02-02T07:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 39.2,
            "wind_speed": 13.42
          },
          {
            "humidity": 94.3,
            "night": 0,
            "pluviometry": 0.06,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.06,
            "recommended_spray": 2,
            "risk_of_rain": 25,
            "snow": 0,
            "temperature": 0.74,
            "time": "2019-02-02T10:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 39.12,
            "wind_speed": 14.93
          },
          {
            "humidity": 94.81,
            "night": 0,
            "pluviometry": 0.06,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.06,
            "recommended_spray": 2,
            "risk_of_rain": 25,
            "snow": 0,
            "temperature": 1.28,
            "time": "2019-02-02T13:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 42.11,
            "wind_speed": 14.62
          },
          {
            "humidity": 96.19,
            "night": 0,
            "pluviometry": 0.06,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.06,
            "recommended_spray": 2,
            "risk_of_rain": 25,
            "snow": 0,
            "temperature": 1.07,
            "time": "2019-02-02T16:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 43.79,
            "wind_speed": 15.41
          },
          {
            "humidity": 97.13,
            "night": 1,
            "pluviometry": 0.06,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.06,
            "recommended_spray": 2,
            "risk_of_rain": 25,
            "snow": 0,
            "temperature": 0.98,
            "time": "2019-02-02T19:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 46.13,
            "wind_speed": 16.31
          }
        ],
        "wind_direction": "SE",
        "wind_gusts": 50.98,
        "wind_speed": 13.344
      },
      {
        "max_humidity": 96.99,
        "max_temperature": 2.67,
        "min_humidity": 94.97,
        "min_temperature": 0.95,
        "pluviometry_cumul": 2.31,
        "snow": 0,
        "time": "2019-02-02T22:00:00+00:00",
        "weather": 15,
        "weather_reports": [
          {
            "humidity": 96.99,
            "night": 1,
            "pluviometry": 0.06,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.06,
            "recommended_spray": 2,
            "risk_of_rain": 25,
            "snow": 0,
            "temperature": 1.33,
            "time": "2019-02-02T22:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 50.98,
            "wind_speed": 16.64
          },
          {
            "humidity": 96.65,
            "night": 1,
            "pluviometry": 0.09,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.09,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 1.58,
            "time": "2019-02-03T01:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 50.42,
            "wind_speed": 17.45
          },
          {
            "humidity": 96.86,
            "night": 1,
            "pluviometry": 0.09,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.09,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 1.52,
            "time": "2019-02-03T04:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 49.24,
            "wind_speed": 17.84
          },
          {
            "humidity": 96.65,
            "night": 0,
            "pluviometry": 0.12,
            "pluviometry1h": 0.04,
            "pluviometry_cumul": 0.12,
            "recommended_spray": 2,
            "risk_of_rain": 25,
            "snow": 0,
            "temperature": 1.69,
            "time": "2019-02-03T07:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 50.14,
            "wind_speed": 17.98
          },
          {
            "humidity": 95.61,
            "night": 0,
            "pluviometry": 0.36,
            "pluviometry1h": 0.12,
            "pluviometry_cumul": 0.36,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 2.41,
            "time": "2019-02-03T10:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 49.31,
            "wind_speed": 17.56
          },
          {
            "humidity": 94.97,
            "night": 0,
            "pluviometry": 0.63,
            "pluviometry1h": 0.21,
            "pluviometry_cumul": 0.63,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 2.63,
            "time": "2019-02-03T13:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 15,
            "wind_direction": "sEast",
            "wind_gusts": 51.17,
            "wind_speed": 17.7
          },
          {
            "humidity": 95.57,
            "night": 0,
            "pluviometry": 0.45,
            "pluviometry1h": 0.15,
            "pluviometry_cumul": 0.45,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 2.26,
            "time": "2019-02-03T16:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 48.81,
            "wind_speed": 18.04
          },
          {
            "humidity": 96.4,
            "night": 1,
            "pluviometry": 0.18,
            "pluviometry1h": 0.06,
            "pluviometry_cumul": 0.18,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 2.14,
            "time": "2019-02-03T19:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 44.77,
            "wind_speed": 17.83
          }
        ],
        "wind_direction": "SE",
        "wind_gusts": 51.46,
        "wind_speed": 17.676399999999997
      }
    ],
    "timezone": "Europe/Kiev"
  }
}

Validation #506

Failure

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

  • The property '#/' contains additional properties ["weather_forecast"] outside of the schema when none are allowed in schema b1ec8b02-9cf3-5ef8-b5a2-1130894a78a2
  • The property '#/' did not contain a required property of 'weather_forecasts' in schema b1ec8b02-9cf3-5ef8-b5a2-1130894a78a2

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultDailyReport_369": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "max_humidity": {
          "maximum": 100,
          "minimum": 30,
          "type": "number"
        },
        "max_temperature": {
          "anyOf": [
            {
              "maximum": 70,
              "minimum": 0,
              "type": "number"
            },
            {
              "type": "null"
            }
          ]
        },
        "min_humidity": {
          "maximum": 100,
          "minimum": -15,
          "type": "number"
        },
        "min_temperature": {
          "anyOf": [
            {
              "maximum": 40,
              "minimum": -15,
              "type": "number"
            },
            {
              "type": "null"
            }
          ]
        },
        "pluviometry_cumul": {
          "maximum": 200,
          "minimum": 0,
          "type": "number"
        },
        "snow": {
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        },
        "time": {
          "format": "datetime",
          "type": "string"
        },
        "weather": {
          "maximum": 20,
          "minimum": 0,
          "type": "integer"
        },
        "weather_reports": {
          "items": {
            "$ref": "#/definitions/DefaultWeatherReport_368",
            "type": "object"
          },
          "type": "array"
        },
        "wind_direction": {
          "enum": [
            "N",
            "NNE",
            "NE",
            "ENE",
            "E",
            "ESE",
            "SE",
            "SSE",
            "S",
            "SSO",
            "SO",
            "OSO",
            "O",
            "ONO",
            "NO",
            "NNO"
          ],
          "type": "string"
        },
        "wind_gusts": {
          "maximum": 60,
          "minimum": 0,
          "type": "number"
        },
        "wind_speed": {
          "maximum": 30,
          "minimum": 5,
          "type": "number"
        }
      },
      "required": [
        "pluviometry_cumul",
        "snow",
        "time",
        "weather",
        "weather_reports"
      ],
      "title": "DailyReport - DefaultDailyReport",
      "type": "object"
    },
    "DefaultWarning_302": {
      "additionalProperties": false,
      "description": "Automatically generated",
      "properties": {
        "comment": {
          "type": "string"
        },
        "icon": {
          "anyOf": [
            {
              "type": "string"
            },
            {
              "type": "null"
            }
          ]
        },
        "type": {
          "enum": [
            "OK",
            "BEE",
            "GUST",
            "RAIN",
            "HY50",
            "HY70",
            "HY95",
            "WI19",
            "TE25",
            "TZ10",
            "RISK",
            "TE00",
            "TE05",
            "TE12",
            "TE13",
            "R1H3",
            "RAI2",
            "OPTI"
          ],
          "type": "string"
        }
      },
      "required": [
        "comment",
        "icon",
        "type"
      ],
      "title": "Warning - DefaultWarning",
      "type": "object"
    },
    "DefaultWeatherReport_368": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "humidity": {
          "maximum": 100,
          "minimum": 30,
          "type": "number"
        },
        "night": {
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        },
        "pluviometry": {
          "maximum": 204,
          "minimum": 0,
          "type": "number"
        },
        "pluviometry1h": {
          "type": "number"
        },
        "pluviometry_cumul": {
          "maximum": 200,
          "minimum": 0,
          "type": "number"
        },
        "recommended_spray": {
          "maximum": 2,
          "minimum": 0,
          "type": "integer"
        },
        "risk_of_rain": {
          "maximum": 100,
          "minimum": 0,
          "type": "number"
        },
        "snow": {
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        },
        "temperature": {
          "maximum": 100,
          "minimum": -15,
          "type": "number"
        },
        "time": {
          "format": "datetime",
          "type": "string"
        },
        "warnings": {
          "items": {
            "$ref": "#/definitions/DefaultWarning_302",
            "type": "object"
          },
          "type": "array"
        },
        "weather": {
          "maximum": 20,
          "minimum": 0,
          "type": "integer"
        },
        "wind_direction": {
          "enum": [
            "N",
            "NNE",
            "NE",
            "ENE",
            "E",
            "ESE",
            "SE",
            "SSE",
            "S",
            "SSO",
            "SO",
            "OSO",
            "O",
            "ONO",
            "NO",
            "NNO"
          ],
          "type": "string"
        },
        "wind_gusts": {
          "maximum": 100,
          "minimum": 0,
          "type": "number"
        },
        "wind_speed": {
          "maximum": 30,
          "minimum": 0,
          "type": "number"
        }
      },
      "required": [
        "humidity",
        "night",
        "pluviometry",
        "pluviometry1h",
        "pluviometry_cumul",
        "recommended_spray",
        "risk_of_rain",
        "snow",
        "temperature",
        "time",
        "warnings",
        "weather",
        "wind_direction",
        "wind_gusts",
        "wind_speed"
      ],
      "title": "WeatherReport - DefaultWeatherReport",
      "type": "object"
    }
  },
  "description": "Automatically generated (please edit me)",
  "properties": {
    "weather_forecasts": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "city": {
            "type": "string"
          },
          "city_code": {
            "type": "string"
          },
          "daily_reports": {
            "items": {
              "$ref": "#/definitions/DefaultDailyReport_369",
              "type": "object"
            },
            "type": "array"
          },
          "timezone": {
            "type": "string"
          }
        },
        "required": [
          "city",
          "city_code",
          "daily_reports",
          "timezone"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "weather_forecasts"
  ],
  "title": "WeatherForecast - DefaultWeatherForecast",
  "type": "object"
}

JSON instance

{
  "weather_forecast": {
    "city": "КИЇВ",
    "city_code": "CY_UA_26150422",
    "daily_reports": [
      {
        "max_humidity": 95.28,
        "max_temperature": -0.06,
        "min_humidity": 85.86,
        "min_temperature": -15.32,
        "pluviometry_cumul": 0.3,
        "snow": 1,
        "time": "2019-01-28T10:00:00+00:00",
        "weather": 14,
        "weather_reports": [
          {
            "humidity": 86.48,
            "night": 0,
            "pluviometry": 0,
            "pluviometry1h": 0,
            "pluviometry_cumul": 0,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 0,
            "temperature": -9.62,
            "time": "2019-01-28T10:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 4,
            "wind_direction": "ssEast",
            "wind_gusts": 21.65,
            "wind_speed": 10.97
          },
          {
            "humidity": 85.86,
            "night": 0,
            "pluviometry": 0.01,
            "pluviometry1h": 0,
            "pluviometry_cumul": 0.01,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 0,
            "temperature": -8.13,
            "time": "2019-01-28T11:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 23.95,
            "wind_speed": 11.7
          },
          {
            "humidity": 86.71,
            "night": 0,
            "pluviometry": 0.02,
            "pluviometry1h": 0,
            "pluviometry_cumul": 0.02,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 0,
            "temperature": -6.95,
            "time": "2019-01-28T12:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 25.52,
            "wind_speed": 12.27
          },
          {
            "humidity": 88.31,
            "night": 0,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 0,
            "temperature": -6.08,
            "time": "2019-01-28T13:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 25.54,
            "wind_speed": 12.97
          },
          {
            "humidity": 90.33,
            "night": 0,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 16.67,
            "snow": 0,
            "temperature": -5.47,
            "time": "2019-01-28T14:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 25.11,
            "wind_speed": 13.44
          },
          {
            "humidity": 91.67,
            "night": 1,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 0,
            "temperature": -4.95,
            "time": "2019-01-28T15:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 27.06,
            "wind_speed": 14.44
          },
          {
            "humidity": 92.54,
            "night": 1,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 1,
            "temperature": -4.47,
            "time": "2019-01-28T16:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "ssEast",
            "wind_gusts": 28.92,
            "wind_speed": 15.42
          },
          {
            "humidity": 92.98,
            "night": 1,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 0,
            "temperature": -3.94,
            "time": "2019-01-28T17:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 30.22,
            "wind_speed": 16.11
          },
          {
            "humidity": 93.22,
            "night": 1,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 16.67,
            "snow": 0,
            "temperature": -3.44,
            "time": "2019-01-28T18:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 31.34,
            "wind_speed": 16.73
          },
          {
            "humidity": 93.65,
            "night": 1,
            "pluviometry": 0.04,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.04,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 1,
            "temperature": -3.07,
            "time": "2019-01-28T19:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "ssEast",
            "wind_gusts": 31.87,
            "wind_speed": 17.17
          },
          {
            "humidity": 94.01,
            "night": 1,
            "pluviometry": 0.05,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.05,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 1,
            "temperature": -2.72,
            "time": "2019-01-28T20:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "ssEast",
            "wind_gusts": 31.96,
            "wind_speed": 17.52
          },
          {
            "humidity": 94.13,
            "night": 1,
            "pluviometry": 0.09,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.09,
            "recommended_spray": 2,
            "risk_of_rain": 16.67,
            "snow": 1,
            "temperature": -2.29,
            "time": "2019-01-28T21:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 33.06,
            "wind_speed": 18.01
          },
          {
            "humidity": 94.24,
            "night": 1,
            "pluviometry": 0.1,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.1,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": -1.91,
            "time": "2019-01-28T22:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 34.61,
            "wind_speed": 18.69
          },
          {
            "humidity": 94.32,
            "night": 1,
            "pluviometry": 0.12,
            "pluviometry1h": 0.05,
            "pluviometry_cumul": 0.12,
            "recommended_spray": 3,
            "risk_of_rain": 66.67,
            "snow": 0,
            "temperature": -1.58,
            "time": "2019-01-28T23:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 36.14,
            "wind_speed": 19.4
          },
          {
            "humidity": 94.47,
            "night": 1,
            "pluviometry": 0.1,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.1,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 1,
            "temperature": -1.28,
            "time": "2019-01-29T00:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 37.21,
            "wind_speed": 19.78
          },
          {
            "humidity": 94.84,
            "night": 1,
            "pluviometry": 0.1,
            "pluviometry1h": 0.04,
            "pluviometry_cumul": 0.1,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 1,
            "temperature": -1.03,
            "time": "2019-01-29T01:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 10,
            "wind_direction": "ssEast",
            "wind_gusts": 38.8,
            "wind_speed": 20.24
          },
          {
            "humidity": 95.05,
            "night": 1,
            "pluviometry": 0.08,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.08,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": -0.69,
            "time": "2019-01-29T02:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 38.93,
            "wind_speed": 20.49
          },
          {
            "humidity": 95.38,
            "night": 1,
            "pluviometry": 0.07,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.07,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": -0.35,
            "time": "2019-01-29T03:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 38.34,
            "wind_speed": 20.32
          },
          {
            "humidity": 95.35,
            "night": 1,
            "pluviometry": 0.06,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.06,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": -0.06,
            "time": "2019-01-29T04:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 37.07,
            "wind_speed": 20.09
          },
          {
            "humidity": 95.76,
            "night": 1,
            "pluviometry": 0.07,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.07,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 0.05,
            "time": "2019-01-29T05:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 36.95,
            "wind_speed": 19.37
          },
          {
            "humidity": 96.19,
            "night": 1,
            "pluviometry": 0.08,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.08,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 0.15,
            "time": "2019-01-29T06:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 35.12,
            "wind_speed": 18.58
          },
          {
            "humidity": 96.57,
            "night": 0,
            "pluviometry": 0.08,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.08,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 0.34,
            "time": "2019-01-29T07:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 33.63,
            "wind_speed": 17.59
          },
          {
            "humidity": 96.55,
            "night": 0,
            "pluviometry": 0.08,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.08,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 0.66,
            "time": "2019-01-29T08:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 31.94,
            "wind_speed": 16.72
          },
          {
            "humidity": 96.45,
            "night": 0,
            "pluviometry": 0.08,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.08,
            "recommended_spray": 2,
            "risk_of_rain": 33.33,
            "snow": 0,
            "temperature": 0.95,
            "time": "2019-01-29T09:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 30.78,
            "wind_speed": 15.4
          }
        ],
        "wind_direction": "SSE",
        "wind_gusts": 34.61,
        "wind_speed": 10.9012
      },
      {
        "max_humidity": 98.68,
        "max_temperature": 1.69,
        "min_humidity": 94.24,
        "min_temperature": -4.47,
        "pluviometry_cumul": 0.94,
        "snow": 1,
        "time": "2019-01-28T22:00:00+00:00",
        "weather": 15,
        "weather_reports": [
          {
            "humidity": 94.24,
            "night": 1,
            "pluviometry": 0.1,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.1,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 1,
            "temperature": -1.91,
            "time": "2019-01-28T22:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 34.61,
            "wind_speed": 18.69
          },
          {
            "humidity": 94.84,
            "night": 1,
            "pluviometry": 0.1,
            "pluviometry1h": 0.04,
            "pluviometry_cumul": 0.1,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 1,
            "temperature": -1.03,
            "time": "2019-01-29T01:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 10,
            "wind_direction": "ssEast",
            "wind_gusts": 38.8,
            "wind_speed": 20.24
          },
          {
            "humidity": 95.35,
            "night": 1,
            "pluviometry": 0.06,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.06,
            "recommended_spray": 3,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": -0.06,
            "time": "2019-01-29T04:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 37.07,
            "wind_speed": 20.09
          },
          {
            "humidity": 96.57,
            "night": 0,
            "pluviometry": 0.08,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.08,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 0.34,
            "time": "2019-01-29T07:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 33.63,
            "wind_speed": 17.59
          },
          {
            "humidity": 96.47,
            "night": 0,
            "pluviometry": 0.09,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.09,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 1.22,
            "time": "2019-01-29T10:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 28.2,
            "wind_speed": 13.7
          },
          {
            "humidity": 96.6,
            "night": 0,
            "pluviometry": 0.07,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.07,
            "recommended_spray": 2,
            "risk_of_rain": 33.33,
            "snow": 0,
            "temperature": 1.69,
            "time": "2019-01-29T13:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 19.75,
            "wind_speed": 10.02
          },
          {
            "humidity": 97.67,
            "night": 0,
            "pluviometry": 0.09,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.09,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 1.02,
            "time": "2019-01-29T16:00:00+00:00",
            "warnings": [
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "south",
            "wind_gusts": 13.07,
            "wind_speed": 7.89
          },
          {
            "humidity": 98.03,
            "night": 1,
            "pluviometry": 0.13,
            "pluviometry1h": 0.04,
            "pluviometry_cumul": 0.13,
            "recommended_spray": 2,
            "risk_of_rain": 33.33,
            "snow": 1,
            "temperature": 0.6,
            "time": "2019-01-29T19:00:00+00:00",
            "warnings": [
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "south",
            "wind_gusts": 9.01,
            "wind_speed": 6.14
          }
        ],
        "wind_direction": "ssEast",
        "wind_gusts": 38.93,
        "wind_speed": 13.421999999999999
      },
      {
        "max_humidity": 99.5,
        "max_temperature": 2.42,
        "min_humidity": 92.33,
        "min_temperature": -0.09,
        "pluviometry_cumul": 3.64,
        "snow": 1,
        "time": "2019-01-29T22:00:00+00:00",
        "weather": 20,
        "weather_reports": [
          {
            "humidity": 98.68,
            "night": 1,
            "pluviometry": 0.2,
            "pluviometry1h": 0.05,
            "pluviometry_cumul": 0.2,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 1,
            "temperature": 0.27,
            "time": "2019-01-29T22:00:00+00:00",
            "warnings": [
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "ssEast",
            "wind_gusts": 5.31,
            "wind_speed": 4.89
          },
          {
            "humidity": 99.43,
            "night": 1,
            "pluviometry": 0.22,
            "pluviometry1h": 0.09,
            "pluviometry_cumul": 0.22,
            "recommended_spray": 2,
            "risk_of_rain": 83.33,
            "snow": 1,
            "temperature": -0.05,
            "time": "2019-01-30T01:00:00+00:00",
            "warnings": [
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 4.91,
            "wind_speed": 4.61
          },
          {
            "humidity": 99.47,
            "night": 1,
            "pluviometry": 0.73,
            "pluviometry1h": 0.21,
            "pluviometry_cumul": 0.73,
            "recommended_spray": 2,
            "risk_of_rain": 66.67,
            "snow": 1,
            "temperature": -0.07,
            "time": "2019-01-30T04:00:00+00:00",
            "warnings": [
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 15,
            "wind_direction": "ssEast",
            "wind_gusts": 6.14,
            "wind_speed": 4.53
          },
          {
            "humidity": 98.81,
            "night": 0,
            "pluviometry": 0.97,
            "pluviometry1h": 0.44,
            "pluviometry_cumul": 0.97,
            "recommended_spray": 2,
            "risk_of_rain": 83.33,
            "snow": 1,
            "temperature": 0.29,
            "time": "2019-01-30T07:00:00+00:00",
            "warnings": [
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 15,
            "wind_direction": "sEast",
            "wind_gusts": 8.22,
            "wind_speed": 6.08
          },
          {
            "humidity": 95.75,
            "night": 0,
            "pluviometry": 0.88,
            "pluviometry1h": 0.44,
            "pluviometry_cumul": 0.88,
            "recommended_spray": 2,
            "risk_of_rain": 83.33,
            "snow": 1,
            "temperature": 1.56,
            "time": "2019-01-30T10:00:00+00:00",
            "warnings": [
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 15,
            "wind_direction": "sEast",
            "wind_gusts": 12.74,
            "wind_speed": 8.38
          },
          {
            "humidity": 92.33,
            "night": 0,
            "pluviometry": 0.29,
            "pluviometry1h": 0.11,
            "pluviometry_cumul": 0.29,
            "recommended_spray": 2,
            "risk_of_rain": 83.33,
            "snow": 1,
            "temperature": 2.42,
            "time": "2019-01-30T13:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "ssEast",
            "wind_gusts": 21.74,
            "wind_speed": 11.26
          },
          {
            "humidity": 93.7,
            "night": 0,
            "pluviometry": 0.22,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.22,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 2.1,
            "time": "2019-01-30T16:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "south",
            "wind_gusts": 20.27,
            "wind_speed": 10.12
          },
          {
            "humidity": 95.82,
            "night": 1,
            "pluviometry": 0.27,
            "pluviometry1h": 0.13,
            "pluviometry_cumul": 0.27,
            "recommended_spray": 2,
            "risk_of_rain": 66.67,
            "snow": 0,
            "temperature": 1.72,
            "time": "2019-01-30T19:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "ssEast",
            "wind_gusts": 18.83,
            "wind_speed": 10.4
          }
        ],
        "wind_direction": "ssEast",
        "wind_gusts": 22.24,
        "wind_speed": 7.98
      },
      {
        "max_humidity": 98.25,
        "max_temperature": 1.95,
        "min_humidity": 89.37,
        "min_temperature": 0.09,
        "pluviometry_cumul": 1.32,
        "snow": 1,
        "time": "2019-01-30T22:00:00+00:00",
        "weather": 15,
        "weather_reports": [
          {
            "humidity": 96.15,
            "night": 1,
            "pluviometry": 0.12,
            "pluviometry1h": 0.05,
            "pluviometry_cumul": 0.12,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 1.68,
            "time": "2019-01-30T22:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 20.69,
            "wind_speed": 11.41
          },
          {
            "humidity": 96.11,
            "night": 1,
            "pluviometry": 0.16,
            "pluviometry1h": 0.06,
            "pluviometry_cumul": 0.16,
            "recommended_spray": 2,
            "risk_of_rain": 33.33,
            "snow": 0,
            "temperature": 1.38,
            "time": "2019-01-31T01:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "ssEast",
            "wind_gusts": 19.95,
            "wind_speed": 11.92
          },
          {
            "humidity": 97.21,
            "night": 1,
            "pluviometry": 0.09,
            "pluviometry1h": 0.04,
            "pluviometry_cumul": 0.09,
            "recommended_spray": 2,
            "risk_of_rain": 33.33,
            "snow": 0,
            "temperature": 0.88,
            "time": "2019-01-31T04:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 21.54,
            "wind_speed": 12.73
          },
          {
            "humidity": 96.21,
            "night": 0,
            "pluviometry": 0.1,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.1,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 0.66,
            "time": "2019-01-31T07:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 23.63,
            "wind_speed": 13.34
          },
          {
            "humidity": 90.35,
            "night": 0,
            "pluviometry": 0.16,
            "pluviometry1h": 0.05,
            "pluviometry_cumul": 0.16,
            "recommended_spray": 2,
            "risk_of_rain": 33.33,
            "snow": 0,
            "temperature": 1.76,
            "time": "2019-01-31T10:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 26.49,
            "wind_speed": 13.49
          },
          {
            "humidity": 90.29,
            "night": 0,
            "pluviometry": 0.13,
            "pluviometry1h": 0.04,
            "pluviometry_cumul": 0.13,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 1,
            "temperature": 1.61,
            "time": "2019-01-31T13:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 24.07,
            "wind_speed": 12.18
          },
          {
            "humidity": 95.7,
            "night": 0,
            "pluviometry": 0.23,
            "pluviometry1h": 0.08,
            "pluviometry_cumul": 0.23,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 1,
            "temperature": 0.09,
            "time": "2019-01-31T16:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 15,
            "wind_direction": "sEast",
            "wind_gusts": 27.24,
            "wind_speed": 13.77
          },
          {
            "humidity": 98.25,
            "night": 1,
            "pluviometry": 0.38,
            "pluviometry1h": 0.12,
            "pluviometry_cumul": 0.38,
            "recommended_spray": 2,
            "risk_of_rain": 66.67,
            "snow": 1,
            "temperature": -0.45,
            "time": "2019-01-31T19:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 15,
            "wind_direction": "sEast",
            "wind_gusts": 29.06,
            "wind_speed": 14.15
          }
        ],
        "wind_direction": "SE",
        "wind_gusts": 30.32,
        "wind_speed": 12.8884
      },
      {
        "max_humidity": 98.04,
        "max_temperature": 2.8,
        "min_humidity": 90.27,
        "min_temperature": -0.45,
        "pluviometry_cumul": 0.4,
        "snow": 1,
        "time": "2019-01-31T22:00:00+00:00",
        "weather": 15,
        "weather_reports": [
          {
            "humidity": 97.51,
            "night": 1,
            "pluviometry": 0.07,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.07,
            "recommended_spray": 2,
            "risk_of_rain": 33.33,
            "snow": 0,
            "temperature": -0.13,
            "time": "2019-01-31T22:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 22.2,
            "wind_speed": 11.95
          },
          {
            "humidity": 97.57,
            "night": 1,
            "pluviometry": 0.16,
            "pluviometry1h": 0.05,
            "pluviometry_cumul": 0.16,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 0.06,
            "time": "2019-02-01T01:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 20.61,
            "wind_speed": 10.18
          },
          {
            "humidity": 97.9,
            "night": 1,
            "pluviometry": 0.14,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.14,
            "recommended_spray": 2,
            "risk_of_rain": 33.33,
            "snow": 1,
            "temperature": 0.31,
            "time": "2019-02-01T04:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 15,
            "wind_direction": "ssEast",
            "wind_gusts": 18.97,
            "wind_speed": 9.36
          },
          {
            "humidity": 95.97,
            "night": 0,
            "pluviometry": 0.04,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.04,
            "recommended_spray": 2,
            "risk_of_rain": 20,
            "snow": 0,
            "temperature": 1.28,
            "time": "2019-02-01T07:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "south",
            "wind_gusts": 19.44,
            "wind_speed": 8.19
          },
          {
            "humidity": 90.95,
            "night": 0,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 20,
            "snow": 0,
            "temperature": 2.56,
            "time": "2019-02-01T10:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "ssEast",
            "wind_gusts": 20.48,
            "wind_speed": 7.17
          },
          {
            "humidity": 90.45,
            "night": 0,
            "pluviometry": 0.04,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.04,
            "recommended_spray": 2,
            "risk_of_rain": 20,
            "snow": 0,
            "temperature": 2.41,
            "time": "2019-02-01T13:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 21.8,
            "wind_speed": 7.56
          },
          {
            "humidity": 92.99,
            "night": 0,
            "pluviometry": 0.04,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.04,
            "recommended_spray": 2,
            "risk_of_rain": 20,
            "snow": 0,
            "temperature": 1.49,
            "time": "2019-02-01T16:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 20.89,
            "wind_speed": 8.41
          },
          {
            "humidity": 96.21,
            "night": 1,
            "pluviometry": 0.05,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.05,
            "recommended_spray": 2,
            "risk_of_rain": 40,
            "snow": 0,
            "temperature": 1.32,
            "time": "2019-02-01T19:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 22,
            "wind_speed": 8.7
          }
        ],
        "wind_direction": "sEast",
        "wind_gusts": 23.21,
        "wind_speed": 8.7508
      },
      {
        "max_humidity": 97.19,
        "max_temperature": 1.59,
        "min_humidity": 94.27,
        "min_temperature": -1.15,
        "pluviometry_cumul": 0.45,
        "snow": 0,
        "time": "2019-02-01T22:00:00+00:00",
        "weather": 15,
        "weather_reports": [
          {
            "humidity": 96.2,
            "night": 1,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 20,
            "snow": 0,
            "temperature": 0.27,
            "time": "2019-02-01T22:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 23.21,
            "wind_speed": 8.66
          },
          {
            "humidity": 96.28,
            "night": 1,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 0,
            "temperature": -1.15,
            "time": "2019-02-02T01:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 31.99,
            "wind_speed": 9.56
          },
          {
            "humidity": 96.51,
            "night": 1,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 0,
            "temperature": -0.76,
            "time": "2019-02-02T04:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "esEast",
            "wind_gusts": 35.85,
            "wind_speed": 10.45
          },
          {
            "humidity": 96.08,
            "night": 0,
            "pluviometry": 0.03,
            "pluviometry1h": 0.01,
            "pluviometry_cumul": 0.03,
            "recommended_spray": 2,
            "risk_of_rain": 0,
            "snow": 0,
            "temperature": -0.7,
            "time": "2019-02-02T07:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 39.2,
            "wind_speed": 13.42
          },
          {
            "humidity": 94.3,
            "night": 0,
            "pluviometry": 0.06,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.06,
            "recommended_spray": 2,
            "risk_of_rain": 25,
            "snow": 0,
            "temperature": 0.74,
            "time": "2019-02-02T10:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 39.12,
            "wind_speed": 14.93
          },
          {
            "humidity": 94.81,
            "night": 0,
            "pluviometry": 0.06,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.06,
            "recommended_spray": 2,
            "risk_of_rain": 25,
            "snow": 0,
            "temperature": 1.28,
            "time": "2019-02-02T13:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 42.11,
            "wind_speed": 14.62
          },
          {
            "humidity": 96.19,
            "night": 0,
            "pluviometry": 0.06,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.06,
            "recommended_spray": 2,
            "risk_of_rain": 25,
            "snow": 0,
            "temperature": 1.07,
            "time": "2019-02-02T16:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 43.79,
            "wind_speed": 15.41
          },
          {
            "humidity": 97.13,
            "night": 1,
            "pluviometry": 0.06,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.06,
            "recommended_spray": 2,
            "risk_of_rain": 25,
            "snow": 0,
            "temperature": 0.98,
            "time": "2019-02-02T19:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 46.13,
            "wind_speed": 16.31
          }
        ],
        "wind_direction": "SE",
        "wind_gusts": 50.98,
        "wind_speed": 13.344
      },
      {
        "max_humidity": 96.99,
        "max_temperature": 2.67,
        "min_humidity": 94.97,
        "min_temperature": 0.95,
        "pluviometry_cumul": 2.31,
        "snow": 0,
        "time": "2019-02-02T22:00:00+00:00",
        "weather": 15,
        "weather_reports": [
          {
            "humidity": 96.99,
            "night": 1,
            "pluviometry": 0.06,
            "pluviometry1h": 0.02,
            "pluviometry_cumul": 0.06,
            "recommended_spray": 2,
            "risk_of_rain": 25,
            "snow": 0,
            "temperature": 1.33,
            "time": "2019-02-02T22:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 50.98,
            "wind_speed": 16.64
          },
          {
            "humidity": 96.65,
            "night": 1,
            "pluviometry": 0.09,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.09,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 1.58,
            "time": "2019-02-03T01:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 50.42,
            "wind_speed": 17.45
          },
          {
            "humidity": 96.86,
            "night": 1,
            "pluviometry": 0.09,
            "pluviometry1h": 0.03,
            "pluviometry_cumul": 0.09,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 1.52,
            "time": "2019-02-03T04:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 49.24,
            "wind_speed": 17.84
          },
          {
            "humidity": 96.65,
            "night": 0,
            "pluviometry": 0.12,
            "pluviometry1h": 0.04,
            "pluviometry_cumul": 0.12,
            "recommended_spray": 2,
            "risk_of_rain": 25,
            "snow": 0,
            "temperature": 1.69,
            "time": "2019-02-03T07:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 5,
            "wind_direction": "sEast",
            "wind_gusts": 50.14,
            "wind_speed": 17.98
          },
          {
            "humidity": 95.61,
            "night": 0,
            "pluviometry": 0.36,
            "pluviometry1h": 0.12,
            "pluviometry_cumul": 0.36,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 2.41,
            "time": "2019-02-03T10:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 49.31,
            "wind_speed": 17.56
          },
          {
            "humidity": 94.97,
            "night": 0,
            "pluviometry": 0.63,
            "pluviometry1h": 0.21,
            "pluviometry_cumul": 0.63,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 2.63,
            "time": "2019-02-03T13:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 15,
            "wind_direction": "sEast",
            "wind_gusts": 51.17,
            "wind_speed": 17.7
          },
          {
            "humidity": 95.57,
            "night": 0,
            "pluviometry": 0.45,
            "pluviometry1h": 0.15,
            "pluviometry_cumul": 0.45,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 2.26,
            "time": "2019-02-03T16:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 48.81,
            "wind_speed": 18.04
          },
          {
            "humidity": 96.4,
            "night": 1,
            "pluviometry": 0.18,
            "pluviometry1h": 0.06,
            "pluviometry_cumul": 0.18,
            "recommended_spray": 2,
            "risk_of_rain": 50,
            "snow": 0,
            "temperature": 2.14,
            "time": "2019-02-03T19:00:00+00:00",
            "warnings": [
              {
                "comment": "Attention rafales",
                "icon": "GUST",
                "type": "GUST"
              },
              {
                "comment": "L'hygrométrie est très importante",
                "icon": null,
                "type": "HY95"
              },
              {
                "comment": "La température est basse (< 10°)",
                "icon": null,
                "type": "TE10"
              }
            ],
            "weather": 10,
            "wind_direction": "sEast",
            "wind_gusts": 44.77,
            "wind_speed": 17.83
          }
        ],
        "wind_direction": "SE",
        "wind_gusts": 51.46,
        "wind_speed": 17.676399999999997
      }
    ],
    "timezone": "Europe/Kiev"
  }
}