Validations history

Validation #253

Failure

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

  • The property '#/' contains additional properties ["current_weathers"] outside of the schema when none are allowed in schema dc8a3223-dea3-59e5-a03e-fb5c913e8cef
  • The property '#/' did not contain a required property of 'current_weather' in schema dc8a3223-dea3-59e5-a03e-fb5c913e8cef

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultRainradar_301": {
      "additionalProperties": false,
      "description": "Automatically generated",
      "properties": {
        "rain_code": {
          "type": "integer"
        },
        "time": {
          "format": "datetime",
          "type": "string"
        }
      },
      "required": [
        "rain_code",
        "time"
      ],
      "title": "RainRadar - DefaultRainradar",
      "type": "object"
    },
    "DefaultWarning_302": {
      "additionalProperties": false,
      "description": "Automatically generated",
      "properties": {
        "comment": {
          "type": "string"
        },
        "type": {
          "enum": [
            "OK",
            "BEE",
            "GUST",
            "RAIN",
            "HY50",
            "HY70",
            "HY95",
            "WI19",
            "TE25",
            "TZ10",
            "RISK",
            "TE00",
            "TE05",
            "TE12",
            "TE13",
            "R1H3",
            "RAI2",
            "OPTI"
          ],
          "type": "string"
        }
      },
      "required": [
        "comment",
        "type"
      ],
      "title": "Warning - DefaultWarning",
      "type": "object"
    }
  },
  "description": "Automatically generated",
  "properties": {
    "current_weather": {
      "additionalProperties": false,
      "properties": {
        "city": {
          "pattern": "^[A-Z](\\p{L}|-)+$",
          "type": "string"
        },
        "city_code": {
          "pattern": "^[A-Z0-9\\-_]*$",
          "type": "string"
        },
        "humidity": {
          "maximum": 70,
          "minimum": 30,
          "type": "number"
        },
        "latitude": {
          "maximum": 90,
          "minimum": -90,
          "type": "number"
        },
        "longitude": {
          "maximum": 180,
          "minimum": -180,
          "type": "number"
        },
        "night": {
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        },
        "pluviometry": {
          "maximum": 2,
          "minimum": 0,
          "type": "number"
        },
        "pluviometry_cumul": {
          "maximum": 2,
          "minimum": 0,
          "type": "number"
        },
        "rain_radar": {
          "items": {
            "$ref": "#/definitions/DefaultRainradar_301",
            "type": "object"
          },
          "type": "array"
        },
        "recommended_spray": {
          "maximum": 3,
          "minimum": 0,
          "type": "integer"
        },
        "risk_of_rain": {
          "maximum": 3,
          "minimum": 0,
          "type": "integer"
        },
        "snow": {
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        },
        "temperature": {
          "maximum": 40,
          "minimum": -15,
          "type": "number"
        },
        "time": {
          "format": "datetime",
          "type": "string"
        },
        "timezone": {
          "maxLength": 30,
          "minLength": 2,
          "type": "string"
        },
        "warnings": {
          "items": {
            "$ref": "#/definitions/DefaultWarning_302",
            "type": "object"
          },
          "type": "array"
        },
        "weather": {
          "maximum": 30,
          "minimum": 0,
          "type": "integer"
        },
        "wind_direction": {
          "maxLength": 3,
          "minLength": 1,
          "type": "string"
        },
        "wind_gusts": {
          "maximum": 60,
          "minimum": 25,
          "type": "number"
        },
        "wind_speed": {
          "maximum": 30,
          "minimum": 5,
          "type": "number"
        }
      },
      "required": [
        "city",
        "city_code",
        "humidity",
        "latitude",
        "longitude",
        "night",
        "pluviometry",
        "pluviometry_cumul",
        "rain_radar",
        "recommended_spray",
        "risk_of_rain",
        "snow",
        "temperature",
        "time",
        "timezone",
        "warnings",
        "weather",
        "wind_direction",
        "wind_gusts",
        "wind_speed"
      ],
      "type": "object"
    }
  },
  "required": [
    "current_weather"
  ],
  "title": "CurrentWeather - DefaultCurrentweather",
  "type": "object"
}

JSON instance

{
  "current_weathers": {
    "city": "NOGENT-SUR-SEINE",
    "city_code": "CY_FR_10268",
    "humidity": 45.11119,
    "latitude": 48.483333,
    "longitude": 3.5,
    "night": 0,
    "pluviometry": 0,
    "pluviometry_cumul": 0,
    "rain_radar": [
      {
        "rain_code": 0,
        "time": "2018-05-25T13:30:00Z"
      },
      {
        "rain_code": 0,
        "time": "2018-05-25T14:00:00Z"
      },
      {
        "rain_code": 0,
        "time": "2018-05-25T14:30:00Z"
      },
      {
        "rain_code": 0,
        "time": "2018-05-25T15:00:00Z"
      },
      {
        "rain_code": 0,
        "time": "2018-05-25T15:30:00Z"
      },
      {
        "rain_code": 0,
        "time": "2018-05-25T16:00:00Z"
      }
    ],
    "recommended_spray": null,
    "risk_of_rain": 1,
    "snow": 0,
    "temperature": 25.69891,
    "time": "2018-05-25T13:55:02Z",
    "timezone": "Europe/Paris",
    "warnings": [],
    "weather": 7,
    "wind_direction": "E",
    "wind_gusts": 26.5331984,
    "wind_speed": 10.3355064
  }
}

Validation #252

Failure

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

  • The property '#/' contains additional properties ["time", "temperature", "weather", "recommended_spray", "wind_speed", "wind_gusts", "wind_direction", "humidity", "pluviometry", "pluviometry_cumul", "risk_of_rain", "warnings", "rain_radar", "night", "snow", "city_code", "city", "latitude", "longitude", "timezone"] outside of the schema when none are allowed in schema dc8a3223-dea3-59e5-a03e-fb5c913e8cef
  • The property '#/' did not contain a required property of 'current_weather' in schema dc8a3223-dea3-59e5-a03e-fb5c913e8cef

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultRainradar_301": {
      "additionalProperties": false,
      "description": "Automatically generated",
      "properties": {
        "rain_code": {
          "type": "integer"
        },
        "time": {
          "format": "datetime",
          "type": "string"
        }
      },
      "required": [
        "rain_code",
        "time"
      ],
      "title": "RainRadar - DefaultRainradar",
      "type": "object"
    },
    "DefaultWarning_302": {
      "additionalProperties": false,
      "description": "Automatically generated",
      "properties": {
        "comment": {
          "type": "string"
        },
        "type": {
          "enum": [
            "OK",
            "BEE",
            "GUST",
            "RAIN",
            "HY50",
            "HY70",
            "HY95",
            "WI19",
            "TE25",
            "TZ10",
            "RISK",
            "TE00",
            "TE05",
            "TE12",
            "TE13",
            "R1H3",
            "RAI2",
            "OPTI"
          ],
          "type": "string"
        }
      },
      "required": [
        "comment",
        "type"
      ],
      "title": "Warning - DefaultWarning",
      "type": "object"
    }
  },
  "description": "Automatically generated",
  "properties": {
    "current_weather": {
      "additionalProperties": false,
      "properties": {
        "city": {
          "pattern": "^[A-Z](\\p{L}|-)+$",
          "type": "string"
        },
        "city_code": {
          "pattern": "^[A-Z0-9\\-_]*$",
          "type": "string"
        },
        "humidity": {
          "maximum": 70,
          "minimum": 30,
          "type": "number"
        },
        "latitude": {
          "maximum": 90,
          "minimum": -90,
          "type": "number"
        },
        "longitude": {
          "maximum": 180,
          "minimum": -180,
          "type": "number"
        },
        "night": {
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        },
        "pluviometry": {
          "maximum": 2,
          "minimum": 0,
          "type": "number"
        },
        "pluviometry_cumul": {
          "maximum": 2,
          "minimum": 0,
          "type": "number"
        },
        "rain_radar": {
          "items": {
            "$ref": "#/definitions/DefaultRainradar_301",
            "type": "object"
          },
          "type": "array"
        },
        "recommended_spray": {
          "maximum": 3,
          "minimum": 0,
          "type": "integer"
        },
        "risk_of_rain": {
          "maximum": 3,
          "minimum": 0,
          "type": "integer"
        },
        "snow": {
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        },
        "temperature": {
          "maximum": 40,
          "minimum": -15,
          "type": "number"
        },
        "time": {
          "format": "datetime",
          "type": "string"
        },
        "timezone": {
          "maxLength": 30,
          "minLength": 2,
          "type": "string"
        },
        "warnings": {
          "items": {
            "$ref": "#/definitions/DefaultWarning_302",
            "type": "object"
          },
          "type": "array"
        },
        "weather": {
          "maximum": 30,
          "minimum": 0,
          "type": "integer"
        },
        "wind_direction": {
          "maxLength": 3,
          "minLength": 1,
          "type": "string"
        },
        "wind_gusts": {
          "maximum": 60,
          "minimum": 25,
          "type": "number"
        },
        "wind_speed": {
          "maximum": 30,
          "minimum": 5,
          "type": "number"
        }
      },
      "required": [
        "city",
        "city_code",
        "humidity",
        "latitude",
        "longitude",
        "night",
        "pluviometry",
        "pluviometry_cumul",
        "rain_radar",
        "recommended_spray",
        "risk_of_rain",
        "snow",
        "temperature",
        "time",
        "timezone",
        "warnings",
        "weather",
        "wind_direction",
        "wind_gusts",
        "wind_speed"
      ],
      "type": "object"
    }
  },
  "required": [
    "current_weather"
  ],
  "title": "CurrentWeather - DefaultCurrentweather",
  "type": "object"
}

JSON instance

{
  "city": "NOGENT-SUR-SEINE",
  "city_code": "CY_FR_10268",
  "humidity": 45.11119,
  "latitude": 48.483333,
  "longitude": 3.5,
  "night": 0,
  "pluviometry": 0,
  "pluviometry_cumul": 0,
  "rain_radar": [
    {
      "rain_code": 0,
      "time": "2018-05-25T13:30:00Z"
    },
    {
      "rain_code": 0,
      "time": "2018-05-25T14:00:00Z"
    },
    {
      "rain_code": 0,
      "time": "2018-05-25T14:30:00Z"
    },
    {
      "rain_code": 0,
      "time": "2018-05-25T15:00:00Z"
    },
    {
      "rain_code": 0,
      "time": "2018-05-25T15:30:00Z"
    },
    {
      "rain_code": 0,
      "time": "2018-05-25T16:00:00Z"
    }
  ],
  "recommended_spray": null,
  "risk_of_rain": 1,
  "snow": 0,
  "temperature": 25.69891,
  "time": "2018-05-25T13:55:02Z",
  "timezone": "Europe/Paris",
  "warnings": [],
  "weather": 7,
  "wind_direction": "E",
  "wind_gusts": 26.5331984,
  "wind_speed": 10.3355064
}

Validation #251

