The input JSON schema validates the input JSON instance (JSON Schema Draft 4).
{
"items": {
"additionalProperties": false,
"properties": {
"createdAt": {
"type": "integer"
},
"createdBy": {
"type": "string"
},
"id": {
"pattern": "[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}",
"type": "string"
},
"linked": {
"type": "boolean"
},
"mail": {
"format": "email",
"type": "string"
},
"name": {
"type": "string"
},
"type": {
"enum": [
"Internal",
"External"
],
"type": "string"
},
"updatedAt": {
"type": "integer"
},
"updatedBy": {
"type": "string"
}
},
"required": [
"linked"
],
"type": "object"
},
"title": "Application - External Linked Application",
"type": "array"
}
[
{
"linked": false
},
{
"linked": true
},
{
"linked": true
},
{
"linked": true
}
]
The input JSON schema validates the input JSON instance (JSON Schema Draft 4).
{
"additionalProperties": false,
"definitions": {
"SuggestedFarm_1502": {
"additionalProperties": false,
"properties": {
"can_be_added": {
"description": "isOwner",
"type": "boolean"
},
"corporate_name": {
"description": "raisonSociale",
"type": "string"
}
},
"required": [
"can_be_added",
"corporate_name"
],
"title": "Farm - SuggestedFarm",
"type": "object"
}
},
"properties": {
"data": {
"additionalProperties": false,
"properties": {
"confirmed": {
"type": "boolean"
},
"country_code": {
"type": "string"
},
"email": {
"format": "email",
"type": "string"
},
"eula_version": {
"anyOf": [
{
"pattern": "^(\\d+)(\\.\\d+)(\\.\\d+)?$",
"type": "string"
},
{
"type": "null"
}
]
},
"first_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"id": {
"minimum": 0,
"type": "integer"
},
"is_guest": {
"type": "boolean"
},
"language": {
"type": "string"
},
"last_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"mobile_number": {
"anyOf": [
{
"maxLength": 10,
"minLength": 9,
"pattern": "\\d+",
"type": "string"
},
{
"type": "null"
}
]
},
"phone_number": {
"anyOf": [
{
"pattern": "^(?:(?:\\+|00)[1-9]{0,3}|0)\\s*[1-9](?:[\\s.-]*\\d{2}){4}",
"type": "string"
},
{
"type": "null"
}
]
},
"provider": {
"type": "string"
},
"suggested_farms": {
"items": {
"$ref": "#/definitions/SuggestedFarm_1502",
"type": "object"
},
"type": "array"
},
"type": {
"enum": [
"Guest",
"Lead",
"Customer",
"Commercial",
"ChefRegion",
"DskCol",
"Admin"
],
"type": "string"
},
"typology_value": {
"maximum": 2,
"minimum": 0,
"type": "integer"
},
"uid": {
"type": "string"
},
"zip_code": {
"anyOf": [
{
"pattern": "^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$",
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"confirmed",
"country_code",
"email",
"eula_version",
"id",
"last_name",
"provider",
"suggested_farms",
"type",
"typology_value",
"uid",
"zip_code"
],
"type": "object"
},
"status": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"data"
],
"title": "User - AuthentifiedUser",
"type": "object"
}
{
"data": {
"confirmed": true,
"country_code": "FR",
"email": "xtab17@gmail.com",
"eula_version": "5.0.0",
"first_name": "Xavier",
"id": 306,
"last_name": "TABUTEAU",
"provider": "email",
"suggested_farms": [],
"type": "Admin",
"typology_value": 2,
"uid": "eHRhYjE3QGdtYWlsLmNvbQ==",
"zip_code": "17430"
},
"status": "success"
}
The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:
{
"additionalProperties": false,
"definitions": {
"SuggestedFarm_1502": {
"additionalProperties": false,
"properties": {
"can_be_added": {
"description": "isOwner",
"type": "boolean"
},
"corporate_name": {
"description": "raisonSociale",
"type": "string"
}
},
"required": [
"can_be_added",
"corporate_name"
],
"title": "Farm - SuggestedFarm",
"type": "object"
}
},
"properties": {
"data": {
"additionalProperties": false,
"properties": {
"confirmed": {
"type": "boolean"
},
"country_code": {
"type": "string"
},
"email": {
"format": "email",
"type": "string"
},
"eula_version": {
"anyOf": [
{
"pattern": "^(\\d+)(\\.\\d+)(\\.\\d+)?$",
"type": "string"
},
{
"type": "null"
}
]
},
"first_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"id": {
"minimum": 0,
"type": "integer"
},
"is_guest": {
"type": "boolean"
},
"language": {
"type": "string"
},
"last_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"mobile_number": {
"anyOf": [
{
"maxLength": 10,
"minLength": 9,
"pattern": "\\d+",
"type": "string"
},
{
"type": "null"
}
]
},
"phone_number": {
"anyOf": [
{
"pattern": "^(?:(?:\\+|00)[1-9]{0,3}|0)\\s*[1-9](?:[\\s.-]*\\d{2}){4}",
"type": "string"
},
{
"type": "null"
}
]
},
"provider": {
"type": "string"
},
"suggested_farms": {
"items": {
"$ref": "#/definitions/SuggestedFarm_1502",
"type": "object"
},
"type": "array"
},
"type": {
"enum": [
"Guest",
"Lead",
"Customer",
"Commercial",
"ChefRegion",
"DskCol"
],
"type": "string"
},
"typology_value": {
"maximum": 2,
"minimum": 0,
"type": "integer"
},
"uid": {
"type": "string"
},
"zip_code": {
"anyOf": [
{
"pattern": "^(([0-8][0-9])|(9[0-5])|(2[ab]))[0-9]{3}$",
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"confirmed",
"country_code",
"email",
"eula_version",
"id",
"last_name",
"provider",
"suggested_farms",
"type",
"typology_value",
"uid",
"zip_code"
],
"type": "object"
},
"status": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"data"
],
"title": "User - AuthentifiedUser",
"type": "object"
}
{
"data": {
"confirmed": true,
"country_code": "FR",
"email": "xtab17@gmail.com",
"eula_version": "5.0.0",
"first_name": "Xavier",
"id": 306,
"last_name": "TABUTEAU",
"provider": "email",
"suggested_farms": [],
"type": "Admin",
"typology_value": 2,
"uid": "eHRhYjE3QGdtYWlsLmNvbQ==",
"zip_code": "17430"
},
"status": "success"
}
The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:
{
"additionalProperties": false,
"definitions": {
"DefaultDeliveryAddresses_895": {
"additionalProperties": false,
"description": "Automatically generated (please edit me)",
"properties": {
"address": {
"description": "deliveryAddress",
"type": "string"
},
"city": {
"description": "deliveryCity",
"type": "string"
},
"id_delivery_address": {
"description": "idDeliveryAddress",
"type": "string"
},
"price_zone": {
"description": "priceZone",
"type": "string"
},
"proximity_place": {
"description": "placeAttach",
"type": "string"
}
},
"required": [
"address",
"city",
"id_delivery_address",
"price_zone"
],
"title": "DeliveryAddresses - DefaultDeliveryAddresses",
"type": "object"
}
},
"description": "Automatically generated (please edit me)",
"properties": {
"delivery_info": {
"additionalProperties": false,
"properties": {
"customer_relation_email": {
"description": "emailCommercial",
"type": "string"
},
"delivery_addresses": {
"items": {
"$ref": "#/definitions/DefaultDeliveryAddresses_895",
"type": "object"
},
"type": "array"
},
"email": {
"description": "emailFarm | email",
"type": "string"
},
"mobile_phone": {
"anyOf": [
{
"description": "mobilePhone",
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"customer_relation_email",
"delivery_addresses",
"email",
"mobile_phone"
],
"type": "object"
}
},
"required": [
"delivery_info"
],
"title": "DeliveryInfo - DefaultDeliveryInfo",
"type": "object"
}
{
"delivery_info": {
"customer_relation_email": null,
"delivery_addresses": [
{
"address": "EARL MAYET",
"city": "14 RUE DE CHATIGNONVILLE,AUTHON LA PLAINE",
"id_delivery_address": "98064918",
"price_zone": "RT008",
"proximity_place": "0290"
}
],
"email": "o.mayet@wanadoo.fr",
"mobile_phone": "0033611255260"
}
}
The input JSON schema validates the input JSON instance (JSON Schema Draft 4).
{
"additionalProperties": false,
"definitions": {
"DefaultWarning_302": {
"additionalProperties": false,
"description": "Automatically generated",
"properties": {
"comment": {
"type": "string"
},
"icon": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"type": {
"type": "string"
}
},
"required": [
"comment",
"icon",
"type"
],
"title": "Warning - DefaultWarning",
"type": "object"
},
"WeatherSpraying_371": {
"additionalProperties": false,
"properties": {
"specific_spray_recommended": {
"maximum": 3,
"minimum": 0,
"type": "integer"
},
"specific_spray_warnings": {
"items": {
"$ref": "#/definitions/DefaultWarning_302",
"type": "object"
},
"type": "array"
},
"spray_code": {
"maximum": 10,
"minimum": 0,
"type": "integer"
},
"spray_label": {
"type": "string"
}
},
"required": [
"specific_spray_recommended",
"specific_spray_warnings",
"spray_code",
"spray_label"
],
"title": "Spraying - WeatherSpraying",
"type": "object"
}
},
"description": "Automatically generated (please edit me)",
"properties": {
"sprayings_recommendations": {
"items": {
"additionalProperties": false,
"properties": {
"city": {
"pattern": "^[A-Z](\\p{L}|-)+$",
"type": "string"
},
"city_code": {
"pattern": "^[A-Z0-9\\-_]*$",
"type": "string"
},
"latitude": {
"maximum": 90,
"minimum": -90,
"type": "number"
},
"longitude": {
"maximum": 180,
"minimum": -180,
"type": "number"
},
"recommended_spray": {
"minimum": 0,
"type": "integer"
},
"sprayings": {
"items": {
"$ref": "#/definitions/WeatherSpraying_371",
"type": "object"
},
"type": "array"
},
"time": {
"format": "date-time",
"type": "string"
},
"timezone": {
"type": "string"
},
"warnings": {
"items": {
"$ref": "#/definitions/DefaultWarning_302",
"type": "object"
},
"type": "array"
}
},
"required": [
"city",
"city_code",
"latitude",
"longitude",
"recommended_spray",
"sprayings",
"time",
"timezone",
"warnings"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"sprayings_recommendations"
],
"title": "SprayingRecommendation - DefaultSprayingRecommendation",
"type": "object"
}
{
"sprayings_recommendations": [
{
"city": "TROYES",
"city_code": "CY_FR_10387",
"latitude": 48.2980308618691,
"longitude": 4.08056399975925,
"recommended_spray": 2,
"sprayings": [
{
"specific_spray_recommended": 2,
"specific_spray_warnings": [
{
"comment": "Attention rafales",
"icon": "GUST",
"type": "GUST"
},
{
"comment": "Le risque de pluie est élevé",
"icon": "RISK",
"type": "RISK"
},
{
"comment": "Risque abeilles si culture en fleurs : \r\nPulvérisation conseillée le soir",
"icon": "BEE",
"type": "BEE"
}
],
"spray_code": 0,
"spray_label": "Hors traitement spécifique"
}
],
"time": "2021-07-13T14:07:24.8865725Z",
"timezone": "Europe/Paris",
"warnings": [
{
"comment": "Risque abeilles si culture en fleurs : \r\nPulvérisation conseillée le soir",
"icon": "BEE",
"type": "BEE"
},
{
"comment": "Attention rafales",
"icon": "GUST",
"type": "GUST"
},
{
"comment": "Le risque de pluie est élevé",
"icon": "RISK",
"type": "RISK"
}
]
}
]
}
The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:
{
"additionalProperties": false,
"definitions": {
"DefaultDeliveryNoteContract_3198": {
"additionalProperties": false,
"description": "Automatically generated (please edit me)",
"properties": {
"constractCultureLabel": {
"type": "string"
},
"contractNumber": {
"type": "string"
},
"contractProductLabel": {
"type": "string"
},
"contractQuantity": {
"type": "number"
},
"contractQuantityDelivered": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"contractQuantityLeft": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"contractType": {
"type": "string"
},
"contractTypeLabel": {
"type": "string"
},
"harvest": {
"type": "string"
}
},
"required": [
"constractCultureLabel",
"contractNumber",
"contractProductLabel",
"contractQuantity",
"contractType",
"contractTypeLabel",
"harvest"
],
"title": "DeliveryNoteContract - DefaultDeliveryNoteContract",
"type": "object"
}
},
"description": "Automatically generated (please edit me)",
"properties": {
"contracts": {
"items": {
"$ref": "#/definitions/DefaultDeliveryNoteContract_3198",
"type": "object"
},
"type": "array"
},
"traceId": {
"type": "string"
}
},
"required": [
"contracts",
"traceId"
],
"title": "DeliveryNoteContractWrapper - DefaultDeliveryNoteContractWrapper",
"type": "object"
}
{
"contracts": [
{
"contractCultureLabel": "ORGE HIVER",
"contractNumber": "00000500381-000",
"contractProduct": "001138",
"contractProductLabel": "ESC FARO",
"contractQuantity": 20,
"contractQuantityDelivered": 0,
"contractQuantityLeft": 20,
"contractType": "APF",
"contractTypeLabel": "Contrat Prix Ferme",
"harvest": "2021"
},
{
"contractCultureLabel": "ORGE HIVER",
"contractNumber": "00000443146-000",
"contractProduct": "001138",
"contractProductLabel": "ESC FARO",
"contractQuantity": 13,
"contractQuantityDelivered": 0,
"contractQuantityLeft": 13,
"contractType": "APF",
"contractTypeLabel": "Contrat Prix Ferme",
"harvest": "2021"
},
{
"contractCultureLabel": "ORGE HIVER",
"contractNumber": "00000442913-000",
"contractProduct": "001138",
"contractProductLabel": "ESC FARO",
"contractQuantity": 34,
"contractQuantityDelivered": 0,
"contractQuantityLeft": 34,
"contractType": "APF",
"contractTypeLabel": "Contrat Prix Ferme",
"harvest": "2021"
},
{
"contractCultureLabel": "ORGE HIVER",
"contractNumber": "00000413735-000",
"contractProduct": "001138",
"contractProductLabel": "ESC FARO",
"contractQuantity": 60,
"contractQuantityDelivered": 0,
"contractQuantityLeft": 60,
"contractType": "APF",
"contractTypeLabel": "Contrat Prix Ferme",
"harvest": "2021"
}
],
"traceId": "102505912"
}
The input JSON schema does not validate the input JSON instance (JSON Schema Draft 4). Errors:
{
"additionalProperties": false,
"definitions": {
"DefaultDeliveryNoteContract_3198": {
"additionalProperties": false,
"description": "Automatically generated (please edit me)",
"properties": {
"constractCultureLabel": {
"type": "string"
},
"contractNumber": {
"type": "string"
},
"contractProductLabel": {
"type": "string"
},
"contractQuantity": {
"type": "number"
},
"contractQuantityDelivered": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"contractQuantityLeft": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"contractType": {
"type": "string"
},
"contractTypeLabel": {
"type": "string"
},
"harvest": {
"type": "string"
}
},
"required": [
"constractCultureLabel",
"contractNumber",
"contractProductLabel",
"contractQuantity",
"contractType",
"contractTypeLabel",
"harvest"
],
"title": "DeliveryNoteContract - DefaultDeliveryNoteContract",
"type": "object"
}
},
"description": "Automatically generated (please edit me)",
"properties": {
"contracts": {
"items": {
"$ref": "#/definitions/DefaultDeliveryNoteContract_3198",
"type": "object"
},
"type": "array"
},
"traceId": {
"type": "string"
}
},
"required": [
"contracts",
"traceId"
],
"title": "DeliveryNoteContractWrapper - DefaultDeliveryNoteContractWrapper",
"type": "object"
}
{
"response": {
"@xmlns": "http://ws.soufflet.com/souf_DWH-ContractsCollecte_Response",
"codeReturn": "1",
"contracts": [
{
"contractCultureLabel": "ORGE HIVER",
"contractNumber": "00000500381-000",
"contractProduct": "001138",
"contractProductLabel": "ESC FARO",
"contractQuantity": "20.000",
"contractQuantityDelivered": "0.000",
"contractQuantityLeft": "20.000",
"contractType": "APF",
"contractTypeLabel": "Contrat Prix Ferme",
"harvest": "2021"
},
{
"contractCultureLabel": "ORGE HIVER",
"contractNumber": "00000443146-000",
"contractProduct": "001138",
"contractProductLabel": "ESC FARO",
"contractQuantity": "13.000",
"contractQuantityDelivered": "0.000",
"contractQuantityLeft": "13.000",
"contractType": "APF",
"contractTypeLabel": "Contrat Prix Ferme",
"harvest": "2021"
},
{
"contractCultureLabel": "ORGE HIVER",
"contractNumber": "00000442913-000",
"contractProduct": "001138",
"contractProductLabel": "ESC FARO",
"contractQuantity": "34.000",
"contractQuantityDelivered": "0.000",
"contractQuantityLeft": "34.000",
"contractType": "APF",
"contractTypeLabel": "Contrat Prix Ferme",
"harvest": "2021"
},
{
"contractCultureLabel": "ORGE HIVER",
"contractNumber": "00000413735-000",
"contractProduct": "001138",
"contractProductLabel": "ESC FARO",
"contractQuantity": "60.000",
"contractQuantityDelivered": "0.000",
"contractQuantityLeft": "60.000",
"contractType": "APF",
"contractTypeLabel": "Contrat Prix Ferme",
"harvest": "2021"
}
],
"numProcess": "102484815"
}
}
The input JSON schema validates the input JSON instance (JSON Schema Draft 4).
{
"additionalProperties": false,
"definitions": {
"DefaultDeliveryNoteContract_3198": {
"additionalProperties": false,
"description": "Automatically generated (please edit me)",
"properties": {
"constractCultureLabel": {
"type": "string"
},
"contractNumber": {
"type": "string"
},
"contractProductLabel": {
"type": "string"
},
"contractQuantity": {
"type": "number"
},
"contractQuantityDelivered": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"contractQuantityLeft": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"contractType": {
"type": "string"
},
"contractTypeLabel": {
"type": "string"
},
"harvest": {
"type": "string"
}
},
"required": [
"constractCultureLabel",
"contractNumber",
"contractProductLabel",
"contractQuantity",
"contractType",
"contractTypeLabel",
"harvest"
],
"title": "DeliveryNoteContract - DefaultDeliveryNoteContract",
"type": "object"
}
},
"description": "Automatically generated (please edit me)",
"properties": {
"contracts": {
"items": {
"$ref": "#/definitions/DefaultDeliveryNoteContract_3198",
"type": "object"
},
"type": "array"
},
"traceId": {
"type": "string"
}
},
"required": [
"contracts",
"traceId"
],
"title": "DeliveryNoteContractWrapper - DefaultDeliveryNoteContractWrapper",
"type": "object"
}
{
"contracts": [
{
"constractCultureLabel": "velit est veniam",
"contractNumber": "adipisicing minim non",
"contractProductLabel": "ut dolor esse veniam",
"contractQuantity": -41022007.19706972,
"contractType": "aliqua est veniam et pariatur",
"contractTypeLabel": "qui",
"harvest": "ullamco non ea ad"
},
{
"constractCultureLabel": "est anim Ut dolore in",
"contractNumber": "dolore aliquip irure reprehenderit aliqua",
"contractProductLabel": "ea et deserunt tempor qui",
"contractQuantity": 18661751.883481383,
"contractType": "nisi in",
"contractTypeLabel": "adipisicing",
"harvest": "incididunt sit anim consequat dolor"
}
],
"traceId": "Lorem enim Ut"
}
The input JSON schema validates the input JSON instance (JSON Schema Draft 4).
{
"additionalProperties": false,
"description": "Automatically generated (please edit me)",
"properties": {
"expirationDate": {
"description": "Expiration Date",
"format": "date",
"type": "string"
}
},
"required": [
"expirationDate"
],
"title": "ExpirationDateRequestV2 - DefaultExpirationDateRequest",
"type": "object"
}
{
"expirationDate": "1973-12-05"
}
The input JSON schema validates the input JSON instance (JSON Schema Draft 4).
{
"additionalProperties": false,
"description": "Automatically generated (please edit me)",
"properties": {
"email": {
"type": "string"
},
"password": {
"type": "string"
}
},
"required": [
"email",
"password"
],
"title": "User - DetailedUser",
"type": "object"
}
{
"email": "nulla pariatur",
"password": "deserunt"
}