Failure

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

  • The property '#/' contains additional properties ["time", "temperature", "weather", "recommended_spray", "wind_speed", "wind_gusts", "wind_direction", "humidity", "pluviometry1h", "pluviometry", "pluviometry_cumul", "risk_of_rain", "warnings", "rain_radar", "night", "snow", "city_code", "city", "country_code", "latitude", "longitude", "timezone", "windowsTZ"] outside of the schema when none are allowed in schema dc8a3223-dea3-59e5-a03e-fb5c913e8cef
  • The property '#/' did not contain a required property of 'current_weather' in schema dc8a3223-dea3-59e5-a03e-fb5c913e8cef

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultRainradar_301": {
      "additionalProperties": false,
      "description": "Automatically generated",
      "properties": {
        "rain_code": {
          "type": "integer"
        },
        "time": {
          "format": "datetime",
          "type": "string"
        }
      },
      "required": [
        "rain_code",
        "time"
      ],
      "title": "RainRadar - DefaultRainradar",
      "type": "object"
    },
    "DefaultWarning_302": {
      "additionalProperties": false,
      "description": "Automatically generated",
      "properties": {
        "comment": {
          "type": "string"
        },
        "type": {
          "enum": [
            "OK",
            "BEE",
            "GUST",
            "RAIN",
            "HY50",
            "HY70",
            "HY95",
            "WI19",
            "TE25",
            "TZ10",
            "RISK",
            "TE00",
            "TE05",
            "TE12",
            "TE13",
            "R1H3",
            "RAI2",
            "OPTI"
          ],
          "type": "string"
        }
      },
      "required": [
        "comment",
        "type"
      ],
      "title": "Warning - DefaultWarning",
      "type": "object"
    }
  },
  "description": "Automatically generated",
  "properties": {
    "current_weather": {
      "additionalProperties": false,
      "properties": {
        "city": {
          "pattern": "^[A-Z](\\p{L}|-)+$",
          "type": "string"
        },
        "city_code": {
          "pattern": "^[A-Z0-9\\-_]*$",
          "type": "string"
        },
        "humidity": {
          "maximum": 70,
          "minimum": 30,
          "type": "number"
        },
        "latitude": {
          "maximum": 90,
          "minimum": -90,
          "type": "number"
        },
        "longitude": {
          "maximum": 180,
          "minimum": -180,
          "type": "number"
        },
        "night": {
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        },
        "pluviometry": {
          "maximum": 2,
          "minimum": 0,
          "type": "number"
        },
        "pluviometry_cumul": {
          "maximum": 2,
          "minimum": 0,
          "type": "number"
        },
        "rain_radar": {
          "items": {
            "$ref": "#/definitions/DefaultRainradar_301",
            "type": "object"
          },
          "type": "array"
        },
        "recommended_spray": {
          "maximum": 3,
          "minimum": 0,
          "type": "integer"
        },
        "risk_of_rain": {
          "maximum": 3,
          "minimum": 0,
          "type": "integer"
        },
        "snow": {
          "maximum": 1,
          "minimum": 0,
          "type": "integer"
        },
        "temperature": {
          "maximum": 40,
          "minimum": -15,
          "type": "number"
        },
        "time": {
          "format": "datetime",
          "type": "string"
        },
        "timezone": {
          "maxLength": 30,
          "minLength": 2,
          "type": "string"
        },
        "warnings": {
          "items": {
            "$ref": "#/definitions/DefaultWarning_302",
            "type": "object"
          },
          "type": "array"
        },
        "weather": {
          "maximum": 30,
          "minimum": 0,
          "type": "integer"
        },
        "wind_direction": {
          "maxLength": 3,
          "minLength": 1,
          "type": "string"
        },
        "wind_gusts": {
          "maximum": 60,
          "minimum": 25,
          "type": "number"
        },
        "wind_speed": {
          "maximum": 30,
          "minimum": 5,
          "type": "number"
        }
      },
      "required": [
        "city",
        "city_code",
        "humidity",
        "latitude",
        "longitude",
        "night",
        "pluviometry",
        "pluviometry_cumul",
        "rain_radar",
        "recommended_spray",
        "risk_of_rain",
        "snow",
        "temperature",
        "time",
        "timezone",
        "warnings",
        "weather",
        "wind_direction",
        "wind_gusts",
        "wind_speed"
      ],
      "type": "object"
    }
  },
  "required": [
    "current_weather"
  ],
  "title": "CurrentWeather - DefaultCurrentweather",
  "type": "object"
}

JSON instance

{
  "city": "NOGENT-SUR-SEINE",
  "city_code": "CY_FR_10268",
  "country_code": "FR",
  "humidity": 45.11119,
  "latitude": 48.483333,
  "longitude": 3.5,
  "night": 0,
  "pluviometry": 0,
  "pluviometry1h": 0,
  "pluviometry_cumul": 0,
  "rain_radar": [
    {
      "rain_code": 0,
      "time": "2018-05-25T13:30:00Z"
    },
    {
      "rain_code": 0,
      "time": "2018-05-25T14:00:00Z"
    },
    {
      "rain_code": 0,
      "time": "2018-05-25T14:30:00Z"
    },
    {
      "rain_code": 0,
      "time": "2018-05-25T15:00:00Z"
    },
    {
      "rain_code": 0,
      "time": "2018-05-25T15:30:00Z"
    },
    {
      "rain_code": 0,
      "time": "2018-05-25T16:00:00Z"
    }
  ],
  "recommended_spray": null,
  "risk_of_rain": null,
  "snow": 0,
  "temperature": 25.69891,
  "time": "2018-05-25T13:55:02Z",
  "timezone": "Europe/Paris",
  "warnings": null,
  "weather": 7,
  "wind_direction": "E",
  "wind_gusts": 21.5331984,
  "wind_speed": 10.3355064,
  "windowsTZ": "Romance Standard Time"
}

Validation #250

Failure

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

  • The property '#/0' contains additional properties ["countryName", "windowsTZ"] outside of the schema when none are allowed in schema 628c9097-95dc-5c42-b218-1b1fa0c7d1ef
  • The property '#/1' contains additional properties ["countryName", "windowsTZ"] outside of the schema when none are allowed in schema 628c9097-95dc-5c42-b218-1b1fa0c7d1ef

JSON Schema

{
  "definitions": {
    "DefaultLocationResult_375": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "latitude": {
          "maximum": 90,
          "minimum": -90,
          "type": "number"
        },
        "longitude": {
          "maximum": 180,
          "minimum": -180,
          "type": "number"
        }
      },
      "required": [
        "latitude",
        "longitude"
      ],
      "title": "LocationResult - DefaultLocationResult",
      "type": "object"
    }
  },
  "items": {
    "additionalProperties": false,
    "properties": {
      "cityCode": {
        "pattern": "^[A-Z0-9\\-_]*$",
        "type": "string"
      },
      "cityName": {
        "pattern": "^[A-Z](\\p{L}|-)+$",
        "type": "string"
      },
      "countryCode": {
        "enum": [
          "FR"
        ],
        "type": "string"
      },
      "location": {
        "$ref": "#/definitions/DefaultLocationResult_375",
        "type": "object"
      },
      "realName": {
        "type": "string"
      },
      "timezone": {
        "enum": [
          "Europe/Paris"
        ],
        "type": "string"
      },
      "zipCode": {
        "type": "string"
      }
    },
    "required": [
      "cityCode",
      "cityName",
      "countryCode",
      "location",
      "realName",
      "timezone",
      "zipCode"
    ],
    "type": "object"
  },
  "title": "City - CityExtended",
  "type": "array"
}

JSON instance

[
  {
    "cityCode": "CY_FR_75056",
    "cityName": "PARIS",
    "countryCode": "FR",
    "countryName": "",
    "location": {
      "latitude": 48.86000061035156,
      "longitude": 2.344449996948242
    },
    "realName": "Paris",
    "timezone": "Europe/Paris",
    "windowsTZ": "Romance Standard Time",
    "zipCode": "75001-75002-75003-75"
  },
  {
    "cityCode": "CY_FR_59350",
    "cityName": "LILLE",
    "countryCode": "FR",
    "countryName": "",
    "location": {
      "latitude": 50.633333,
      "longitude": 3.066667
    },
    "realName": "Lille",
    "timezone": "Europe/Paris",
    "windowsTZ": "Romance Standard Time",
    "zipCode": "59000-59160-59260-59"
  }
]

Validation #249

Failure

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

  • The property '#/catalog/0/notation_accumulation_don/value' of type null did not match the following type: number in schema 213f952e-fd9e-5c68-9e56-fa50bdf895bf#
  • The property '#/catalog/0/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/0/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/0/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/1/notation_accumulation_don/value' of type null did not match the following type: number in schema 213f952e-fd9e-5c68-9e56-fa50bdf895bf#
  • The property '#/catalog/1/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/1/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/1/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/2/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/2/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/2/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/3/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/3/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/3/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/4/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/4/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/4/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/5/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/5/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/5/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/6/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/6/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/6/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/7/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/7/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/7/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/8/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/8/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/8/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/9/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/9/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/9/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/10/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/10/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/10/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/11/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/11/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/11/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/12/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/12/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/12/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/13/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/13/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/13/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/14/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/14/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/14/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/15/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/15/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/15/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/16/notation_accumulation_don/value' of type null did not match the following type: number in schema 213f952e-fd9e-5c68-9e56-fa50bdf895bf#
  • The property '#/catalog/16/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/16/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/16/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/17/notation_accumulation_don/value' of type null did not match the following type: number in schema 213f952e-fd9e-5c68-9e56-fa50bdf895bf#
  • The property '#/catalog/17/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/17/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/17/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/18/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/18/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/18/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/19/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/19/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/19/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/20/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/20/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/20/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/21/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/21/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/21/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/22/notation_accumulation_don/value' of type null did not match the following type: number in schema 213f952e-fd9e-5c68-9e56-fa50bdf895bf#
  • The property '#/catalog/22/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/22/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/22/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/23/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/23/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/23/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/24/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/24/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/24/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/25/notation_accumulation_don/value' of type null did not match the following type: number in schema 213f952e-fd9e-5c68-9e56-fa50bdf895bf#
  • The property '#/catalog/25/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/25/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/25/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/26/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/26/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/26/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/27/notation_accumulation_don/value' of type null did not match the following type: number in schema 213f952e-fd9e-5c68-9e56-fa50bdf895bf#
  • The property '#/catalog/27/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/27/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/27/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/28/notation_accumulation_don/value' of type null did not match the following type: number in schema 213f952e-fd9e-5c68-9e56-fa50bdf895bf#
  • The property '#/catalog/28/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/28/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/28/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/29/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/29/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/29/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/30/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/30/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/30/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/31/notation_accumulation_don/value' of type null did not match the following type: number in schema 213f952e-fd9e-5c68-9e56-fa50bdf895bf#
  • The property '#/catalog/31/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/31/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/31/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/32/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/32/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/32/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/33/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/33/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/33/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/34/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/34/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/34/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/35/notation_accumulation_don/value' of type null did not match the following type: number in schema 213f952e-fd9e-5c68-9e56-fa50bdf895bf#
  • The property '#/catalog/35/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/35/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/35/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/36/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/36/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/36/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/37/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/37/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/37/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/39/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/39/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/39/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/41/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/41/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/41/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/42/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/42/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/42/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/43/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/43/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/43/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/44/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/44/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/44/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/45/notation_accumulation_don/value' of type null did not match the following type: number in schema 213f952e-fd9e-5c68-9e56-fa50bdf895bf#
  • The property '#/catalog/45/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/45/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/45/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/46/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/46/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/46/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/47/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/47/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/47/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/48/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/48/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/48/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/50/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/50/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/50/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/51/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/51/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/51/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/52/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/52/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/52/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/53/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/53/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/53/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/54/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/54/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/54/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/55/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/55/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/55/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/56/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/56/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/56/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/57/notation_accumulation_don/value' of type null did not match the following type: number in schema 213f952e-fd9e-5c68-9e56-fa50bdf895bf#
  • The property '#/catalog/57/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/57/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/57/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/58/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/58/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/58/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/59/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/59/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/59/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/60/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/60/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/60/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/61/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/61/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/61/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/62/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/62/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/62/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/63/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/63/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/63/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/64/notation_accumulation_don/value' of type null did not match the following type: number in schema 213f952e-fd9e-5c68-9e56-fa50bdf895bf#
  • The property '#/catalog/64/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/64/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/64/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/65/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/65/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/65/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/66/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/66/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/66/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/67/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/67/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/67/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/68/notation_accumulation_don/value' of type null did not match the following type: number in schema 213f952e-fd9e-5c68-9e56-fa50bdf895bf#
  • The property '#/catalog/68/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/68/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/68/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/69/notation_accumulation_don/value' of type null did not match the following type: number in schema 213f952e-fd9e-5c68-9e56-fa50bdf895bf#
  • The property '#/catalog/69/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/69/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/69/notation_de_rendement_categorie_debouche' of type number did not match the following type: null
  • The property '#/catalog/70/notation_de_rendement_categorie_debouche' of type number did not match any of the required schemas. The schema specific errors were: - oneOf #0: - The property '#/catalog/70/notation_de_rendement_categorie_debouche' of type number did not match the following type: integer - oneOf #1: - The property '#/catalog/70/notation_de_rendement_categorie_debouche' of type number did not match the following type: null

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultEvalValuesObject_657": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "eval": {
          "type": "integer"
        },
        "values": {
          "items": {
            "$ref": "#/definitions/DefaultValueObject_656",
            "type": "object"
          },
          "type": "array"
        }
      },
      "required": [
        "eval",
        "values"
      ],
      "title": "eval values object - DefaultEvalValuesObject",
      "type": "object"
    },
    "DefaultFloatEvalValue_655": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "eval": {
          "type": "integer"
        },
        "value": {
          "type": "number"
        }
      },
      "required": [
        "eval",
        "value"
      ],
      "title": "float eval value object - DefaultFloatEvalValue",
      "type": "object"
    },
    "DefaultValueObject_656": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "value": {
          "type": "string"
        }
      },
      "required": [
        "value"
      ],
      "title": "string value object - DefaultValueObject",
      "type": "object"
    },
    "FullValueObject_658": {
      "additionalProperties": false,
      "properties": {
        "eval": {
          "type": "integer"
        },
        "value": {
          "type": "string"
        }
      },
      "required": [
        "eval",
        "value"
      ],
      "title": "string value object - FullValueObject",
      "type": "object"
    }
  },
  "description": "Automatically generated (please edit me)",
  "properties": {
    "catalog": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "alternativite": {
            "items": {
              "$ref": "#/definitions/DefaultValueObject_656",
              "type": "object"
            },
            "type": "array"
          },
          "appreciation_moulin_soufflet": {
            "type": "string"
          },
          "coefficient_cepp": {
            "type": "number"
          },
          "commentaires": {
            "type": "string"
          },
          "coup_de_coeur": {
            "type": "boolean"
          },
          "hauteur": {
            "type": "string"
          },
          "illustration": {
            "type": "string"
          },
          "nom_variete": {
            "type": "string"
          },
          "notation_accumulation_don": {
            "$ref": "#/definitions/DefaultFloatEvalValue_655",
            "description": "if >= 5.5 then 1 otherwise -1",
            "type": "object"
          },
          "notation_de_rendement_categorie_debouche": {
            "oneOf": [
              {
                "type": "integer"
              },
              {
                "type": "null"
              }
            ]
          },
          "notation_fusario": {
            "$ref": "#/definitions/DefaultFloatEvalValue_655",
            "description": "if >= 6 then 1 otherwise -1",
            "type": "object"
          },
          "nouveaute": {
            "type": "boolean"
          },
          "pmg": {
            "type": "string"
          },
          "poids_specifique": {
            "$ref": "#/definitions/DefaultFloatEvalValue_655",
            "description": "if >= 6 then 1 otherwise -1",
            "type": "object"
          },
          "precocite_epiaison": {
            "items": {
              "$ref": "#/definitions/DefaultValueObject_656",
              "type": "object"
            },
            "type": "array"
          },
          "presence_de_barbe": {
            "type": "string"
          },
          "resistance_a_la_verse": {
            "$ref": "#/definitions/DefaultEvalValuesObject_657",
            "description": "If \"Bien (B)\" or \"Très Bien (TB)\" then 1 otherwise -1",
            "type": "object"
          },
          "resistance_au_froid": {
            "$ref": "#/definitions/DefaultEvalValuesObject_657",
            "description": "If \"Bien (B)\" or \"Très Bien (TB)\" then 1 otherwise -1",
            "type": "object"
          },
          "teneur_proteines_collecte_soufflet": {
            "$ref": "#/definitions/DefaultFloatEvalValue_655",
            "description": "if >= 6 then 1 otherwise -1",
            "type": "object"
          },
          "tolerance_cecidomyies": {
            "$ref": "#/definitions/FullValueObject_658",
            "description": "If \"Tolérant (T)\", \"Moyen Sensible (MS)\" , \"Peu Sensible (PS)\" then 1 (green)\r\nIf \"Sensible (S)\" then -1 (red)",
            "type": "object"
          },
          "tolerance_chlortoluron": {
            "$ref": "#/definitions/FullValueObject_658",
            "description": "If \"Tolérant (T)\", \"Moyen Sensible (MS)\" , \"Peu Sensible (PS)\" then 1 (green)\r\nIf \"Sensible (S)\" then -1 (red)",
            "type": "object"
          },
          "tolerance_mosaique": {
            "$ref": "#/definitions/FullValueObject_658",
            "description": "If \"Tolérant (T)\", \"Moyen Sensible (MS)\" , \"Peu Sensible (PS)\" then 1 (green)\r\nIf \"Sensible (S)\" then -1 (red)",
            "type": "object"
          },
          "tolerance_pietin_verse": {
            "$ref": "#/definitions/FullValueObject_658",
            "description": "If \"Tolérant (T)\", \"Moyen Sensible (MS)\" , \"Peu Sensible (PS)\" then 1 (green)\r\nIf \"Sensible (S)\" then -1 (red)",
            "type": "object"
          },
          "tolerance_septo_feuille": {
            "$ref": "#/definitions/FullValueObject_658",
            "description": "If \"Tolérant (T)\", \"Moyen Sensible (MS)\" , \"Peu Sensible (PS)\" then 1 (green)\r\nIf \"Sensible (S)\" then -1 (red)",
            "type": "object"
          },
          "traitement_de_semence": {
            "type": "string"
          }
        },
        "required": [
          "alternativite",
          "appreciation_moulin_soufflet",
          "coefficient_cepp",
          "commentaires",
          "coup_de_coeur",
          "hauteur",
          "illustration",
          "nom_variete",
          "notation_accumulation_don",
          "notation_de_rendement_categorie_debouche",
          "notation_fusario",
          "nouveaute",
          "pmg",
          "poids_specifique",
          "precocite_epiaison",
          "presence_de_barbe",
          "resistance_a_la_verse",
          "resistance_au_froid",
          "teneur_proteines_collecte_soufflet",
          "tolerance_cecidomyies",
          "tolerance_chlortoluron",
          "tolerance_mosaique",
          "tolerance_pietin_verse",
          "tolerance_septo_feuille",
          "traitement_de_semence"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "catalog"
  ],
  "title": "OAD wheat product - DefaultOADWheatProduct",
  "type": "object"
}

JSON instance

{
  "catalog": [
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF+",
      "coefficient_cepp": 0,
      "commentaires": "Variété 1/2 hiver à 1/2 alternative, demi-précoce à l'épiaison, taille courte, bonne tenue à la verse, bon comportement aux maladies du feuillage, tolérante au piétin verse, tolérante chlortoluron, bon comportement au froid, peu sensible à la fusariose, très bon PS, semis précoce jusqu'au début novembre.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Absalon",
      "notation_accumulation_don": {
        "eval": -1,
        "value": null
      },
      "notation_de_rendement_categorie_debouche": 102,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": false,
      "pmg": "45-47",
      "poids_specifique": {
        "eval": 1,
        "value": 7
      },
      "precocite_epiaison": [
        {
          "value": "P"
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": 1,
        "values": [
          {
            "value": "B"
          }
        ]
      },
      "resistance_au_froid": {
        "eval": 1,
        "values": [
          {
            "value": "TB"
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": ""
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "7.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Blé type hiver, 1/2 précoce, paille moyenne, bien en verse, tolérant au piétin verse, peu sensible à l'oïdium et aux rouilles. Moyen en septoriose et assez bien en fusariose, semis intermédiaire 15-10 au 15-11, sensible au chlortoluron, PS moyen, assez bonne tolérance au froid.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Advisor",
      "notation_accumulation_don": {
        "eval": -1,
        "value": null
      },
      "notation_de_rendement_categorie_debouche": 103,
      "notation_fusario": {
        "eval": -1,
        "value": 4.5
      },
      "nouveaute": false,
      "pmg": "46-48",
      "poids_specifique": {
        "eval": -1,
        "value": 4
      },
      "precocite_epiaison": [
        {
          "value": "1/2 H"
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 4
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": ""
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété précoce à 1/2 précoce, tolérant aux mosaïque et cécidomies , bon PS mais faible en protéine.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Aigle",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 5
      },
      "notation_de_rendement_categorie_debouche": 101,
      "notation_fusario": {
        "eval": -1,
        "value": 4.5
      },
      "nouveaute": false,
      "pmg": "45-47",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 4
      },
      "tolerance_cecidomyies": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "4"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété demi-hiver, 1/2 précoce, moyennement sensible à la verse. Sensible à la septoriose et aux rouilles jaune et brune. Tolérant à la mosaïque. Assez sensible au froid. Bonne productivité. A positionner en bon limon. Sensible au chlortoluron.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Alixan",
      "notation_accumulation_don": {
        "eval": 1,
        "value": 5.5
      },
      "notation_de_rendement_categorie_debouche": 99,
      "notation_fusario": {
        "eval": -1,
        "value": 5.5
      },
      "nouveaute": false,
      "pmg": "44-46",
      "poids_specifique": {
        "eval": -1,
        "value": 5
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "4"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "4"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "Favori",
      "coefficient_cepp": 0,
      "commentaires": "Variété de type hiver à 1/2 hiver. 1/2 précoce à 1/2 tardive à maturité. Bien adaptée à tous les types de sols. Résistant au froid et au piétin-verse (Pch 1). Peu sensible à la verse. Peu sensible à la septoriose et aux rouilles. Assez sensible à l'oïdium et à la fusariose. Résistant à la cécidomyie. Tolérant au chlortoluron. Bon PS. Adapté aux semis précoces.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Allez-y",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 4
      },
      "notation_de_rendement_categorie_debouche": 98,
      "notation_fusario": {
        "eval": -1,
        "value": 3
      },
      "nouveaute": false,
      "pmg": "50-52",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": "1/2 précoce"
        },
        {
          "value": " 1/2 tardif"
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "6"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPAM : améliorant",
      "coefficient_cepp": 0,
      "commentaires": "Variété de type hiver, demi-tardive à épiaison. Paille assez haute, peu sensible à la verse et aux maladies.Bonne résistance au gel. PS et protéines élevés. Bon comportement à la fusariose. Tolérant au chlortoluron.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Antonius",
      "notation_accumulation_don": {
        "eval": 1,
        "value": 6
      },
      "notation_de_rendement_categorie_debouche": 91,
      "notation_fusario": {
        "eval": 1,
        "value": 6
      },
      "nouveaute": false,
      "pmg": "46-48",
      "poids_specifique": {
        "eval": 1,
        "value": 8
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 9
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "Favori",
      "coefficient_cepp": 0,
      "commentaires": "Variété précoce, à semer à partir de mi-octobre. Bonne résistance à la verse et au froid. Sensible à la septoriose et à l'oïdium en terre de craie, Variété ayant le meilleur comportement vis-à-vis des fusarioses. Blé adapté sur précédent maïs. Bonne valeur boulangère. Tolérant au chlortoluron.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Apache",
      "notation_accumulation_don": {
        "eval": 1,
        "value": 7
      },
      "notation_de_rendement_categorie_debouche": 96,
      "notation_fusario": {
        "eval": 1,
        "value": 7
      },
      "nouveaute": false,
      "pmg": "42-46",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "2"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "4.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété type hiver, précoce à épiaison. Bon comportement vis-à-vis du gel hivernal. Assez court, moyennement sensible à la verse. Peu sensible à l'oïdium et à la fusariose. Sensible à la septoriose, à la rouille brune et au piétin-verse. Tolérant au chlortoluron. Très bon PS et protéines élevées. Semis à partir du 10-15 octobre. Tous types de sols.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Arezzo",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 4.5
      },
      "notation_de_rendement_categorie_debouche": 98,
      "notation_fusario": {
        "eval": -1,
        "value": 5.5
      },
      "nouveaute": false,
      "pmg": "46-48",
      "poids_specifique": {
        "eval": 1,
        "value": 8
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "1"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "Biscuitier",
      "coefficient_cepp": 0,
      "commentaires": "Variété type hiver, précoce à 1/2 précoce. Peu sensible au froid et à la verse. Sensible au piétin-verse, à la septoriose et à la fusariose. PS moyen <75. Semis possible à partir du 5-10 octobre.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Arkeos            ",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 4.5
      },
      "notation_de_rendement_categorie_debouche": 103,
      "notation_fusario": {
        "eval": -1,
        "value": 3.5
      },
      "nouveaute": false,
      "pmg": "42-44",
      "poids_specifique": {
        "eval": -1,
        "value": 4
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 4
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "2"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BP",
      "coefficient_cepp": 0,
      "commentaires": "Variété hiver à 1/2 hiver, précoce à maturité. Tolérance au froid de type Bermude, assez sensible à la verse. Variété sensible à l'oïdium et à la septoriose. Bon comportement vis-à-vis des rouilles. Moyennement sensible à la fusariose sur épis. Bon PS. Sensible au chlortoluron.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Armada",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 3.5
      },
      "notation_de_rendement_categorie_debouche": 104,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": false,
      "pmg": "48-50",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 4
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": "Hivers"
        },
        {
          "value": " Alternatif"
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété barbue ,hiver à 1/2 hiver, précoce épiaison ,, peu sensible à la verse, sensible aux maladies du feuillage , peu sensible à l'oidium , Bon PS , tous types de sols",
      "coup_de_coeur": true,
      "hauteur": "Haute",
      "illustration": "",
      "nom_variete": "Ascona",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 0
      },
      "notation_de_rendement_categorie_debouche": 102,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": true,
      "pmg": "44-46",
      "poids_specifique": {
        "eval": 1,
        "value": 7
      },
      "precocite_epiaison": [
        {
          "value": "1/2 Tardif"
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": 1,
        "values": [
          {
            "value": "TB"
          }
        ]
      },
      "resistance_au_froid": {
        "eval": 1,
        "values": [
          {
            "value": "B"
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": ""
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5.5"
      },
      "traitement_de_semence": "LAT"
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BP",
      "coefficient_cepp": 0,
      "commentaires": "Variété 1/2 hiver, précoce montaison, tolérante au chlortoluron. Moyennement sensible au froid, peu sensible aux maladies du feuillage. Résistante à la mosaïque. BP. Sensible à la germination sur épis.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Ascott",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 4
      },
      "notation_de_rendement_categorie_debouche": 100,
      "notation_fusario": {
        "eval": -1,
        "value": 4
      },
      "nouveaute": false,
      "pmg": "43-45",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "4"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF+",
      "coefficient_cepp": 0,
      "commentaires": "Variété de type hiver à 1/2 hiver, demi-précoce à épiaison. Hauteur moyenne, bonne résistance à la verse et assez sensible au froid. Peu sensible à la rouille jaune. Moyennement sensible à la septoriose, à líoïdium et à la rouille brune. Assez sensible à la fusariose sur épis. Sensible au chlortoluron. Tolérant à la cécidomyie. PS moyen. Variété adaptée aux semis précoces, sur tous types de sols.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Auckland  ",
      "notation_accumulation_don": {
        "eval": 1,
        "value": 5.5
      },
      "notation_de_rendement_categorie_debouche": 102,
      "notation_fusario": {
        "eval": -1,
        "value": 5.5
      },
      "nouveaute": false,
      "pmg": "50-52",
      "poids_specifique": {
        "eval": -1,
        "value": 5
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "4"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPAM : correcteur",
      "coefficient_cepp": 0,
      "commentaires": "Variété Hiver, 1/2 tardif montaison et à épiaison , peu sensible à la verse ,bon comportement à la fusariose , tres bien au froid ",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Axioma",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 4
      },
      "notation_de_rendement_categorie_debouche": 96,
      "notation_fusario": {
        "eval": -1,
        "value": 4
      },
      "nouveaute": false,
      "pmg": "42-44",
      "poids_specifique": {
        "eval": 1,
        "value": 7
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 8
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BP",
      "coefficient_cepp": 0,
      "commentaires": "Variété de type hiver, demi-tardive à épiaison. Hauteur moyenne mais sensible à la verse. Bon comportement au froid. Peu sensible aux maladies comme la septoriose, la rouille brune et la fusariose. Tolérant au chlortoluron. Bon PS. Semis à partir de début octobre en sol à bonne réserve hydrique. Résistant à la cécidomyie orange.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Barok",
      "notation_accumulation_don": {
        "eval": 1,
        "value": 6
      },
      "notation_de_rendement_categorie_debouche": 100,
      "notation_fusario": {
        "eval": 1,
        "value": 6.5
      },
      "nouveaute": false,
      "pmg": "48-50",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 4
      },
      "tolerance_cecidomyies": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "7"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BP",
      "coefficient_cepp": 0,
      "commentaires": "Variété de type hiver, 1/2 tardif à montaison, 1/2 tardif épiaison. Bonne résistance au froid. Assez sensible à l'oïdium et rouille brune. Sensible Chlortoluron. PS moyen. Adapté aux semis précoces en limons profonds et craie. Assez bon comportement à la fusariose. ",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Bergamo",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 3.5
      },
      "notation_de_rendement_categorie_debouche": 102,
      "notation_fusario": {
        "eval": -1,
        "value": 4
      },
      "nouveaute": false,
      "pmg": "44-46",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 4
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "2"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "4.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "Spécifique",
      "coefficient_cepp": 0,
      "commentaires": "Variété 1/2 précoce, à ne pas semer trop tït. Moyennement sensible au gel. Paille courte, assez sensible à la verse. Peu sensible aux maladies foliaires. Assez sensible à la fusariose. Sensible au chlortoluron. PS élevé. Potentiel de rendement légèrement supérieur à Apache.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Biancor",
      "notation_accumulation_don": {
        "eval": -1,
        "value": null
      },
      "notation_de_rendement_categorie_debouche": 85,
      "notation_fusario": {
        "eval": -1,
        "value": 3.5
      },
      "nouveaute": false,
      "pmg": "46-48",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "Favori",
      "coefficient_cepp": 0,
      "commentaires": "Variété barbue, 1/2 hiver, 1/2 précoce à épiaison, bonne résistance à la verse, sensible à la septoriose et à la rouille brune, bon comportement à la fusariose, sensible chlortoluron, PS moyen, bonne tenue au froid, bon taux de protéine, semis précoce et intermédiaire.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Bienfait",
      "notation_accumulation_don": {
        "eval": -1,
        "value": null
      },
      "notation_de_rendement_categorie_debouche": 101,
      "notation_fusario": {
        "eval": -1,
        "value": 4
      },
      "nouveaute": false,
      "pmg": "48-50",
      "poids_specifique": {
        "eval": -1,
        "value": 4
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "4"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété hiver à demi-hiver, demi-précoce à épiaison. Bonne résistance au gel hivernal. Tallage élevé. Sensible à la verse malgré une taille moyenne. Tolérante au piétin-verse et à la cécidomyie. Peu sensible à l'oïdium et à la septoriose. Sensible à la rouille jaune et brune et à la fusariose sur épis. PS et protéines corrects. Tolérant au chlortoluron.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Boregar",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 3.5
      },
      "notation_de_rendement_categorie_debouche": 101,
      "notation_fusario": {
        "eval": -1,
        "value": 3
      },
      "nouveaute": false,
      "pmg": "44-46",
      "poids_specifique": {
        "eval": -1,
        "value": 5
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "7"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété 1/2 précoce à montaison, précoce à épiaison. Bon comportement au froid. Assez sensible à la septoriose et fusariose épi, Résistant à l'oïdium et la rouille jaune. Assez court, bonne résistance à la verse. Tolérant au chlortoluron. Bon PS. Profil qualité intéressant.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Calabro",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 4
      },
      "notation_de_rendement_categorie_debouche": 100,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": false,
      "pmg": "52-54",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "2"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "Favori",
      "coefficient_cepp": 0,
      "commentaires": "Variété demi-hiver à demi-alternative, précoce à épiaison. Plante assez courte, moyennement Résistante à la verse. Bonne tolérance au froid. Sensible à l'oïdium et à la septoriose. Bon comportement vis-à-vis des rouilles. PS et teneur en protéines moyens. A semer à partir du 15 octobre et en semis tardifs.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Calumet",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 4.5
      },
      "notation_de_rendement_categorie_debouche": 102,
      "notation_fusario": {
        "eval": -1,
        "value": 4
      },
      "nouveaute": false,
      "pmg": "50-52",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété précoce à montaison et épiaison. Assez sensible au froid (type Alixan). Taille courte, bonne résistance à la verse. Bon comportement vis-à-vis de la septoriose et la fusariose sur épi, assez sensible à la rouille brune. Tolérant au chlortoluron. Variété adaptée à l'Ouest du Bassin parisien et le Centre. Bon PS.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Cellule",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 4
      },
      "notation_de_rendement_categorie_debouche": 103,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": false,
      "pmg": "48-50",
      "poids_specifique": {
        "eval": 1,
        "value": 8
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "7"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété 1/2 hiver, 1/2 précoce à épiaison avec une finition rapide, très bon profil maladies, tolérante mosaïque, PS élevé avec une bonne teneur en protéine, bon comportement fusariose, peu sensible au froid, très Résistant à la verse, sensible au piétin verse, semis intermédiaire du 15 octobre au 15 novembre",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Cesario",
      "notation_accumulation_don": {
        "eval": -1,
        "value": null
      },
      "notation_de_rendement_categorie_debouche": 104,
      "notation_fusario": {
        "eval": -1,
        "value": 4.5
      },
      "nouveaute": false,
      "pmg": "45-47",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "7"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété hiver à 1/2 hiver,demi-précoce à épiaison, assez courte,moyennement sensible à la verse,peu sensible rouilles, septoriose,oidium et fusariose, PS élevé ,Tolérant chlortoluron, adaptéé à beaucoup de régions",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Chevignon",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 0
      },
      "notation_de_rendement_categorie_debouche": 107,
      "notation_fusario": {
        "eval": -1,
        "value": 5.5
      },
      "nouveaute": true,
      "pmg": "40-42",
      "poids_specifique": {
        "eval": 1,
        "value": 7
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "7"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPAM : correcteur",
      "coefficient_cepp": 0,
      "commentaires": "Variété de type demi-hiver, demi-précoce à demi-tardif à maturité. Peut Ítre semée assez tït à partir du 10 octobre. Bon comportement vis-à-vis du gel. Hauteur moyenne, peu sensible à la verse. Peu sensible à la rouille brune et la fusariose. Assez sensible à la septoriose et la rouille jaune. Bon PS. Bonne productivité. Sensible au chlortoluron.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Combin",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 5
      },
      "notation_de_rendement_categorie_debouche": 94,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": false,
      "pmg": "48-50",
      "poids_specifique": {
        "eval": 1,
        "value": 7
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 8
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété barbue, 1/2 hiver, 1/2 précoce à épiaison, taille courte, bon comportement au froid et à la verse, peu sensible aux maladies du feuillage, assez bien à la fusariose, tolérante au chlortoluron, semis précoce à intermédiaire début novembre, bon PS",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Comilfo",
      "notation_accumulation_don": {
        "eval": -1,
        "value": null
      },
      "notation_de_rendement_categorie_debouche": 99,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": false,
      "pmg": "44-47",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 4
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété hiver, demi précoce à épiaison. Sensibilité au gel de type Orvantis. Blé court peu sensible à la verse. Bon comportement vis-à-vis de l'oïdium, la septoriose et la fusariose. Sensible à la rouille brune. Tolérant chlortoluron. PS élevé.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Compil",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 3.5
      },
      "notation_de_rendement_categorie_debouche": 96,
      "notation_fusario": {
        "eval": -1,
        "value": 4
      },
      "nouveaute": false,
      "pmg": "42-46",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 7
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété barbue à gros grain , 1/2 hiver, 1/2 précoce à épiaison, courte, bien à la verse, peu sensible aux maladies du feuillage, moyen en rouille brune, bon comportement à la fusariose, peu sensible au froid, tolérant au chlortoluron, PS correct .",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Complice",
      "notation_accumulation_don": {
        "eval": -1,
        "value": null
      },
      "notation_de_rendement_categorie_debouche": 103,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": false,
      "pmg": "54-56",
      "poids_specifique": {
        "eval": -1,
        "value": 5
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 4
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "Spécifique",
      "coefficient_cepp": 0,
      "commentaires": "Variété hiver, précoce à épiaison, peu sensible au froid, taille courte, peu sensible à la verse, bon comportement à la rouille jaune et à l'oïdium, moyennement sensible à la rouille brune, peu sensible à la fusariose, sensible au Chlortoluron, bon PS",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Cosmic",
      "notation_accumulation_don": {
        "eval": -1,
        "value": null
      },
      "notation_de_rendement_categorie_debouche": 97,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": false,
      "pmg": "42-45",
      "poids_specifique": {
        "eval": 1,
        "value": 7
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 4
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BP",
      "coefficient_cepp": 0,
      "commentaires": "Variété 1/2 hiver , 1/2 précoce à épiaison , finition rapidetaille assez courte, bien à la verse ,peu sensible à l'oidium et la rouille jaune , sensible rouille brune , peu sensible à la septoriose et fusariose, Bon PS ?adaptée aux semis précoces",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Creek",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 5
      },
      "notation_de_rendement_categorie_debouche": 105,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": false,
      "pmg": "47-48",
      "poids_specifique": {
        "eval": 1,
        "value": 7
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "Spécifique",
      "coefficient_cepp": 0,
      "commentaires": "Variété barbue, type hiver, demi-précoce à épiaison, Taille moyenne, peut sensible à la verse. sensible à la septoriose, peu sensible aux autres maladies (rouille, oïdium, fusariose). Bon PS ,Résistant cécydomyie et piétin verse, semis précoces",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Cyclo",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 0
      },
      "notation_de_rendement_categorie_debouche": 105,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": true,
      "pmg": "41-43",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "6"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété 1/2 tardive, hiver, peu sensible au froid et à la verse, bien vis-à-vis des rouilles et de la septoriose, bon comportement à la fusariose, assez sensible à l'oïdium, sensible au piétin verse, protéine et PS élevés, semis précoce du 25 septembre au 20 octobre",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Dakotana",
      "notation_accumulation_don": {
        "eval": -1,
        "value": null
      },
      "notation_de_rendement_categorie_debouche": 104,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": false,
      "pmg": "48-50",
      "poids_specifique": {
        "eval": -1,
        "value": 5
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "7"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF+",
      "coefficient_cepp": 0,
      "commentaires": "Type demi-hiver, précoce à épiaison, à semer à partir de mi-octobre. Montaison rapide au printemps. Plante assez haute, sensible à la verse. Moyennement Résistante au gel. Sensible à l'oïdium et à la septoriose. Bon comportement vis-à-vis des rouilles et du piétin-verse. Assez bonne tolérance à la fusariose sur épi. PS élevé, teneur en protéines moyenne. Peut Ítre positionnée en précédent maïs. Productivité élevée.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Descartes",
      "notation_accumulation_don": {
        "eval": 1,
        "value": 5.5
      },
      "notation_de_rendement_categorie_debouche": 103,
      "notation_fusario": {
        "eval": 1,
        "value": 6
      },
      "nouveaute": false,
      "pmg": "40-42",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "5"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BP",
      "coefficient_cepp": 0,
      "commentaires": "Variété de type hiver, demi-précoce. Taille moyenne, assez bonne résistance à la verse. Moyennement Résistant au froid. Peu sensible à l'oïdium et la septoriose. Tolérant au piétin-verse. Assez sensible à la rouille brune. Sensible à la fusariose sur épis. Bon PS. Tolérant au chlortoluron. Variété adaptée aux semis précoces, sauf en zones très froides.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Diderot",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 3
      },
      "notation_de_rendement_categorie_debouche": 103,
      "notation_fusario": {
        "eval": -1,
        "value": 4.5
      },
      "nouveaute": false,
      "pmg": "42-44",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété  1/2 hiver, précoce à la montaison, très  précoce à épiaison, assez sensible à la verse, assez Résistant à la septoriose et aux rouilles ,peu sensible à l'oidium, Bon PS , bien addaptée aux terres superficielles , ne pas semer trop tot !",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Filon",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 0
      },
      "notation_de_rendement_categorie_debouche": 107,
      "notation_fusario": {
        "eval": -1,
        "value": 4.5
      },
      "nouveaute": true,
      "pmg": "44-45",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 7
      },
      "tolerance_cecidomyies": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "7.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "Spécifique",
      "coefficient_cepp": 0,
      "commentaires": "Variété 1/2 précoce, assez sensible au gel (type Alixan). Taille courte, bonne résistance à la verse. Peu sensible aux maladies foliaires. Assez sensible au piétin-verse. A éviter dans les secteurs trop gélifs (Champagne - Lorraine). Ne pas semer avant le 10 octobre. Tolérant au chlortoluron. Bon PS.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Forblanc",
      "notation_accumulation_don": {
        "eval": -1,
        "value": null
      },
      "notation_de_rendement_categorie_debouche": 86,
      "notation_fusario": {
        "eval": 1,
        "value": 6.5
      },
      "nouveaute": false,
      "pmg": "48-50",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "4"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété hiver,1/2 précoce à épiaison, bonne résistance au froid et à la verse, peu sensible aux maladies de feuillage, sensible au piétin verse, tolérant au Chlortoluron, très moyen en septoriose, adapté aux semis précoces et intermédiaires début novembre .",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Fructidor",
      "notation_accumulation_don": {
        "eval": 1,
        "value": 5.5
      },
      "notation_de_rendement_categorie_debouche": 101,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": false,
      "pmg": "45-47",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 4
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "7"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPAM : améliorant",
      "coefficient_cepp": 0,
      "commentaires": "Variété très précoce, demi-alternative à semer à partir de fin octobre. Sensible au gel. Très sensible à la verse. Tolérant au chlortoluron. Productivité 80 à 85 % des témoins.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Galibier",
      "notation_accumulation_don": {
        "eval": 1,
        "value": 6
      },
      "notation_de_rendement_categorie_debouche": 76,
      "notation_fusario": {
        "eval": 1,
        "value": 6
      },
      "nouveaute": false,
      "pmg": "42-44",
      "poids_specifique": {
        "eval": 1,
        "value": 7
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 9
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "2"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPAM : améliorant",
      "coefficient_cepp": 0,
      "commentaires": "Variété barbue 1/2 hiver, demi precoce épiaison,peu sensible à laverse, sensible à la rouille jaune, bon comportement vis à vis de la fusariose, Résistant à la septoriose, Résistant au piétin verse, PS moyen , Tous types de sols",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Geo",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 0
      },
      "notation_de_rendement_categorie_debouche": null,
      "notation_fusario": {
        "eval": -1,
        "value": 5.5
      },
      "nouveaute": true,
      "pmg": "45-47",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 9
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "6"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPAM : correcteur",
      "coefficient_cepp": 0,
      "commentaires": "Variété de type demi-alternatif, demi précoce à maturité. Variété assez courte, peu sensible à la verse. Assez sensible au froid. Sensible à l'oïdium. Moyennement sensible à la septoriose et à la rouille brune. Bon comportement vis-à-vis de la fusariose sur épis. PS moyen. Sensible au chlortoluron.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Ghayta",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 5
      },
      "notation_de_rendement_categorie_debouche": 97,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": false,
      "pmg": "46-48",
      "poids_specifique": {
        "eval": -1,
        "value": 5
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 8
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "5"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété barbue, 1/2 hiver, 1/2 précoce à montaison, paille courte,assez sensible à la verse,peu sensible aux maladies du feuillage, Bon comportement vis à vis de la fusariose, PS moyen , bien adaptée à tous types de sols ",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Gimmick",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 0
      },
      "notation_de_rendement_categorie_debouche": null,
      "notation_fusario": {
        "eval": 1,
        "value": 6.5
      },
      "nouveaute": true,
      "pmg": "38-40",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "5"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF+",
      "coefficient_cepp": 0,
      "commentaires": "Variété de type hiver à demi-hiver, demi précoce à épiaison. Plante assez courte mais moyennement Résistante à la verse. Bon comportement vis-à-vis du froid. Sensible à l'oïdium, au piétin-verse et à la fusariose sur épi. Bon comportement vis-à-vis des rouilles et de la septoriose. Peut Ítre semés à partir de début octobre. PS et teneur en protéines assez bas. Bonne productivité.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Granamax",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 4
      },
      "notation_de_rendement_categorie_debouche": 101,
      "notation_fusario": {
        "eval": -1,
        "value": 4
      },
      "nouveaute": false,
      "pmg": "48-50",
      "poids_specifique": {
        "eval": -1,
        "value": 4
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 4
      },
      "tolerance_cecidomyies": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "2"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété 1/2 tardive de type hiver à 1/2 hiver à semer tït. Très Résistant au gel, paille assez courte mais assez sensible à la verse. Peu sensible à la septoriose et la rouille brune. Résistant mosaïque, tolérant au chlortoluron. Semis entre 110 et 150 gr/m≤. PS moyen. Potentiel de rendement très élevé.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Hybery (hybride)",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 5
      },
      "notation_de_rendement_categorie_debouche": 106,
      "notation_fusario": {
        "eval": -1,
        "value": 5.5
      },
      "nouveaute": false,
      "pmg": "50-52",
      "poids_specifique": {
        "eval": -1,
        "value": 5
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "5"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété hybride 1/2 hiver ,précoce épiaison ,assez haute ,peu sensible à la verse, peu †sensible aux rouilles, Résistant au piétin verse, bon comportement vis à vis de la fusariose , densité de semis 120 à 150 grains /m2",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Hydrock",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 0
      },
      "notation_de_rendement_categorie_debouche": 111,
      "notation_fusario": {
        "eval": -1,
        "value": 5.5
      },
      "nouveaute": false,
      "pmg": "43-45",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "6"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété 1/2 hiver, semi-précoce. Assez bonne tolérance au froid, taille assez élevée, assez sensible à la verse. Résistant au piétin-verse. Bon comportement vis-à-vis de la fusariose, de la septoriose et des rouilles. Moyennement sensible à l'oïdium. Tolérant au chlortoluron, sensible aux mosaïque.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Hyfi (hybride)",
      "notation_accumulation_don": {
        "eval": 1,
        "value": 5.5
      },
      "notation_de_rendement_categorie_debouche": 107,
      "notation_fusario": {
        "eval": 1,
        "value": 6.5
      },
      "nouveaute": false,
      "pmg": "48-50",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "6"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "7"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF+",
      "coefficient_cepp": 0,
      "commentaires": "Variété 1/2 précoce de type 1/2 hiver,tolérant au chlortoluron, bonne résistance à la verse et au froid .",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Hyking (Hybride)",
      "notation_accumulation_don": {
        "eval": -1,
        "value": null
      },
      "notation_de_rendement_categorie_debouche": 111,
      "notation_fusario": {
        "eval": -1,
        "value": 4.5
      },
      "nouveaute": false,
      "pmg": "50-52",
      "poids_specifique": {
        "eval": -1,
        "value": 3
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 3
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "2"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BP",
      "coefficient_cepp": 0,
      "commentaires": "Variété précoce à l'épiaison, de type 1/2 hiver, pouvant Ítre semée assez tït. Peu sensible au gel hivernal. Meilleure résistance à la verse qu'Hysun. Peu sensible aux rouilles, assez sensible à la septoriose. Densité de semis Tolérant au chlortoluron et aux mosaïque. Potentiel de rendement très élevé. Valeur boulangère moyenne. conseillée en terre colorée et en bonnes conditions, 110 à 150 gr/m≤. 150 à 180 gr/m≤ en craie. ",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Hystar (hybride)",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 5
      },
      "notation_de_rendement_categorie_debouche": 105,
      "notation_fusario": {
        "eval": -1,
        "value": 5.5
      },
      "nouveaute": false,
      "pmg": "52-54",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "2"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété précoce, peu sensible au gel hivernal, sensible à la verse et à la rouille jaune. Tolérant au chlortoluron et aux mosaïque. A semer à partir du 10 octobre entre 150 et 180 grains/m≤. Semis possible à 110 grains/m≤ en terre colorée et en bonnes conditions. Bonne valeur boulangère. Potentiel de rendement très élevé.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Hysun (hybride)",
      "notation_accumulation_don": {
        "eval": 1,
        "value": 6
      },
      "notation_de_rendement_categorie_debouche": 106,
      "notation_fusario": {
        "eval": -1,
        "value": 4
      },
      "nouveaute": false,
      "pmg": "54-56",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "2"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété demi-hiver, précoce à épiaison. Semis à partir du 10 octobre. Moyennement sensible à la verse. Bonne tolérance au gel hivernal. Sensible à la rouille jaune, à l'oïdium et la septoriose. Bon comportement vis-à-vis de la fusariose sur épi, tolérant piétin-verse. Peut-Ítre semé sur précédent maïs. PS moyen et teneur en protéines assez basse. Tolérant à la mosaïque.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Hywin (hybride)",
      "notation_accumulation_don": {
        "eval": 1,
        "value": 5.5
      },
      "notation_de_rendement_categorie_debouche": 104,
      "notation_fusario": {
        "eval": -1,
        "value": 5.5
      },
      "nouveaute": false,
      "pmg": "48-50",
      "poids_specifique": {
        "eval": -1,
        "value": 5
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 4
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPAM : améliorant",
      "coefficient_cepp": 0,
      "commentaires": "Variété barbue, 1/2 hiver, precoceà très précoce épiaison ,peu sensible à la verse,bon comportement fusariose , assez Résistant septoriose et rouille jaune, PS et taux de proteines élevés, ne pas semer trop tot , possible pour semis intermédiaires Beauce Gatinais,et Poitou",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Izalco",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 0
      },
      "notation_de_rendement_categorie_debouche": null,
      "notation_fusario": {
        "eval": -1,
        "value": 5.5
      },
      "nouveaute": true,
      "pmg": "42-44",
      "poids_specifique": {
        "eval": 1,
        "value": 8
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 7
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "7"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété 1/2 précoce à montaison et à épiaison. Résistant au froid. Taille courte, peu sensible à la verse. Sensible à l'oïdium, la rouille brune et jaune. Peu sensible à la septoriose. Tolérant au chlortoluron. Bien adapté en Brie, Champagne, Lorraine. Bon PS.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Laurier",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 3
      },
      "notation_de_rendement_categorie_debouche": 99,
      "notation_fusario": {
        "eval": -1,
        "value": 4
      },
      "nouveaute": false,
      "pmg": "50-54",
      "poids_specifique": {
        "eval": 1,
        "value": 7
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété de type hiver, précoce à demi-précoce à épiaison. Plante assez courte, mais sensible à la verse. Peu sensible au gel hivernal. Bon comportement vis-à-vis de la rouille jaune et de líoïdium. Sensible à la septoriose. Moyennement sensible à la fusariose sur épis et à la rouille brune. Sensible au chlortoluron. PS moyen. Adapté aux semis précoces et intermédiaires, sur tous types de sols.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Lavoisier",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 4
      },
      "notation_de_rendement_categorie_debouche": 99,
      "notation_fusario": {
        "eval": -1,
        "value": 4.5
      },
      "nouveaute": false,
      "pmg": "44-46",
      "poids_specifique": {
        "eval": -1,
        "value": 5
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "4"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPAM : correcteur",
      "coefficient_cepp": 0,
      "commentaires": "Blé de printemps, précoce, ayant une bonne résistance au gel adapté pour des semis tardifs de mi-novembre à fin février. Peu sensible à la verse, aux rouilles et à l'oïdium. Assez sensible à la fusariose. PS correct. Potentiel supérieur aux autres Variétés de printemps. Sensible chlortoluron.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Lennox",
      "notation_accumulation_don": {
        "eval": 1,
        "value": 6
      },
      "notation_de_rendement_categorie_debouche": 101,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": false,
      "pmg": "44-46",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 8
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "5"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BP",
      "coefficient_cepp": 0,
      "commentaires": "Variété hiver à 1/2 hiver, précoce à épiaison et à maturité. Taille moyenne. Assez sensible à la verse, peu sensible au froid. Assez sensible à líoïdium. Bon comportement vis-à-vis de la septoriose et des rouilles. Moyennement sensible à la fusariose sur épis. Sensible au chlortoluron. Tolérant mosaïque. Eviter les semis trop précoces.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Mondio     ",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 4.5
      },
      "notation_de_rendement_categorie_debouche": 104,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": false,
      "pmg": "45-47",
      "poids_specifique": {
        "eval": -1,
        "value": 5
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 4
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BP",
      "coefficient_cepp": 0,
      "commentaires": "Variété hiver, demi-précoce épiaison,taille assez courte,bien à la verse,Assez sensible à la septoriose,Bien vis à vis desrouilleset l'oidium, Résistant au piétin verse, PS moyen,premiers semis",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Mortimer",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 0
      },
      "notation_de_rendement_categorie_debouche": 101,
      "notation_fusario": {
        "eval": -1,
        "value": 4
      },
      "nouveaute": true,
      "pmg": "40-42",
      "poids_specifique": {
        "eval": -1,
        "value": 5
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 4
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "6"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BP",
      "coefficient_cepp": 0,
      "commentaires": "Variété de type hiver, demi-précoce à épiaison, taille moyenne,assez Résistant à la septoriose,à l'oidium et la rouille jaune , assez sensible à la fusariose, PS élevé , toutes regions semis précoces",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Mutic",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 0
      },
      "notation_de_rendement_categorie_debouche": 104,
      "notation_fusario": {
        "eval": -1,
        "value": 4
      },
      "nouveaute": true,
      "pmg": "42-44",
      "poids_specifique": {
        "eval": 1,
        "value": 7
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "4"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "7.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPAM : améliorant",
      "coefficient_cepp": 0,
      "commentaires": "Variété de type hiver, demi-précoce à épiaison. Assez sensible au gel hivernal. Bon comportement à la verse. Peu sensible aux maladies. Semis possibles à partir de mi-octobre. Sensible au chlortoluron. PS et protéines élevés.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Nara       ",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 5
      },
      "notation_de_rendement_categorie_debouche": 87,
      "notation_fusario": {
        "eval": 1,
        "value": 6
      },
      "nouveaute": false,
      "pmg": "42-44",
      "poids_specifique": {
        "eval": 1,
        "value": 7
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 9
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "2"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF+",
      "coefficient_cepp": 0,
      "commentaires": "Variété type hiver à 1/2 hiver, demi-précoce à épiaison. Hauteur moyenne, moyennement sensible à la verse et assez Résistante au froid. Sensible au piétin verse, à lí'oïdium et à la fusariose sur épis. Peu sensible à la rouille brune, à la septoriose et à la rouille jaune. Tolérante à la cécidomyie et au chlortoluron. Bon PS. Variété adaptée aux semis précoces, sur tous types de sols.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Nemo        ",
      "notation_accumulation_don": {
        "eval": -1,
        "value": null
      },
      "notation_de_rendement_categorie_debouche": 103,
      "notation_fusario": {
        "eval": -1,
        "value": 4.5
      },
      "nouveaute": false,
      "pmg": "49-51",
      "poids_specifique": {
        "eval": 1,
        "value": 7
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "2"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "Favori",
      "coefficient_cepp": 0,
      "commentaires": "Variété précoce à montaison et épiaison. Assez sensible au froid (type Allixan). Taille assez courte, peu sensible à la verse. Assez sensible à la septoriose, peu sensible aux autres maladies dont la fusariose. Variété adaptée aux régions Centre et Ouest du Bassin Parisien. Tolérant au chlortoluron et Résistant à la cécidomyie orange. PS élevé et bonne valeur boulangère.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Oregrain",
      "notation_accumulation_don": {
        "eval": 1,
        "value": 6.5
      },
      "notation_de_rendement_categorie_debouche": 101,
      "notation_fusario": {
        "eval": -1,
        "value": 5.5
      },
      "nouveaute": false,
      "pmg": "44-46",
      "poids_specifique": {
        "eval": 1,
        "value": 7
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "2"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété de type hiver, 1/2 précoce à maturité, assez court, bon comportement au froid. Assez sensible à la verse. Peu sensible au piétin-verse et à la fusariose. Très sensible à l'oïdium, sensible à la septoriose et à la rouille brune. Tolérant au chlortoluron. Bon PS. Semis précoce, à partir de début octobre. Tous types de sols. Productivité très élevée.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Pakito",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 4.5
      },
      "notation_de_rendement_categorie_debouche": 97,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": false,
      "pmg": "46-48",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "4"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété hiver à 1/2 hiver, précoce épiaison , peu sensible à la verse,assez Résistant aux maladies du feuillage , peu sensible à l'oidium , Résistant mosaique, Bon PS , tous types de sols semis précoces",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Pastoral",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 0
      },
      "notation_de_rendement_categorie_debouche": 102,
      "notation_fusario": {
        "eval": -1,
        "value": 4
      },
      "nouveaute": true,
      "pmg": "46-48",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété 1/2 précoce, bon comportement au froid. Eviter les semis trop précoces avant le 10 octobre. Adapté à toutes les régions sauf sols superficiels. Bon comportement vis-à-vis des maladies foliaires en dehors de l'oïdium. Taille courte mais assez sensible à la verse. Sensible au chlortoluron. Résistant à la cécidomyie orange. Assez bon PS.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Rubisko",
      "notation_accumulation_don": {
        "eval": 1,
        "value": 5.5
      },
      "notation_de_rendement_categorie_debouche": 100,
      "notation_fusario": {
        "eval": -1,
        "value": 5.5
      },
      "nouveaute": false,
      "pmg": "48-50",
      "poids_specifique": {
        "eval": -1,
        "value": 5
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 4
      },
      "tolerance_cecidomyies": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "2"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF+",
      "coefficient_cepp": 0,
      "commentaires": "Variété barbue, 1/2 hiver, précoce à la montaison, 1/2 précoce à maturité, moyennement sensible au froid , paille courte, bonne tenue à la verse, sensible à l'oïdium et au piétin verse, assez sensible à la rouille brune, bon comportement à la fusariose et à la rouille jaune, Ne pas semer trop tït, semis du 15 octobre à fin novembre, bon PS et protéine élevée",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Sacramento",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 5
      },
      "notation_de_rendement_categorie_debouche": 105,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": false,
      "pmg": "45-47",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété barbue, 1/2 hiver, précoce épiaison ,peu sensible à la verse, Bien vis à vis de l'oidium et des rouilles , bon comportement pour la septoriose et la fusariose , Bon PS , addaptée à tous types de sols ",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Sepia",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 0
      },
      "notation_de_rendement_categorie_debouche": 102,
      "notation_fusario": {
        "eval": -1,
        "value": 4.5
      },
      "nouveaute": true,
      "pmg": "45-46",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 4
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF+",
      "coefficient_cepp": 0,
      "commentaires": "Variété 1/2 hiver, demi-précoce à épiaison et précoce à maturité. Assez sensible à la verse et peu sensible au froid. Peu sensible à la rouille jaune et à la septoriose. Assez sensible à la rouille brune. Tolérante au piétin verse, Résistante à l'íoïdium. Tolérante à la mosaïque et au chlortoluron. Bon PS. Variété pouvant Ítre semée à partir du 5-10 octobre, sur tous types de sols.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Syllon",
      "notation_accumulation_don": {
        "eval": -1,
        "value": null
      },
      "notation_de_rendement_categorie_debouche": 102,
      "notation_fusario": {
        "eval": -1,
        "value": 5
      },
      "nouveaute": false,
      "pmg": "48-50",
      "poids_specifique": {
        "eval": 1,
        "value": 8
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "6"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété de type hiver à 1/2 hiver, demi précoce, assez courte, peu sensible à la verse, assez Résistante au froid. Assez sensible à la septoriose et à la rouille brune, peu sensible à la rouille jaune et à líoïdium. Moyennement sensible à la fusariose sur épis et sensible au chlortoluron. PS moyen à bon, cette Variété est adaptée aux semis précoces sur tous types de sols.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Tekno        ",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 5
      },
      "notation_de_rendement_categorie_debouche": 99,
      "notation_fusario": {
        "eval": -1,
        "value": 4.5
      },
      "nouveaute": false,
      "pmg": "48-50",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "4"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF ",
      "coefficient_cepp": 0,
      "commentaires": "Variété demi-hiver, demi-tardive, bien adaptée aux semis précoces. Peu sensible au froid, taille courte ayant une bonne résistance à la verse. Peu sensible à l'oïdium, la septoriose et les rouilles. Assez sensible à la fusariose sur épis. PS moyen. Tolérant au chlortoluron.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Terroir",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 4.5
      },
      "notation_de_rendement_categorie_debouche": 101,
      "notation_fusario": {
        "eval": -1,
        "value": 4
      },
      "nouveaute": false,
      "pmg": "46-48",
      "poids_specifique": {
        "eval": -1,
        "value": 4
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété de type hiver, demi-précoce à épiaison, à semer tït, montaison lente ,taille courte , bien à la verse, assez Résistant aux rouilles , assez sensible à l'oidium , adaptée aux semis précoces, PS moyen ",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Triomph",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 4.5
      },
      "notation_de_rendement_categorie_debouche": 102,
      "notation_fusario": {
        "eval": -1,
        "value": 4.5
      },
      "nouveaute": false,
      "pmg": "44-46",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 6
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPAM : améliorant",
      "coefficient_cepp": 0,
      "commentaires": "Variété de type hiver, demi-précoce à épiaison, à semer tït. Taille élevée, moyennement sensible à la verse. Bonne tolérance au froid. Sensible à la septoriose, peu sensible aux autres maladies (rouille, oïdium, fusariose). PS et teneur en protéines élevés. Productivité intermédiaire entre Ghayta et Antonius.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Ubicus",
      "notation_accumulation_don": {
        "eval": -1,
        "value": null
      },
      "notation_de_rendement_categorie_debouche": 97,
      "notation_fusario": {
        "eval": -1,
        "value": 4.5
      },
      "nouveaute": false,
      "pmg": "44-46",
      "poids_specifique": {
        "eval": 1,
        "value": 8
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": 1,
        "value": 9
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "BPMF",
      "coefficient_cepp": 0,
      "commentaires": "Variété barbue, 1/2 hiver, 1/2 précoce à montaison, paille courte, tolérante au piétin verse et à la mosaïque, bon comportement à la rouille jaune, moyenne à la septoriose, bon PS, teneur en protéine élevée, bon comportement au froid , moyenne en verse , adaptée au semis précoce.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Velasko",
      "notation_accumulation_don": {
        "eval": -1,
        "value": null
      },
      "notation_de_rendement_categorie_debouche": 100,
      "notation_fusario": {
        "eval": -1,
        "value": 4
      },
      "nouveaute": false,
      "pmg": "50-52",
      "poids_specifique": {
        "eval": 1,
        "value": 6
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 5
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_mosaique": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "6"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "5.5"
      },
      "traitement_de_semence": ""
    },
    {
      "alternativite": [
        {
          "value": ""
        }
      ],
      "appreciation_moulin_soufflet": "Biscuitier",
      "coefficient_cepp": 0,
      "commentaires": "Variété hiver, 1/2 tardif épiaison, bon comportement à l'oïdium, peu sensible au froid, assez Résistant à la verse. Peu sensible à la septoriose, sensible à la fusariose. BB : PS moyen < 73. Assez Résistant à la rouille brune. Semis précoces dès début octobre à fin octobre.",
      "coup_de_coeur": false,
      "hauteur": "",
      "illustration": "",
      "nom_variete": "Viscount ",
      "notation_accumulation_don": {
        "eval": -1,
        "value": 4
      },
      "notation_de_rendement_categorie_debouche": 102,
      "notation_fusario": {
        "eval": -1,
        "value": 4
      },
      "nouveaute": false,
      "pmg": "44-46",
      "poids_specifique": {
        "eval": -1,
        "value": 4
      },
      "precocite_epiaison": [
        {
          "value": ""
        }
      ],
      "presence_de_barbe": "Non barbu",
      "resistance_a_la_verse": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "resistance_au_froid": {
        "eval": -1,
        "values": [
          {
            "value": ""
          }
        ]
      },
      "teneur_proteines_collecte_soufflet": {
        "eval": -1,
        "value": 4
      },
      "tolerance_cecidomyies": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_chlortoluron": {
        "eval": 1,
        "value": "T"
      },
      "tolerance_mosaique": {
        "eval": -1,
        "value": "S"
      },
      "tolerance_pietin_verse": {
        "eval": -1,
        "value": "3"
      },
      "tolerance_septo_feuille": {
        "eval": -1,
        "value": "6.5"
      },
      "traitement_de_semence": ""
    }
  ]
}

Validation #248

Success

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

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultCompany_648": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        }
      },
      "required": [
        "id",
        "name"
      ],
      "title": "company - DefaultCompany",
      "type": "object"
    },
    "DefaultDomain_652": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "id": {
          "type": "string"
        },
        "name": {
          "oneOf": [
            {
              "enum": [
                "medecine",
                "maternite",
                "addiction",
                "scanner",
                "conseil",
                "gestion",
                "angiologie"
              ],
              "type": "string"
            },
            {
              "type": "null"
            }
          ]
        }
      },
      "required": [
        "id",
        "name"
      ],
      "title": "domain - DefaultDomain",
      "type": "object"
    },
    "DefaultQualification_651": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {},
      "title": "qualification - DefaultQualification",
      "type": "object"
    },
    "DefaultService_650": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {},
      "title": "service - DefaultService",
      "type": "object"
    },
    "DefaultSlot_654": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "endDate": {
          "type": "string"
        },
        "startDate": {
          "type": "string"
        },
        "status": {
          "enum": [
            "candidate-accepted",
            "candidate-denied",
            "contacted-candidate",
            "company-denied",
            "company-accepted"
          ],
          "type": "string"
        },
        "timeSlot": {
          "enum": [
            "morning",
            "afternoon",
            "night"
          ],
          "type": "string"
        }
      },
      "required": [
        "endDate",
        "startDate",
        "status",
        "timeSlot"
      ],
      "title": "slot - DefaultSlot",
      "type": "object"
    }
  },
  "properties": {
    "comment": {
      "type": "string"
    },
    "company": {
      "$ref": "#/definitions/DefaultCompany_648",
      "type": "object"
    },
    "domain": {
      "$ref": "#/definitions/DefaultDomain_652",
      "type": "object"
    },
    "endDate": {
      "format": "datetime",
      "type": "string"
    },
    "missions": {
      "description": "Slot for the mission",
      "items": {
        "$ref": "#/definitions/DefaultSlot_654",
        "type": "object"
      },
      "minItems": 0,
      "type": "array"
    },
    "qualification": {
      "$ref": "#/definitions/DefaultQualification_651",
      "type": "object"
    },
    "service": {
      "$ref": "#/definitions/DefaultService_650",
      "type": "object"
    },
    "startDate": {
      "format": "datetime",
      "type": "string"
    },
    "workersCount": {
      "type": "integer"
    }
  },
  "required": [
    "comment",
    "company",
    "domain",
    "endDate",
    "missions",
    "qualification",
    "service",
    "startDate",
    "workersCount"
  ],
  "title": "mission - DetailedMission",
  "type": "object"
}

JSON instance

{
  "comment": "",
  "company": {
    "id": "in Ut aliqua dolore quis",
    "name": "ve"
  },
  "domain": {
    "id": "sed minim Duis ea eu",
    "name": null
  },
  "endDate": "1986-02-23T12:55:56.107Z",
  "missions": [
    {
      "endDate": "est velit officia",
      "startDate": "Lorem in Excepteur",
      "status": "company-accepted",
      "timeSlot": "morning"
    },
    {
      "endDate": "eiusmod exercitation",
      "startDate": "id irure",
      "status": "candidate-denied",
      "timeSlot": "night"
    },
    {
      "endDate": "qui volup",
      "startDate": "eu",
      "status": "candidate-accepted",
      "timeSlot": "morning"
    }
  ],
  "qualification": {},
  "service": {},
  "startDate": "1972-02-18T09:09:50.809Z",
  "workersCount": 52231127
}

Validation #247

Failure

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

  • The property '#/news_channels/0' contains additional properties ["is_corporate", "is_native"] outside of the schema when none are allowed in schema dbb82598-2220-54e5-bdf4-79ba482e71c9
  • The property '#/news_channels/1' contains additional properties ["is_corporate", "is_native"] outside of the schema when none are allowed in schema dbb82598-2220-54e5-bdf4-79ba482e71c9
  • The property '#/news_channels/2' contains additional properties ["is_corporate", "is_native"] outside of the schema when none are allowed in schema dbb82598-2220-54e5-bdf4-79ba482e71c9
  • The property '#/news_channels/2/name' was not of a maximum string length of 15 in schema dbb82598-2220-54e5-bdf4-79ba482e71c9
  • The property '#/news_channels/3' contains additional properties ["is_corporate", "is_native"] outside of the schema when none are allowed in schema dbb82598-2220-54e5-bdf4-79ba482e71c9

JSON Schema

{
  "additionalProperties": false,
  "description": "Automatically generated (please edit me)",
  "properties": {
    "news_channels": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "broadcast": {
            "maxLength": 15,
            "minLength": 5,
            "type": "string"
          },
          "cultures": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "description": {
            "maxLength": 60,
            "minLength": 30,
            "type": "string"
          },
          "id": {
            "minimum": 1,
            "type": "integer"
          },
          "name": {
            "maxLength": 15,
            "minLength": 5,
            "type": "string"
          }
        },
        "required": [
          "broadcast",
          "cultures",
          "description",
          "id",
          "name"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "news_channels"
  ],
  "title": "NewsChannel - DefaultNewsChannel",
  "type": "object"
}

JSON instance

{
  "news_channels": [
    {
      "broadcast": "Actualités",
      "cultures": [
        "Français",
        "Anglais"
      ],
      "description": "eu aliquadeserunt dolore esse nostrud",
      "id": 1,
      "is_corporate": 0,
      "is_native": 1,
      "name": "Groupe Soufflet"
    },
    {
      "broadcast": "Actualités",
      "cultures": [
        "Français",
        "Allemand"
      ],
      "description": "eu aliquadeserunt dolore esse nostrud",
      "id": 2,
      "is_corporate": 0,
      "is_native": 1,
      "name": "Terre-Net"
    },
    {
      "broadcast": "Cultures",
      "cultures": [
        "Anglais",
        "Allemand"
      ],
      "description": "eu aliquadeserunt dolore esse nostrud",
      "id": 3,
      "is_corporate": 0,
      "is_native": 1,
      "name": "Arvalis - Culture"
    },
    {
      "broadcast": "Marchés",
      "cultures": [
        "Anglais"
      ],
      "description": "eu aliquadeserunt dolore esse nostrud",
      "id": 4,
      "is_corporate": 0,
      "is_native": 1,
      "name": "Agritel"
    }
  ]
}

Validation #246

Success

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

JSON Schema

{
  "additionalProperties": false,
  "description": "Automatically generated (please edit me)",
  "properties": {
    "news_channels": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "broadcast": {
            "maxLength": 15,
            "minLength": 5,
            "type": "string"
          },
          "cultures": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "description": {
            "maxLength": 60,
            "minLength": 30,
            "type": "string"
          },
          "id": {
            "minimum": 1,
            "type": "integer"
          },
          "name": {
            "maxLength": 15,
            "minLength": 5,
            "type": "string"
          }
        },
        "required": [
          "broadcast",
          "cultures",
          "description",
          "id",
          "name"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "news_channels"
  ],
  "title": "NewsChannel - DefaultNewsChannel",
  "type": "object"
}

JSON instance

{
  "news_channels": [
    {
      "broadcast": "dolore proid",
      "cultures": [
        "eiusm"
      ],
      "description": "eu aliquadeserunt dolore esse nostrud",
      "id": 54803746,
      "name": "dolore sint"
    },
    {
      "broadcast": "enim in reprehe",
      "cultures": [
        "minim nisi",
        "proident mo",
        "cupidatat ut labore ut",
        "eu velit labore incididunt",
        "nostrud do"
      ],
      "description": "reprehenderit anim commodoex culpa voluptate",
      "id": 12726763,
      "name": "dolor"
    },
    {
      "broadcast": "sintoff",
      "cultures": [
        "sint qui pariatur sunt",
        "labore ad elit ut culpa"
      ],
      "description": "irure tempor deserunt enim utest adipisicing co",
      "id": 48080829,
      "name": "exercitation"
    },
    {
      "broadcast": "essenu",
      "cultures": [
        "Ut consequat"
      ],
      "description": "id nostrud veniam exdolore mollit fugiat proident",
      "id": 54088014,
      "name": "amet si"
    }
  ]
}

Validation #245

Success

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

JSON Schema

{
  "apportAzoteCultureSuivante": "exercitation reprehenderit incididunt veniam",
  "azoteGlobalAbsorbe": "laboris in ad eu",
  "casExclusion": [
    {
      "exclusion": "Q1-R1"
    },
    {
      "exclusion": "Q2-R3"
    },
    {
      "exclusion": "Q2-R4"
    },
    {
      "exclusion": "Q3-R3"
    }
  ],
  "categorieCommerciale": "Categorie",
  "composition": "voluptate enim anim",
  "densiteDeSemis": "labore",
  "descriptionProduit": "Produit 4",
  "illustration": "in incididunt ad cupidatat non",
  "nomVariete": "velit anim Ut",
  "nouveaute": false,
  "prix": "adipisicing tempor elit n",
  "tonnageCarbone": "eiusmod qui dolore Ut",
  "tonnageMatiereSeche": "pariatur amet ea Ut"
}

JSON instance

{}

Validation #244

Success

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

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultCandidatesLists_445": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "CandidateAcceptanceStatus": {
          "type": "boolean"
        },
        "CandidateId": {
          "type": "string"
        },
        "CandidateUri": {
          "type": "string"
        },
        "CompanyAcceptanceStatus": {
          "type": "boolean"
        }
      },
      "required": [
        "CandidateAcceptanceStatus",
        "CandidateId",
        "CandidateUri",
        "CompanyAcceptanceStatus"
      ],
      "title": "CandidatesLists - DefaultCandidatesLists",
      "type": "object"
    },
    "DefaultCompanies_444": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "CompanyId": {
          "type": "string"
        },
        "Name": {
          "type": "string"
        }
      },
      "required": [
        "CompanyId",
        "Name"
      ],
      "title": "Companies - DefaultCompanies",
      "type": "object"
    },
    "DefaultLocations_443": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "Address": {
          "type": "string"
        },
        "CityName": {
          "type": "string"
        },
        "InseeCode": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "type": "null"
            }
          ]
        },
        "ZipCode": {
          "pattern": "^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$",
          "type": "string"
        }
      },
      "required": [
        "Address",
        "CityName",
        "InseeCode",
        "ZipCode"
      ],
      "title": "Location - DefaultLocations",
      "type": "object"
    }
  },
  "properties": {
    "CandidateMissionList": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "Candidate": {
            "$ref": "#/definitions/DefaultCandidatesLists_445",
            "type": "object"
          },
          "Company": {
            "$ref": "#/definitions/DefaultCompanies_444",
            "type": "object"
          },
          "EndDate": {
            "format": "datetime",
            "type": "string"
          },
          "Location": {
            "oneOf": [
              {
                "$ref": "#/definitions/DefaultLocations_443",
                "type": "object"
              },
              {
                "type": "null"
              }
            ]
          },
          "MissionDuration": {
            "maximum": 30,
            "minimum": 1,
            "type": "integer"
          },
          "MissionId": {
            "type": "string"
          },
          "NumberPositions": {
            "oneOf": [
              {
                "minimum": 1,
                "type": "integer"
              },
              {
                "type": "null"
              }
            ]
          },
          "Origine": {
            "type": "string"
          },
          "Salary": {
            "maximum": 1000,
            "minimum": 9,
            "type": "number"
          },
          "StartDate": {
            "format": "datetime",
            "type": "string"
          },
          "StatutMissionId": {
            "enum": [
              "BROUILLON",
              "EN_COURS",
              "PASSEE",
              "ANNULEE",
              "PAIEMENT_REQUIS",
              "PAYEE",
              "CLOTUREE"
            ],
            "type": "string"
          },
          "TotalSalary": {
            "type": "string"
          }
        },
        "required": [
          "Candidate",
          "Company",
          "EndDate",
          "Location",
          "MissionDuration",
          "MissionId",
          "NumberPositions",
          "Origine",
          "Salary",
          "StartDate",
          "StatutMissionId",
          "TotalSalary"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "CandidateMissionList"
  ],
  "title": "Missions - MissionPreview",
  "type": "object"
}

JSON instance

{
  "CandidateMissionList": [
    {
      "Candidate": {
        "CandidateAcceptanceStatus": true,
        "CandidateId": "est Excepteur laborum anim",
        "CandidateUri": "sed ullamco consequat ex deserunt",
        "CompanyAcceptanceStatus": true
      },
      "Company": {
        "CompanyId": "eu non est ea",
        "Name": "aliquip nulla"
      },
      "EndDate": "1952-10-15T22:07:51.878Z",
      "Location": {
        "Address": "id incididunt minim",
        "CityName": "culpa ullamco dolor officia",
        "InseeCode": null,
        "ZipCode": "61204"
      },
      "MissionDuration": 10,
      "MissionId": "reprehenderit consectetur pariatur mollit",
      "NumberPositions": null,
      "Origine": "cupidatat aute ex",
      "Salary": 353.45075109559934,
      "StartDate": "2000-12-14T15:44:28.509Z",
      "StatutMissionId": "PAYEE",
      "TotalSalary": "esse minim sed proident"
    },
    {
      "Candidate": {
        "CandidateAcceptanceStatus": false,
        "CandidateId": "occaecat deserunt aliqua",
        "CandidateUri": "et adipisicing",
        "CompanyAcceptanceStatus": true
      },
      "Company": {
        "CompanyId": "nisi",
        "Name": "cillum"
      },
      "EndDate": "1984-01-05T15:46:50.957Z",
      "Location": {
        "Address": "magna",
        "CityName": "tempor aute",
        "InseeCode": null,
        "ZipCode": "2a224"
      },
      "MissionDuration": 5,
      "MissionId": "mollit",
      "NumberPositions": 50659393,
      "Origine": "consequat magna Ut",
      "Salary": 193.5300002609742,
      "StartDate": "1975-03-18T03:52:30.178Z",
      "StatutMissionId": "CLOTUREE",
      "TotalSalary": "deserunt est sunt mollit"
    },
    {
      "Candidate": {
        "CandidateAcceptanceStatus": false,
        "CandidateId": "magna id",
        "CandidateUri": "nostrud labore cupidatat",
        "CompanyAcceptanceStatus": true
      },
      "Company": {
        "CompanyId": "occaecat labore aute ea",
        "Name": "incididunt qui labore in"
      },
      "EndDate": "2003-02-17T12:39:06.576Z",
      "Location": {
        "Address": "reprehend",
        "CityName": "incididunt voluptate cillum in ",
        "InseeCode": null,
        "ZipCode": "2a821"
      },
      "MissionDuration": 4,
      "MissionId": "con",
      "NumberPositions": 17480565,
      "Origine": "amet consequat",
      "Salary": 695.5236626696967,
      "StartDate": "1951-04-05T07:38:46.027Z",
      "StatutMissionId": "CLOTUREE",
      "TotalSalary": "labore in"
    },
    {
      "Candidate": {
        "CandidateAcceptanceStatus": false,
        "CandidateId": "eu cillum officia tem",
        "CandidateUri": "eiusmod irure dolor et commodo",
        "CompanyAcceptanceStatus": false
      },
      "Company": {
        "CompanyId": "pariatur",
        "Name": "quis"
      },
      "EndDate": "2013-03-28T14:08:51.430Z",
      "Location": null,
      "MissionDuration": 5,
      "MissionId": "voluptate est",
      "NumberPositions": 83991081,
      "Origine": "est magna nisi",
      "Salary": 932.4832081040821,
      "StartDate": "1980-09-26T01:53:32.059Z",
      "StatutMissionId": "PASSEE",
      "TotalSalary": "minim reprehenderit pariatur"
    },
    {
      "Candidate": {
        "CandidateAcceptanceStatus": false,
        "CandidateId": "sint laboris adipisicing esse",
        "CandidateUri": "veniam adipisicing sit et",
        "CompanyAcceptanceStatus": false
      },
      "Company": {
        "CompanyId": "mollit",
        "Name": "qui consequat in dolor est"
      },
      "EndDate": "1990-06-07T21:56:30.495Z",
      "Location": {
        "Address": "exercitation dolor qui",
        "CityName": "laboris Lorem",
        "InseeCode": null,
        "ZipCode": "2b161"
      },
      "MissionDuration": 20,
      "MissionId": "incididunt Excepteur dolor cillu",
      "NumberPositions": null,
      "Origine": "dolore officia",
      "Salary": 751.8487909871965,
      "StartDate": "1973-05-29T19:42:25.999Z",
      "StatutMissionId": "CLOTUREE",
      "TotalSalary": "esse"
    }
  ]
}