Validations history

Validation #435

Failure

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

  • The property '#/products/0/order_lines/0/unit' value "TN" did not match one of the following values: LT in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/0/order_lines/1/unit' value "TN" did not match one of the following values: LT in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/1/order_lines/0/delivery_date' of type null did not match the following type: string in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/1/order_lines/0/delivery_note_number' of type null did not match the following type: string in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/1/order_lines/0/due_date' of type null did not match the following type: string in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/1/order_lines/0/invoice_date' of type null did not match the following type: string in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/1/order_lines/0/unit' value "TN" did not match one of the following values: LT in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/2/order_lines/0/unit' value "TN" did not match one of the following values: LT in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/2/order_lines/1/unit' value "TN" did not match one of the following values: LT in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/3/order_lines/0/unit' value "TN" did not match one of the following values: LT in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/4/order_lines/0/unit' value "TN" did not match one of the following values: LT in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/5/order_lines/0/unit' value "TN" did not match one of the following values: LT in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/5/order_lines/1/unit' value "TN" did not match one of the following values: LT in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "ProductOrderLine_555": {
      "additionalProperties": false,
      "properties": {
        "amount_delivered": {
          "minimum": 0,
          "type": "number"
        },
        "delivery_date": {
          "format": "date",
          "type": "string"
        },
        "delivery_note_number": {
          "pattern": "\\d*",
          "type": "string"
        },
        "due_date": {
          "format": "date",
          "type": "string"
        },
        "id": {
          "pattern": "\\d*",
          "type": "string"
        },
        "invoice_date": {
          "format": "date",
          "type": "string"
        },
        "invoice_number": {
          "pattern": "\\d*",
          "type": "string"
        },
        "order": {
          "$ref": "#/definitions/ProductOrder_557",
          "type": "object"
        },
        "total_amount": {
          "minimum": 0,
          "type": "number"
        },
        "unit": {
          "enum": [
            "LT"
          ],
          "type": "string"
        },
        "unit_price": {
          "minimum": 0,
          "type": "number"
        }
      },
      "required": [
        "amount_delivered",
        "delivery_date",
        "delivery_note_number",
        "due_date",
        "id",
        "invoice_date",
        "invoice_number",
        "order",
        "total_amount",
        "unit",
        "unit_price"
      ],
      "title": "OrderLine - ProductOrderLine",
      "type": "object"
    },
    "ProductOrder_557": {
      "additionalProperties": false,
      "properties": {
        "date": {
          "format": "date",
          "type": "string"
        },
        "delivery_mode": {
          "type": "string"
        },
        "id": {
          "type": "string"
        },
        "settled": {
          "type": "boolean"
        },
        "status": {
          "maximum": 2,
          "minimum": 0,
          "type": "integer"
        }
      },
      "required": [
        "date",
        "delivery_mode",
        "id",
        "settled",
        "status"
      ],
      "title": "Order - ProductOrder",
      "type": "object"
    }
  },
  "description": "Automatically generated (please edit me)",
  "properties": {
    "products": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "activity_type": {
            "type": "string"
          },
          "amount_to_deliver": {
            "minimum": 0,
            "type": "number"
          },
          "delivered_amount": {
            "minimum": 0,
            "type": "number"
          },
          "id": {
            "pattern": "\\d*",
            "type": "string"
          },
          "invoiced_amount": {
            "minimum": 0,
            "type": "number"
          },
          "label": {
            "type": "string"
          },
          "order_lines": {
            "items": {
              "$ref": "#/definitions/ProductOrderLine_555",
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "activity_type",
          "amount_to_deliver",
          "delivered_amount",
          "id",
          "invoiced_amount",
          "label",
          "order_lines"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "products"
  ],
  "title": "Product - DefaultProduct",
  "type": "object"
}

JSON instance

{
  "products": [
    {
      "activity_type": "PEN",
      "amount_to_deliver": 0,
      "delivered_amount": 0,
      "id": "105056",
      "invoiced_amount": 20.05,
      "label": "SOL AZOTEE 390 (30%)",
      "order_lines": [
        {
          "amount_delivered": 5.7,
          "delivery_date": "2018-07-10",
          "delivery_note_number": "3986012",
          "due_date": "2018-08-31",
          "id": "1000",
          "invoice_date": "2018-08-08",
          "invoice_number": "18014271",
          "order": {
            "date": "2018-03-30",
            "delivery_mode": "Direct camion groupe",
            "id": "10811710",
            "settled": true,
            "status": 2
          },
          "total_amount": 5.7,
          "unit": "TN",
          "unit_price": 164
        },
        {
          "amount_delivered": 14.35,
          "delivery_date": "2018-07-12",
          "delivery_note_number": "3987814",
          "due_date": "2018-08-31",
          "id": "1000",
          "invoice_date": "2018-08-08",
          "invoice_number": "18014271",
          "order": {
            "date": "2018-04-05",
            "delivery_mode": "Direct camion groupe",
            "id": "10870046",
            "settled": true,
            "status": 2
          },
          "total_amount": 14.35,
          "unit": "TN",
          "unit_price": 164
        }
      ]
    },
    {
      "activity_type": "PEN",
      "amount_to_deliver": 7,
      "delivered_amount": 0,
      "id": "109058",
      "invoiced_amount": 0,
      "label": "SULF MAGNESIE 25MGO+40SO3",
      "order_lines": [
        {
          "amount_delivered": 0,
          "delivery_date": null,
          "delivery_note_number": null,
          "due_date": null,
          "id": "1000",
          "invoice_date": null,
          "invoice_number": "0",
          "order": {
            "date": "2018-11-12",
            "delivery_mode": "Relivraison vrac benne agri",
            "id": "11197485",
            "settled": false,
            "status": 0
          },
          "total_amount": 7,
          "unit": "TN",
          "unit_price": 255
        }
      ]
    },
    {
      "activity_type": "PEN",
      "amount_to_deliver": 0,
      "delivered_amount": 0,
      "id": "129439B2",
      "invoiced_amount": 17.4,
      "label": "SULFAN 24N+18SO3 BB600",
      "order_lines": [
        {
          "amount_delivered": 14.4,
          "delivery_date": "2018-08-27",
          "delivery_note_number": "4030769",
          "due_date": "2018-09-30",
          "id": "1000",
          "invoice_date": "2018-09-13",
          "invoice_number": "18031857",
          "order": {
            "date": "2018-06-01",
            "delivery_mode": "Direct camion groupe",
            "id": "10846341",
            "settled": true,
            "status": 2
          },
          "total_amount": 14.4,
          "unit": "TN",
          "unit_price": 222
        },
        {
          "amount_delivered": 3,
          "delivery_date": "2018-08-02",
          "delivery_note_number": "4003428",
          "due_date": "2018-09-30",
          "id": "1000",
          "invoice_date": "2018-09-13",
          "invoice_number": "18031857",
          "order": {
            "date": "2018-06-01",
            "delivery_mode": "Direct camion groupe",
            "id": "10846377",
            "settled": true,
            "status": 2
          },
          "total_amount": 3,
          "unit": "TN",
          "unit_price": 222
        }
      ]
    },
    {
      "activity_type": "PEN",
      "amount_to_deliver": 0,
      "delivered_amount": 0,
      "id": "105065",
      "invoiced_amount": 10,
      "label": "SUPERPHOSPHATE 46%",
      "order_lines": [
        {
          "amount_delivered": 10,
          "delivery_date": "2018-08-30",
          "delivery_note_number": "4034848",
          "due_date": "2018-09-30",
          "id": "1000",
          "invoice_date": "2018-09-13",
          "invoice_number": "18031857",
          "order": {
            "date": "2018-05-29",
            "delivery_mode": "Depart magasin",
            "id": "10769715",
            "settled": true,
            "status": 2
          },
          "total_amount": 10,
          "unit": "TN",
          "unit_price": 335
        }
      ]
    },
    {
      "activity_type": "PEN",
      "amount_to_deliver": 0,
      "delivered_amount": 0,
      "id": "104936B2",
      "invoiced_amount": 10.8,
      "label": "UREE 46% GR BB600",
      "order_lines": [
        {
          "amount_delivered": 10.8,
          "delivery_date": "2018-10-03",
          "delivery_note_number": "4070729",
          "due_date": "2018-11-30",
          "id": "1000",
          "invoice_date": "2018-11-12",
          "invoice_number": "18082458",
          "order": {
            "date": "2018-09-14",
            "delivery_mode": "Direct camion groupe",
            "id": "11039830",
            "settled": false,
            "status": 2
          },
          "total_amount": 10.8,
          "unit": "TN",
          "unit_price": 349
        }
      ]
    },
    {
      "activity_type": "PEN",
      "amount_to_deliver": 0,
      "delivered_amount": 0,
      "id": "179728",
      "invoiced_amount": 30.7,
      "label": "VINASSE +",
      "order_lines": [
        {
          "amount_delivered": 26.5,
          "delivery_date": "2018-08-21",
          "delivery_note_number": "4024383",
          "due_date": "2018-09-30",
          "id": "1000",
          "invoice_date": "2018-09-13",
          "invoice_number": "18031857",
          "order": {
            "date": "2018-03-29",
            "delivery_mode": "Orga direct avec epandage",
            "id": "10713536",
            "settled": true,
            "status": 2
          },
          "total_amount": 26.5,
          "unit": "TN",
          "unit_price": 73
        },
        {
          "amount_delivered": 4.2,
          "delivery_date": "2018-08-21",
          "delivery_note_number": "4024384",
          "due_date": "2018-09-30",
          "id": "1100",
          "invoice_date": "2018-09-13",
          "invoice_number": "18031857",
          "order": {
            "date": "2018-03-29",
            "delivery_mode": "Orga direct avec epandage",
            "id": "10713536",
            "settled": true,
            "status": 2
          },
          "total_amount": 4.2,
          "unit": "TN",
          "unit_price": 73
        }
      ]
    }
  ]
}

Validation #434

Failure

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

  • The property '#/products/0/order_lines/0/unit' value "TN" did not match one of the following values: LT in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/0/order_lines/1/unit' value "TN" did not match one of the following values: LT in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/1/order_lines/0/delivery_date' of type null did not match the following type: string in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/1/order_lines/0/delivery_note_number' of type null did not match the following type: string in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/1/order_lines/0/due_date' of type null did not match the following type: string in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/1/order_lines/0/invoice_date' of type null did not match the following type: string in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/1/order_lines/0/unit' value "TN" did not match one of the following values: LT in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/2/order_lines/0/unit' value "TN" did not match one of the following values: LT in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/2/order_lines/1/unit' value "TN" did not match one of the following values: LT in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/3/order_lines/0/unit' value "TN" did not match one of the following values: LT in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/4/order_lines/0/unit' value "TN" did not match one of the following values: LT in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/5/order_lines/0/unit' value "TN" did not match one of the following values: LT in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#
  • The property '#/products/5/order_lines/1/unit' value "TN" did not match one of the following values: LT in schema 0a52cc9c-37c8-5b51-95d1-fa8ed2928474#

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "ProductOrderLine_555": {
      "additionalProperties": false,
      "properties": {
        "amount_delivered": {
          "minimum": 0,
          "type": "number"
        },
        "delivery_date": {
          "format": "date",
          "type": "string"
        },
        "delivery_note_number": {
          "pattern": "\\d*",
          "type": "string"
        },
        "due_date": {
          "format": "date",
          "type": "string"
        },
        "id": {
          "pattern": "\\d*",
          "type": "string"
        },
        "invoice_date": {
          "format": "date",
          "type": "string"
        },
        "invoice_number": {
          "pattern": "\\d*",
          "type": "string"
        },
        "order": {
          "$ref": "#/definitions/ProductOrder_557",
          "type": "object"
        },
        "total_amount": {
          "minimum": 0,
          "type": "number"
        },
        "unit": {
          "enum": [
            "LT"
          ],
          "type": "string"
        },
        "unit_price": {
          "minimum": 0,
          "type": "number"
        }
      },
      "required": [
        "amount_delivered",
        "delivery_date",
        "delivery_note_number",
        "due_date",
        "id",
        "invoice_date",
        "invoice_number",
        "order",
        "total_amount",
        "unit",
        "unit_price"
      ],
      "title": "OrderLine - ProductOrderLine",
      "type": "object"
    },
    "ProductOrder_557": {
      "additionalProperties": false,
      "properties": {
        "date": {
          "format": "date",
          "type": "string"
        },
        "delivery_mode": {
          "type": "string"
        },
        "id": {
          "type": "string"
        },
        "settled": {
          "type": "boolean"
        },
        "status": {
          "maximum": 2,
          "minimum": 0,
          "type": "integer"
        }
      },
      "required": [
        "date",
        "delivery_mode",
        "id",
        "settled",
        "status"
      ],
      "title": "Order - ProductOrder",
      "type": "object"
    }
  },
  "description": "Automatically generated (please edit me)",
  "properties": {
    "products": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "activity_type": {
            "type": "string"
          },
          "amount_to_deliver": {
            "minimum": 0,
            "type": "number"
          },
          "delivered_amount": {
            "minimum": 0,
            "type": "number"
          },
          "id": {
            "pattern": "\\d*",
            "type": "string"
          },
          "invoiced_amount": {
            "minimum": 0,
            "type": "number"
          },
          "label": {
            "type": "string"
          },
          "order_lines": {
            "items": {
              "$ref": "#/definitions/ProductOrderLine_555",
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "activity_type",
          "amount_to_deliver",
          "delivered_amount",
          "id",
          "invoiced_amount",
          "label",
          "order_lines"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "products"
  ],
  "title": "Product - DefaultProduct",
  "type": "object"
}

JSON instance

{
  "products": [
    {
      "activity_type": "PEN",
      "amount_to_deliver": 0,
      "delivered_amount": 0,
      "id": "105056",
      "invoiced_amount": 20.05,
      "label": "SOL AZOTEE 390 (30%)",
      "order_lines": [
        {
          "amount_delivered": 5.7,
          "delivery_date": "2018-07-10",
          "delivery_note_number": "3986012",
          "due_date": "2018-08-31",
          "id": "1000",
          "invoice_date": "2018-08-08",
          "invoice_number": "18014271",
          "order": {
            "date": "2018-03-30",
            "delivery_mode": "Direct camion groupe",
            "id": "10811710",
            "settled": true,
            "status": 2
          },
          "total_amount": 5.7,
          "unit": "TN",
          "unit_price": 164
        },
        {
          "amount_delivered": 14.35,
          "delivery_date": "2018-07-12",
          "delivery_note_number": "3987814",
          "due_date": "2018-08-31",
          "id": "1000",
          "invoice_date": "2018-08-08",
          "invoice_number": "18014271",
          "order": {
            "date": "2018-04-05",
            "delivery_mode": "Direct camion groupe",
            "id": "10870046",
            "settled": true,
            "status": 2
          },
          "total_amount": 14.35,
          "unit": "TN",
          "unit_price": 164
        }
      ]
    },
    {
      "activity_type": "PEN",
      "amount_to_deliver": 7,
      "delivered_amount": 0,
      "id": "109058",
      "invoiced_amount": 0,
      "label": "SULF MAGNESIE 25MGO+40SO3",
      "order_lines": [
        {
          "amount_delivered": 0,
          "delivery_date": null,
          "delivery_note_number": null,
          "due_date": null,
          "id": "1000",
          "invoice_date": null,
          "invoice_number": "0",
          "order": {
            "date": "2018-11-12",
            "delivery_mode": "Relivraison vrac benne agri",
            "id": "11197485",
            "settled": false,
            "status": 0
          },
          "total_amount": 7,
          "unit": "TN",
          "unit_price": 255
        }
      ]
    },
    {
      "activity_type": "PEN",
      "amount_to_deliver": 0,
      "delivered_amount": 0,
      "id": "129439B2",
      "invoiced_amount": 17.4,
      "label": "SULFAN 24N+18SO3 BB600",
      "order_lines": [
        {
          "amount_delivered": 14.4,
          "delivery_date": "2018-08-27",
          "delivery_note_number": "4030769",
          "due_date": "2018-09-30",
          "id": "1000",
          "invoice_date": "2018-09-13",
          "invoice_number": "18031857",
          "order": {
            "date": "2018-06-01",
            "delivery_mode": "Direct camion groupe",
            "id": "10846341",
            "settled": true,
            "status": 2
          },
          "total_amount": 14.4,
          "unit": "TN",
          "unit_price": 222
        },
        {
          "amount_delivered": 3,
          "delivery_date": "2018-08-02",
          "delivery_note_number": "4003428",
          "due_date": "2018-09-30",
          "id": "1000",
          "invoice_date": "2018-09-13",
          "invoice_number": "18031857",
          "order": {
            "date": "2018-06-01",
            "delivery_mode": "Direct camion groupe",
            "id": "10846377",
            "settled": true,
            "status": 2
          },
          "total_amount": 3,
          "unit": "TN",
          "unit_price": 222
        }
      ]
    },
    {
      "activity_type": "PEN",
      "amount_to_deliver": 0,
      "delivered_amount": 0,
      "id": "105065",
      "invoiced_amount": 10,
      "label": "SUPERPHOSPHATE 46%",
      "order_lines": [
        {
          "amount_delivered": 10,
          "delivery_date": "2018-08-30",
          "delivery_note_number": "4034848",
          "due_date": "2018-09-30",
          "id": "1000",
          "invoice_date": "2018-09-13",
          "invoice_number": "18031857",
          "order": {
            "date": "2018-05-29",
            "delivery_mode": "Depart magasin",
            "id": "10769715",
            "settled": true,
            "status": 2
          },
          "total_amount": 10,
          "unit": "TN",
          "unit_price": 335
        }
      ]
    },
    {
      "activity_type": "PEN",
      "amount_to_deliver": 0,
      "delivered_amount": 0,
      "id": "104936B2",
      "invoiced_amount": 10.8,
      "label": "UREE 46% GR BB600",
      "order_lines": [
        {
          "amount_delivered": 10.8,
          "delivery_date": "2018-10-03",
          "delivery_note_number": "4070729",
          "due_date": "2018-11-30",
          "id": "1000",
          "invoice_date": "2018-11-12",
          "invoice_number": "18082458",
          "order": {
            "date": "2018-09-14",
            "delivery_mode": "Direct camion groupe",
            "id": "11039830",
            "settled": false,
            "status": 2
          },
          "total_amount": 10.8,
          "unit": "TN",
          "unit_price": 349
        }
      ]
    },
    {
      "activity_type": "PEN",
      "amount_to_deliver": 0,
      "delivered_amount": 0,
      "id": "179728",
      "invoiced_amount": 30.7,
      "label": "VINASSE +",
      "order_lines": [
        {
          "amount_delivered": 26.5,
          "delivery_date": "2018-08-21",
          "delivery_note_number": "4024383",
          "due_date": "2018-09-30",
          "id": "1000",
          "invoice_date": "2018-09-13",
          "invoice_number": "18031857",
          "order": {
            "date": "2018-03-29",
            "delivery_mode": "Orga direct avec epandage",
            "id": "10713536",
            "settled": true,
            "status": 2
          },
          "total_amount": 26.5,
          "unit": "TN",
          "unit_price": 73
        },
        {
          "amount_delivered": 4.2,
          "delivery_date": "2018-08-21",
          "delivery_note_number": "4024384",
          "due_date": "2018-09-30",
          "id": "1100",
          "invoice_date": "2018-09-13",
          "invoice_number": "18031857",
          "order": {
            "date": "2018-03-29",
            "delivery_mode": "Orga direct avec epandage",
            "id": "10713536",
            "settled": true,
            "status": 2
          },
          "total_amount": 4.2,
          "unit": "TN",
          "unit_price": 73
        }
      ]
    }
  ]
}

Validation #433

Success

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

JSON Schema

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

JSON instance

{
  "weather_forecasts": [
    {
      "city": "elit magna",
      "city_code": "dolore tempor veniam adipisicing",
      "daily_reports": [
        {
          "pluviometry_cumul": 130.97951748727738,
          "snow": 0,
          "time": "1963-12-02T16:27:37.504Z",
          "weather": 0,
          "weather_reports": [
            {
              "humidity": 79.92410903779076,
              "night": 0,
              "pluviometry": 56.61130555104462,
              "pluviometry1h": 9361016.424679473,
              "pluviometry_cumul": 155.46093101075695,
              "recommended_spray": 1,
              "risk_of_rain": 55.868611966965396,
              "snow": 0,
              "temperature": -7.4860336234348726,
              "time": "1990-03-20T01:52:19.378Z",
              "warnings": [
                {
                  "comment": "Lorem non sit",
                  "icon": null,
                  "type": "OPTI"
                },
                {
                  "comment": "velit",
                  "icon": null,
                  "type": "GUST"
                },
                {
                  "comment": "aliqua",
                  "icon": "veniam pariatur dolor",
                  "type": "HY50"
                }
              ],
              "weather": 4,
              "wind_direction": "S",
              "wind_gusts": 89.2042051895074,
              "wind_speed": 17.839150646253998
            },
            {
              "humidity": 55.50107629310587,
              "night": 1,
              "pluviometry": 185.83568709409656,
              "pluviometry1h": -54502952.45434757,
              "pluviometry_cumul": 29.156001236470352,
              "recommended_spray": 2,
              "risk_of_rain": 91.00041618160957,
              "snow": 1,
              "temperature": 61.03703712170021,
              "time": "2005-05-04T20:24:05.523Z",
              "warnings": [
                {
                  "comment": "e",
                  "icon": "aliqua consequat consectetur Duis exercit",
                  "type": "GUST"
                },
                {
                  "comment": "sed",
                  "icon": null,
                  "type": "HY70"
                }
              ],
              "weather": 8,
              "wind_direction": "S",
              "wind_gusts": 54.82266079928544,
              "wind_speed": 22.290394836406968
            },
            {
              "humidity": 76.0857839644525,
              "night": 1,
              "pluviometry": 84.13916769147123,
              "pluviometry1h": -91277366.27775204,
              "pluviometry_cumul": 43.18395214423924,
              "recommended_spray": 2,
              "risk_of_rain": 43.42172049827706,
              "snow": 0,
              "temperature": 25.754761822804213,
              "time": "1978-05-28T00:18:47.675Z",
              "warnings": [
                {
                  "comment": "in adipisicing sunt",
                  "icon": null,
                  "type": "TZ10"
                },
                {
                  "comment": "in in",
                  "icon": "est mollit sint nisi eiusmod",
                  "type": "HY95"
                },
                {
                  "comment": "sit velit ut",
                  "icon": "nulla dolore veniam",
                  "type": "RAIN"
                }
              ],
              "weather": 11,
              "wind_direction": "ENE",
              "wind_gusts": 0.5643997751109575,
              "wind_speed": 12.658991012972995
            }
          ]
        }
      ],
      "timezone": "tempor amet irure"
    },
    {
      "city": "adipisicing sunt in nulla",
      "city_code": "dolor irure laborum occaecat",
      "daily_reports": [
        {
          "pluviometry_cumul": 82.95563913366868,
          "snow": 1,
          "time": "2003-08-20T03:09:53.360Z",
          "weather": 15,
          "weather_reports": [
            {
              "humidity": 41.017620602587044,
              "night": 1,
              "pluviometry": 89.77307346695122,
              "pluviometry1h": 47815180.90674877,
              "pluviometry_cumul": 71.14505858107374,
              "recommended_spray": 0,
              "risk_of_rain": 85.11882054837747,
              "snow": 0,
              "temperature": 11.99352449331155,
              "time": "2007-02-27T08:44:40.794Z",
              "warnings": [
                {
                  "comment": "culpa laboris Duis sunt",
                  "icon": "dolor nisi non in ullamco",
                  "type": "HY70"
                },
                {
                  "comment": "enim aute ea non",
                  "icon": null,
                  "type": "HY50"
                }
              ],
              "weather": 2,
              "wind_direction": "NO",
              "wind_gusts": 51.288539201771435,
              "wind_speed": 8.774795999251666
            },
            {
              "humidity": 77.73754527763535,
              "night": 0,
              "pluviometry": 121.83750348319487,
              "pluviometry1h": 96536971.15853119,
              "pluviometry_cumul": 88.69319596745893,
              "recommended_spray": 2,
              "risk_of_rain": 42.407562510284016,
              "snow": 1,
              "temperature": 91.21296905173891,
              "time": "1999-02-19T02:33:39.207Z",
              "warnings": [
                {
                  "comment": "officia in deserunt ullamco ipsum",
                  "icon": "fugiat",
                  "type": "TE25"
                }
              ],
              "weather": 4,
              "wind_direction": "NO",
              "wind_gusts": 92.76547458987174,
              "wind_speed": 3.0490993067437855
            },
            {
              "humidity": 59.848475093664796,
              "night": 1,
              "pluviometry": 6.701870451061279,
              "pluviometry1h": 25119961.626594424,
              "pluviometry_cumul": 144.95275196638838,
              "recommended_spray": 2,
              "risk_of_rain": 79.52692033570052,
              "snow": 1,
              "temperature": 93.68138921687714,
              "time": "1976-12-31T12:40:40.336Z",
              "warnings": [
                {
                  "comment": "in labore do",
                  "icon": "sunt in",
                  "type": "OPTI"
                },
                {
                  "comment": "aliqua proident mollit nisi",
                  "icon": "officia deserunt pariatur ut",
                  "type": "TE13"
                },
                {
                  "comment": "Duis culpa Excepteur",
                  "icon": null,
                  "type": "R1H3"
                },
                {
                  "comment": "quis adipisicing",
                  "icon": "commodo aliquip amet do magna",
                  "type": "TZ10"
                },
                {
                  "comment": "nostrud",
                  "icon": null,
                  "type": "TE12"
                }
              ],
              "weather": 19,
              "wind_direction": "ONO",
              "wind_gusts": 0.7369825229800231,
              "wind_speed": 15.469986500287147
            },
            {
              "humidity": 43.984828362765,
              "night": 0,
              "pluviometry": 66.52725494496248,
              "pluviometry1h": -99412467.6306805,
              "pluviometry_cumul": 48.4844668289226,
              "recommended_spray": 2,
              "risk_of_rain": 90.47901813540462,
              "snow": 1,
              "temperature": 23.036377752200913,
              "time": "1944-02-15T06:53:18.837Z",
              "warnings": [
                {
                  "comment": "minim",
                  "icon": "ipsum",
                  "type": "TE05"
                },
                {
                  "comment": "in velit ipsum mollit",
                  "icon": null,
                  "type": "RISK"
                }
              ],
              "weather": 1,
              "wind_direction": "SSO",
              "wind_gusts": 72.92702821647717,
              "wind_speed": 23.579863088412274
            },
            {
              "humidity": 54.0619058271629,
              "night": 1,
              "pluviometry": 99.25089655726484,
              "pluviometry1h": -77608184.91665669,
              "pluviometry_cumul": 179.3559267285759,
              "recommended_spray": 2,
              "risk_of_rain": 49.67895460220615,
              "snow": 0,
              "temperature": 66.01797490765095,
              "time": "2007-01-28T21:31:11.985Z",
              "warnings": [
                {
                  "comment": "Ut cupidatat laborum eu et",
                  "icon": null,
                  "type": "WI19"
                },
                {
                  "comment": "fugi",
                  "icon": "Lorem consequat ex",
                  "type": "RISK"
                },
                {
                  "comment": "id aliqua nostrud",
                  "icon": "laborum sunt ad in",
                  "type": "TE00"
                }
              ],
              "weather": 13,
              "wind_direction": "NO",
              "wind_gusts": 95.41257314380888,
              "wind_speed": 12.48692350532501
            }
          ]
        }
      ],
      "timezone": "elit laboris sint exercitation sit"
    },
    {
      "city": "commodo",
      "city_code": "sint velit tempor nisi",
      "daily_reports": [
        {
          "pluviometry_cumul": 66.99468766970753,
          "snow": 0,
          "time": "1991-08-21T22:09:24.076Z",
          "weather": 0,
          "weather_reports": [
            {
              "humidity": 45.16179965953318,
              "night": 0,
              "pluviometry": 67.77561575826645,
              "pluviometry1h": -79913436.12374178,
              "pluviometry_cumul": 93.5505269734771,
              "recommended_spray": 0,
              "risk_of_rain": 72.19823136536468,
              "snow": 1,
              "temperature": 44.523306062608285,
              "time": "1977-05-05T10:22:50.055Z",
              "warnings": [
                {
                  "comment": "Ut enim",
                  "icon": "ut mollit dolore",
                  "type": "GUST"
                },
                {
                  "comment": "in tempor aliquip id",
                  "icon": null,
                  "type": "HY70"
                }
              ],
              "weather": 4,
              "wind_direction": "O",
              "wind_gusts": 59.61690984698347,
              "wind_speed": 28.00021714340972
            },
            {
              "humidity": 47.0870395945103,
              "night": 0,
              "pluviometry": 63.75586736243521,
              "pluviometry1h": -72397312.59834619,
              "pluviometry_cumul": 142.24046928635806,
              "recommended_spray": 2,
              "risk_of_rain": 97.58874984616367,
              "snow": 0,
              "temperature": 50.039548734932,
              "time": "2005-05-01T00:34:17.577Z",
              "warnings": [
                {
                  "comment": "dolore dolor",
                  "icon": null,
                  "type": "OPTI"
                }
              ],
              "weather": 16,
              "wind_direction": "NO",
              "wind_gusts": 75.58208306659493,
              "wind_speed": 0.6887256784836948
            },
            {
              "humidity": 48.55366182314696,
              "night": 1,
              "pluviometry": 77.17873394665169,
              "pluviometry1h": -44141283.15439956,
              "pluviometry_cumul": 20.455264245719107,
              "recommended_spray": 0,
              "risk_of_rain": 45.13955393014568,
              "snow": 1,
              "temperature": 11.645997924299596,
              "time": "1987-04-20T00:16:13.853Z",
              "warnings": [
                {
                  "comment": "do exercitation tempor cupidatat",
                  "icon": null,
                  "type": "OK"
                },
                {
                  "comment": "sint ex exercitation magna",
                  "icon": null,
                  "type": "TE25"
                },
                {
                  "comment": "minim magna Lorem est",
                  "icon": null,
                  "type": "HY50"
                }
              ],
              "weather": 18,
              "wind_direction": "SSO",
              "wind_gusts": 71.13828261240008,
              "wind_speed": 21.04633131536729
            },
            {
              "humidity": 31.027841958904666,
              "night": 1,
              "pluviometry": 9.2851884791839,
              "pluviometry1h": 38061035.05615184,
              "pluviometry_cumul": 16.274694608358907,
              "recommended_spray": 0,
              "risk_of_rain": 70.06558615545902,
              "snow": 0,
              "temperature": 72.54920333917418,
              "time": "2013-09-07T16:54:05.978Z",
              "warnings": [
                {
                  "comment": "eu",
                  "icon": null,
                  "type": "RISK"
                }
              ],
              "weather": 3,
              "wind_direction": "ENE",
              "wind_gusts": 97.03436645627173,
              "wind_speed": 2.8825478838924234
            }
          ]
        },
        {
          "pluviometry_cumul": 163.79155191351748,
          "snow": 1,
          "time": "1979-10-21T14:04:40.721Z",
          "weather": 9,
          "weather_reports": [
            {
              "humidity": 52.2688091085148,
              "night": 1,
              "pluviometry": 166.30880157795792,
              "pluviometry1h": 14348914.245557472,
              "pluviometry_cumul": 37.621369228240994,
              "recommended_spray": 0,
              "risk_of_rain": 71.06609537994997,
              "snow": 0,
              "temperature": 43.796884344106836,
              "time": "1985-01-07T04:50:24.120Z",
              "warnings": [
                {
                  "comment": "qui sit",
                  "icon": "labore ci",
                  "type": "HY50"
                },
                {
                  "comment": "dolor amet",
                  "icon": null,
                  "type": "RAI2"
                },
                {
                  "comment": "laborum enim",
                  "icon": "dolore consectetur qui fugiat",
                  "type": "WI19"
                }
              ],
              "weather": 5,
              "wind_direction": "SO",
              "wind_gusts": 19.54616409923251,
              "wind_speed": 14.584643019975278
            },
            {
              "humidity": 94.14191095795428,
              "night": 0,
              "pluviometry": 59.275770741442145,
              "pluviometry1h": 88078166.0985632,
              "pluviometry_cumul": 46.51061293632539,
              "recommended_spray": 1,
              "risk_of_rain": 91.88862552580683,
              "snow": 1,
              "temperature": 42.5790699200924,
              "time": "1951-01-26T10:39:22.518Z",
              "warnings": [
                {
                  "comment": "dolore nisi nostrud",
                  "icon": "nostrud",
                  "type": "RAI2"
                },
                {
                  "comment": "Excepteur et",
                  "icon": null,
                  "type": "R1H3"
                }
              ],
              "weather": 7,
              "wind_direction": "NE",
              "wind_gusts": 48.93694218194167,
              "wind_speed": 19.86938026103794
            }
          ]
        },
        {
          "pluviometry_cumul": 10.369448362249534,
          "snow": 0,
          "time": "1988-05-06T11:32:47.408Z",
          "weather": 15,
          "weather_reports": [
            {
              "humidity": 40.28638416345509,
              "night": 1,
              "pluviometry": 159.02266857076634,
              "pluviometry1h": 49009523.2308172,
              "pluviometry_cumul": 54.308097187849704,
              "recommended_spray": 2,
              "risk_of_rain": 74.10641748745459,
              "snow": 1,
              "temperature": 28.652135580345465,
              "time": "1957-06-26T14:14:14.605Z",
              "warnings": [
                {
                  "comment": "enim culpa officia qui ut",
                  "icon": null,
                  "type": "HY95"
                },
                {
                  "comment": "Duis est",
                  "icon": null,
                  "type": "OPTI"
                },
                {
                  "comment": "in ",
                  "icon": null,
                  "type": "TE05"
                },
                {
                  "comment": "exercitation elit aliquip velit",
                  "icon": null,
                  "type": "HY50"
                }
              ],
              "weather": 4,
              "wind_direction": "N",
              "wind_gusts": 6.034995473449678,
              "wind_speed": 10.453047713169303
            }
          ]
        }
      ],
      "timezone": "in amet elit nulla culpa"
    },
    {
      "city": "Duis",
      "city_code": "ea magna",
      "daily_reports": [
        {
          "pluviometry_cumul": 64.67266306130144,
          "snow": 1,
          "time": "2017-08-16T13:13:15.364Z",
          "weather": 12,
          "weather_reports": [
            {
              "humidity": 80.88849001536784,
              "night": 1,
              "pluviometry": 100.2482139650934,
              "pluviometry1h": -19421372.003426015,
              "pluviometry_cumul": 32.537485402913724,
              "recommended_spray": 2,
              "risk_of_rain": 89.17865575486228,
              "snow": 1,
              "temperature": 96.82867980196379,
              "time": "1959-02-04T11:54:57.839Z",
              "warnings": [
                {
                  "comment": "labore ea occaecat laboris non",
                  "icon": "exercitation",
                  "type": "GUST"
                },
                {
                  "comment": "qui mollit veniam esse amet",
                  "icon": null,
                  "type": "RAI2"
                }
              ],
              "weather": 17,
              "wind_direction": "SSE",
              "wind_gusts": 31.878985348712895,
              "wind_speed": 23.810695810222523
            }
          ]
        }
      ],
      "timezone": "qui"
    }
  ]
}

Validation #432

Success

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

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "DefaultDoorRoomPreview3D_750": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "location": {
          "$ref": "#/definitions/DefaultPhysicalLocation_485",
          "type": "object"
        },
        "physicalSize": {
          "$ref": "#/definitions/DefaultPhysicalSize_484",
          "type": "object"
        }
      },
      "required": [
        "location",
        "physicalSize"
      ],
      "title": "DoorRoomPreview3D - DefaultDoorRoomPreview3D",
      "type": "object"
    },
    "DefaultFloor_490": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "id": {
          "type": "integer"
        },
        "level": {
          "type": "string"
        },
        "physicalSize": {
          "$ref": "#/definitions/DefaultPhysicalSize_484",
          "type": "object"
        },
        "referenceImages": {
          "items": {
            "$ref": "#/definitions/DefaultReferenceImage_487",
            "type": "object"
          },
          "type": "array"
        },
        "rooms": {
          "items": {
            "$ref": "#/definitions/DefaultRoom_492",
            "type": "object"
          },
          "type": "array"
        }
      },
      "required": [
        "id",
        "level",
        "physicalSize",
        "referenceImages",
        "rooms"
      ],
      "title": "floor - DefaultFloor",
      "type": "object"
    },
    "DefaultInfo_482": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "author": {
          "type": "string"
        },
        "version": {
          "type": "integer"
        }
      },
      "required": [
        "author",
        "version"
      ],
      "title": "info - DefaultInfo",
      "type": "object"
    },
    "DefaultNode_730": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "connections": {
          "items": {
            "type": "integer"
          },
          "type": "array"
        },
        "id": {
          "type": "integer"
        },
        "location": {
          "$ref": "#/definitions/DefaultPhysicalLocation_485",
          "type": "object"
        }
      },
      "required": [
        "connections",
        "id",
        "location"
      ],
      "title": "node - DefaultNode",
      "type": "object"
    },
    "DefaultPath_731": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "id": {
          "type": "integer"
        },
        "nodes": {
          "items": {
            "$ref": "#/definitions/DefaultNode_730",
            "type": "object"
          },
          "type": "array"
        }
      },
      "required": [
        "id",
        "nodes"
      ],
      "title": "path - DefaultPath",
      "type": "object"
    },
    "DefaultPhysicalLocation_485": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "x": {
          "type": "number"
        },
        "y": {
          "type": "number"
        },
        "z": {
          "type": "number"
        }
      },
      "required": [
        "x",
        "y",
        "z"
      ],
      "title": "location - DefaultPhysicalLocation",
      "type": "object"
    },
    "DefaultPhysicalSize_484": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "height": {
          "type": "number"
        },
        "length": {
          "anyOf": [
            {
              "type": "number"
            },
            {
              "type": "null"
            }
          ]
        },
        "unit": {
          "type": "string"
        },
        "width": {
          "type": "number"
        }
      },
      "required": [
        "height",
        "length",
        "unit",
        "width"
      ],
      "title": "physicalSize - DefaultPhysicalSize",
      "type": "object"
    },
    "DefaultProperties_486": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "location": {
          "$ref": "#/definitions/DefaultPhysicalLocation_485",
          "type": "object"
        },
        "orientation": {
          "type": "string"
        },
        "physicalSize": {
          "$ref": "#/definitions/DefaultPhysicalSize_484",
          "type": "object"
        },
        "precision": {
          "type": "number"
        }
      },
      "required": [
        "location",
        "orientation",
        "physicalSize",
        "precision"
      ],
      "title": "properties - DefaultProperties",
      "type": "object"
    },
    "DefaultReferenceImage_481": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "fileURL": {
          "type": "string"
        },
        "filename": {
          "type": "string"
        }
      },
      "required": [
        "fileURL",
        "filename"
      ],
      "title": "image - DefaultReferenceImage",
      "type": "object"
    },
    "DefaultReferenceImage_487": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "id": {
          "type": "integer"
        },
        "image": {
          "$ref": "#/definitions/DefaultReferenceImage_481",
          "type": "object"
        },
        "info": {
          "$ref": "#/definitions/DefaultInfo_482",
          "type": "object"
        },
        "properties": {
          "$ref": "#/definitions/DefaultProperties_486",
          "type": "object"
        }
      },
      "required": [
        "id",
        "image",
        "info",
        "properties"
      ],
      "title": "referenceImage - DefaultReferenceImage",
      "type": "object"
    },
    "DefaultRoomPreview3D_752": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "physicalSize": {
          "$ref": "#/definitions/DefaultPhysicalSize_484",
          "type": "object"
        },
        "walls": {
          "items": {
            "$ref": "#/definitions/DefaultWallRoomPreview3D_751",
            "type": "object"
          },
          "type": "array"
        }
      },
      "required": [
        "physicalSize",
        "walls"
      ],
      "title": "RoomPreview3D - DefaultRoomPreview3D",
      "type": "object"
    },
    "DefaultRoom_492": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "calendarId": {
          "type": "string"
        },
        "entryPointId": {
          "type": "integer"
        },
        "id": {
          "type": "integer"
        },
        "locations": {
          "items": {
            "$ref": "#/definitions/DefaultPhysicalLocation_485",
            "type": "object"
          },
          "type": "array"
        },
        "name": {
          "type": "string"
        },
        "physicalSize": {
          "$ref": "#/definitions/DefaultPhysicalSize_484",
          "type": "object"
        },
        "referenceImages": {
          "anyOf": [
            {
              "items": {
                "$ref": "#/definitions/DefaultReferenceImage_487",
                "type": "object"
              },
              "type": "array"
            },
            {
              "type": "null"
            }
          ]
        },
        "roomPreview3D": {
          "anyOf": [
            {
              "$ref": "#/definitions/DefaultRoomPreview3D_752",
              "type": "object"
            },
            {
              "type": "null"
            }
          ]
        }
      },
      "required": [
        "calendarId",
        "entryPointId",
        "id",
        "locations",
        "name",
        "physicalSize",
        "referenceImages",
        "roomPreview3D"
      ],
      "title": "room - DefaultRoom",
      "type": "object"
    },
    "DefaultWallRoomPreview3D_751": {
      "additionalProperties": false,
      "description": "Automatically generated (please edit me)",
      "properties": {
        "doorRoomPreview3D": {
          "anyOf": [
            {
              "$ref": "#/definitions/DefaultDoorRoomPreview3D_750",
              "type": "object"
            },
            {
              "type": "null"
            }
          ]
        },
        "physicalSize": {
          "$ref": "#/definitions/DefaultPhysicalSize_484",
          "type": "object"
        },
        "wallOrder": {
          "type": "integer"
        }
      },
      "required": [
        "doorRoomPreview3D",
        "physicalSize",
        "wallOrder"
      ],
      "title": "WallRoomPreview3D - DefaultWallRoomPreview3D",
      "type": "object"
    }
  },
  "description": "Automatically generated (please edit me)",
  "properties": {
    "floors": {
      "items": {
        "$ref": "#/definitions/DefaultFloor_490",
        "type": "object"
      },
      "type": "array"
    },
    "id": {
      "type": "integer"
    },
    "location": {
      "$ref": "#/definitions/DefaultPhysicalLocation_485",
      "description": "Building's location. \"y\" as latitude, \"x as longitude\" and \"z\" as ellipsoidalHeight.",
      "type": "object"
    },
    "name": {
      "type": "string"
    },
    "path": {
      "$ref": "#/definitions/DefaultPath_731",
      "type": "object"
    }
  },
  "required": [
    "floors",
    "id",
    "location",
    "name",
    "path"
  ],
  "title": "building - DefaultBuilding",
  "type": "object"
}

JSON instance

{
  "floors": [
    {
      "id": 57471660,
      "level": "adipisicing elit dolor ut",
      "physicalSize": {
        "height": 26821296.25418313,
        "length": 45551986.023218006,
        "unit": "sit laboris dolor do Excepteur",
        "width": 20471065.466156572
      },
      "referenceImages": [
        {
          "id": 91626596,
          "image": {
            "fileURL": "aliqua Lo",
            "filename": "in deserunt culpa commodo aliq"
          },
          "info": {
            "author": "cupidatat ea elit",
            "version": 80563269
          },
          "properties": {
            "location": {
              "x": 86999388.10448477,
              "y": 86621414.46765137,
              "z": 62662171.935088694
            },
            "orientation": "consectetur Ut aute qu",
            "physicalSize": {
              "height": 28590978.632220313,
              "length": 95624254.62104097,
              "unit": "pariatur Ut voluptate Lorem ad",
              "width": -88850191.94604355
            },
            "precision": -17327450.927801907
          }
        },
        {
          "id": 50061695,
          "image": {
            "fileURL": "f",
            "filename": "in cupidatat aute occaecat laboris"
          },
          "info": {
            "author": "esse amet an",
            "version": 7206681
          },
          "properties": {
            "location": {
              "x": -62973623.914327525,
              "y": 95109181.15793145,
              "z": -72092280.9464091
            },
            "orientation": "deserunt",
            "physicalSize": {
              "height": 92627242.28104249,
              "length": -35391160.46249653,
              "unit": "nulla fugiat laboris",
              "width": -25784938.543779925
            },
            "precision": 44685281.01133987
          }
        }
      ],
      "rooms": [
        {
          "calendarId": "irure dolor do quis",
          "entryPointId": -70173903,
          "id": 96623671,
          "locations": [
            {
              "x": 11069772.534602731,
              "y": 86084604.72913739,
              "z": 70834173.2025367
            },
            {
              "x": 15734160.914055824,
              "y": 66267598.34873596,
              "z": 28455331.85330589
            },
            {
              "x": 6571593.691011742,
              "y": -62165535.59370723,
              "z": 62651547.93933806
            },
            {
              "x": -31239653.0254357,
              "y": -48868857.11293676,
              "z": 93157202.65522382
            }
          ],
          "name": "sint",
          "physicalSize": {
            "height": -80116836.4862468,
            "length": null,
            "unit": "id magna labore",
            "width": 75392434.81037053
          },
          "referenceImages": null,
          "roomPreview3D": {
            "physicalSize": {
              "height": -10422610.81860523,
              "length": 43505276.11594576,
              "unit": "et",
              "width": 72230603.800066
            },
            "walls": [
              {
                "doorRoomPreview3D": {
                  "location": {
                    "x": -85456002.51536012,
                    "y": -62352457.48299203,
                    "z": -97783377.97150995
                  },
                  "physicalSize": {
                    "height": -26700101.12452519,
                    "length": -16023481.44718051,
                    "unit": "ea eiusmod anim",
                    "width": 60951840.57110545
                  }
                },
                "physicalSize": {
                  "height": -3855463.1585180163,
                  "length": 43859500.44669086,
                  "unit": "nostrud",
                  "width": 98249051.39093018
                },
                "wallOrder": 60979600
              },
              {
                "doorRoomPreview3D": null,
                "physicalSize": {
                  "height": -64676702.11088641,
                  "length": null,
                  "unit": "sed pariatur",
                  "width": 17983619.08690715
                },
                "wallOrder": -68958547
              },
              {
                "doorRoomPreview3D": {
                  "location": {
                    "x": -72249858.39517619,
                    "y": -9700289.110987857,
                    "z": -21795166.41625452
                  },
                  "physicalSize": {
                    "height": 42898460.829511106,
                    "length": null,
                    "unit": "Excepteur deserunt",
                    "width": 77587798.9916799
                  }
                },
                "physicalSize": {
                  "height": 88025213.6973724,
                  "length": null,
                  "unit": "fugiat laborum occaecat laboris",
                  "width": 96316626.43969351
                },
                "wallOrder": 17590146
              },
              {
                "doorRoomPreview3D": null,
                "physicalSize": {
                  "height": 88944090.79171294,
                  "length": null,
                  "unit": "proident Lorem",
                  "width": 68234969.07690787
                },
                "wallOrder": -3325979
              },
              {
                "doorRoomPreview3D": null,
                "physicalSize": {
                  "height": 57445688.87313247,
                  "length": null,
                  "unit": "amet labore",
                  "width": 88729816.89157769
                },
                "wallOrder": 93235707
              }
            ]
          }
        },
        {
          "calendarId": "culpa in Lorem enim",
          "entryPointId": 64891054,
          "id": 12635885,
          "locations": [
            {
              "x": -95383152.8117122,
              "y": -24463218.520793855,
              "z": -79946289.22575177
            },
            {
              "x": -34273612.66663334,
              "y": -29916891.074626014,
              "z": 73915511.13238579
            },
            {
              "x": 29921775.389228776,
              "y": -55552763.91706987,
              "z": -33846700.75294594
            }
          ],
          "name": "dolor",
          "physicalSize": {
            "height": -18144204.9343739,
            "length": -22984919.785855636,
            "unit": "quis pariatur magna non",
            "width": 43374087.00669849
          },
          "referenceImages": null,
          "roomPreview3D": null
        }
      ]
    }
  ],
  "id": 1987387,
  "location": {
    "x": -26326282.697737783,
    "y": -38350701.09761456,
    "z": -66981258.242570266
  },
  "name": "aute",
  "path": {
    "id": 90911613,
    "nodes": [
      {
        "connections": [
          -18595357,
          21008276,
          32301592
        ],
        "id": -24011991,
        "location": {
          "x": -25880575.970385462,
          "y": -56380336.1859871,
          "z": -44168881.14560251
        }
      },
      {
        "connections": [
          76358695
        ],
        "id": -1799916,
        "location": {
          "x": 64804080.748981714,
          "y": -92114934.5753928,
          "z": 22511918.37473336
        }
      },
      {
        "connections": [
          -58256964,
          64786003,
          -58345993,
          -39491738,
          32006237
        ],
        "id": 20901054,
        "location": {
          "x": 76677007.38922259,
          "y": -91152340.94641367,
          "z": 60654556.995841354
        }
      },
      {
        "connections": [
          28737767
        ],
        "id": 71695871,
        "location": {
          "x": -66453877.991386846,
          "y": -6421747.123902664,
          "z": 71088305.70699224
        }
      },
      {
        "connections": [
          -35265985,
          41151513,
          -57314949
        ],
        "id": -66482127,
        "location": {
          "x": -75178714.71615502,
          "y": -37536710.52175962,
          "z": -90325865.45653073
        }
      }
    ]
  }
}

Validation #431

Success

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

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "AdvancedCustomerSearchCustomerRep_222": {
      "additionalProperties": false,
      "properties": {
        "_version_": {
          "type": "integer"
        },
        "address1": {
          "type": "string"
        },
        "address2": {
          "type": "string"
        },
        "address3": {
          "type": "string"
        },
        "city": {
          "type": "string"
        },
        "closed": {
          "type": "string"
        },
        "countryCode": {
          "type": "string"
        },
        "countryLibelle": {
          "type": "string"
        },
        "creationDate": {
          "type": "string"
        },
        "customerId": {
          "pattern": "\\d*",
          "type": "string"
        },
        "eMail": {
          "type": "string"
        },
        "firstName1": {
          "type": "string"
        },
        "firstName2": {
          "type": "string"
        },
        "gender": {
          "type": "string"
        },
        "isCompany": {
          "type": "string"
        },
        "iterationIndex": {
          "type": "integer"
        },
        "lastName1": {
          "type": "string"
        },
        "lastName2": {
          "type": "string"
        },
        "passportNumber": {
          "type": "string"
        },
        "postCode": {
          "type": "string"
        },
        "resultIndex": {
          "type": "integer"
        },
        "score": {
          "type": "number"
        },
        "stateCode": {
          "type": "string"
        },
        "stateLibelle": {
          "type": "string"
        },
        "storeId": {
          "type": "string"
        },
        "storeName": {
          "type": "string"
        },
        "telephone1": {
          "type": "string"
        },
        "telephone2": {
          "type": "string"
        },
        "title": {
          "type": "string"
        }
      },
      "required": [
        "_version_",
        "address1",
        "address2",
        "address3",
        "city",
        "countryCode",
        "customerId",
        "firstName1",
        "gender",
        "isCompany",
        "iterationIndex",
        "lastName1",
        "postCode",
        "resultIndex",
        "score",
        "stateCode",
        "stateLibelle",
        "telephone1",
        "telephone2"
      ],
      "title": "Customer - AdvancedCustomerSearchCustomerRep",
      "type": "object"
    }
  },
  "description": "Automatically generated",
  "properties": {
    "customers": {
      "items": {
        "$ref": "#/definitions/AdvancedCustomerSearchCustomerRep_222",
        "type": "object"
      },
      "type": "array"
    },
    "hasMoreResults": {
      "type": "boolean"
    },
    "numFound": {
      "type": "string"
    },
    "responseTime": {
      "type": "integer"
    },
    "startIndex": {
      "type": "integer"
    }
  },
  "required": [
    "customers",
    "hasMoreResults",
    "numFound",
    "responseTime"
  ],
  "title": "CustomerAdvancedSearchRequestResponse - DefaultCustomeradvancedsearchrequestresponse",
  "type": "object"
}

JSON instance

{
  "customers": [
    {
      "_version_": 1605630601022406700,
      "address1": "門真市",
      "address2": "末広町35-9-402",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "2612-08-16T00:00:00Z",
      "customerId": "0128810032120",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "祐子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "ウルシバタ",
      "lastName2": "漆畑",
      "passportNumber": "",
      "postCode": "571-0030",
      "resultIndex": 0,
      "score": 1.4142135,
      "stateCode": "27",
      "stateLibelle": "大阪府",
      "storeId": "XL0",
      "storeName": "HANKYU UMEDA",
      "telephone1": "0669093917",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605628987518746600,
      "address1": "大阪市中央区",
      "address2": "難波千日前8-20",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "0213-08-14T00:00:00Z",
      "customerId": "0121700017859",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "佑子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "542-0075",
      "resultIndex": 1,
      "score": 1.4142135,
      "stateCode": "27",
      "stateLibelle": "大阪府",
      "storeId": "XN0",
      "storeName": "TAKASHIMAYA OSAKA",
      "telephone1": "09042735268",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605625077483700200,
      "address1": "",
      "address2": "",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1002-08-13T00:00:00Z",
      "customerId": "0121500005982",
      "eMail": "yuppeco-919@goo.jp",
      "firstName1": "ユウコ",
      "firstName2": "佑子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "",
      "resultIndex": 2,
      "score": 1.4142135,
      "stateCode": "",
      "stateLibelle": "",
      "storeId": "X70",
      "storeName": "SEIBU SHIBUYA",
      "telephone1": "09078673733",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605628285856776200,
      "address1": "座間市入谷",
      "address2": "5-2598-3",
      "address3": "ライオンズヒルズ1101",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0128780002694",
      "eMail": "lucky-chappy@nifty.com",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "2520024",
      "resultIndex": 3,
      "score": 1.4142135,
      "stateCode": "14",
      "stateLibelle": "神奈川県",
      "storeId": "XZ0",
      "storeName": "ONLINE STORE",
      "telephone1": "0462557354",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605631610308264000,
      "address1": "大阪市西成区",
      "address2": "南津守2-1-65",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "3004-08-17T00:00:00Z",
      "customerId": "0128700021560",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "557-0063",
      "resultIndex": 4,
      "score": 1.4142135,
      "stateCode": "27",
      "stateLibelle": "大阪府",
      "storeId": "XJ0",
      "storeName": "MIDOSUJI",
      "telephone1": "09053659000",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605623882547462100,
      "address1": "枚方市",
      "address2": "松丘町 22-9",
      "address3": "_",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "2402-08-13T00:00:00Z",
      "customerId": "0120900010857",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "573-0012",
      "resultIndex": 5,
      "score": 1.4142135,
      "stateCode": "27",
      "stateLibelle": "大阪府",
      "storeId": "XK0",
      "storeName": "HERMES HILTON PLAZA",
      "telephone1": "0728492909",
      "telephone2": "09019013421",
      "title": "J01"
    },
    {
      "_version_": 1605623967925665800,
      "address1": "新宿区",
      "address2": "大京町 28-1",
      "address3": "#1003",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0121000000382",
      "eMail": "_",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "160-0015",
      "resultIndex": 6,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "X50",
      "storeName": "ISETAN SHINJUKU",
      "telephone1": "0333529240",
      "telephone2": "_",
      "title": "J01"
    },
    {
      "_version_": 1605624077078233000,
      "address1": "新宿区",
      "address2": "大京町 28-1",
      "address3": "#1003",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0121000007876",
      "eMail": "shibayu.03@gmail.com",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "160-0015",
      "resultIndex": 7,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "XG0",
      "storeName": "ISETAN URAWA",
      "telephone1": "09016664223",
      "telephone2": "_",
      "title": "J01"
    },
    {
      "_version_": 1605624901581930500,
      "address1": "豊島区",
      "address2": "西池袋3丁目 21-13-3202",
      "address3": "_",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1705-08-13T00:00:00Z",
      "customerId": "0121400012621",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "171-0021",
      "resultIndex": 8,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "X40",
      "storeName": "SEIBU IKEBUKURO",
      "telephone1": "0339811889",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605625909999566800,
      "address1": "世田谷区",
      "address2": "瀬田1丁目 2-25",
      "address3": "#201",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1413-08-12T00:00:00Z",
      "customerId": "0121900004289",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "158-0095",
      "resultIndex": 9,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "XB0",
      "storeName": "TAKASHIMAYA TAMAGAWA",
      "telephone1": "0337073883",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605630907686846500,
      "address1": "5-2598-3",
      "address2": "",
      "address3": "ライオンズヒルズ1101",
      "city": "座間市入谷",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1403-08-17T00:00:00Z",
      "customerId": "0128786023447",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "2520024",
      "resultIndex": 10,
      "score": 1.4142135,
      "stateCode": "14",
      "stateLibelle": "神奈川県",
      "storeId": "XZ0",
      "storeName": "ONLINE STORE",
      "telephone1": "0462557354",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1608954842471989200,
      "address1": "名古屋市名東区",
      "address2": "富が丘141-1",
      "address3": "グリーシア102",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1109-08-18T00:00:00Z",
      "customerId": "0001840020138",
      "eMail": "u_06_v23@yahoo.co.jp",
      "firstName1": "ユウコ",
      "firstName2": "由布子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "465-0031",
      "resultIndex": 11,
      "score": 1.4142135,
      "stateCode": "23",
      "stateLibelle": "愛知県",
      "storeId": "XP0",
      "storeName": "MITSUKOSHI NAGOYA",
      "telephone1": "09056268243",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605629842726846500,
      "address1": "各務原市",
      "address2": "鵜沼山崎町8-64-1",
      "address3": "ユーフォリア新鵜沼305号",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "3109-08-15T00:00:00Z",
      "customerId": "0124200021096",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "祐子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "509-0124",
      "resultIndex": 12,
      "score": 1.4142135,
      "stateCode": "21",
      "stateLibelle": "岐阜県",
      "storeId": "XH0",
      "storeName": "JR NAGOYA TAKASHIMAYA",
      "telephone1": "0583852647",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605629343449481200,
      "address1": "練馬区",
      "address2": "光が丘3-3-9-1407",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1507-08-18T00:00:00Z",
      "customerId": "0121000064074",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "祐子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "179-0072",
      "resultIndex": 13,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "X50",
      "storeName": "ISETAN SHINJUKU",
      "telephone1": "09042432245",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605624400273473500,
      "address1": "千代田区",
      "address2": "丸の内2丁目 6-1",
      "address3": "三菱商事株式会社",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0121100000692",
      "eMail": "yuko.shibata@mitsubishicorp.com",
      "firstName1": "ユウコ",
      "firstName2": "裕子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "100-0005",
      "resultIndex": 14,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "X20",
      "storeName": "MARUNOUCHI",
      "telephone1": "0332104767",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605625855506120700,
      "address1": "世田谷区",
      "address2": "玉川4丁目 13-5",
      "address3": "#310",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0121900000868",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "裕子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "158-0094",
      "resultIndex": 15,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "XB0",
      "storeName": "TAKASHIMAYA TAMAGAWA",
      "telephone1": "0337095965",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605632670401822700,
      "address1": "横浜市青葉区",
      "address2": "松風台4-16",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1604-08-18T00:00:00Z",
      "customerId": "0121900017284",
      "eMail": "yukotaka76@gmail.com",
      "firstName1": "ユウコ",
      "firstName2": "裕子",
      "gender": "",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "227-0067",
      "resultIndex": 16,
      "score": 1.4142135,
      "stateCode": "14",
      "stateLibelle": "神奈川県",
      "storeId": "XB0",
      "storeName": "TAKASHIMAYA TAMAGAWA",
      "telephone1": "09011670855",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605630356389625900,
      "address1": "伊万里市",
      "address2": "松島町 383-10",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "2207-08-14T00:00:00Z",
      "customerId": "0122210009758",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "雄子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "848-0045",
      "resultIndex": 17,
      "score": 1.4142135,
      "stateCode": "41",
      "stateLibelle": "佐賀県",
      "storeId": "XV0",
      "storeName": "HANKYU HAKATA",
      "telephone1": "0955239467",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605630334369529900,
      "address1": "市川市",
      "address2": "八幡3-29-26",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "0902-08-16T00:00:00Z",
      "customerId": "0120800077776",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "芝田",
      "passportNumber": "",
      "postCode": "272-0021",
      "resultIndex": 18,
      "score": 1.4142135,
      "stateCode": "12",
      "stateLibelle": "千葉県",
      "storeId": "X10",
      "storeName": "GINZA",
      "telephone1": "09088088522",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605629370679951400,
      "address1": "市川市",
      "address2": "八幡3丁目 29-26",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1803-08-15T00:00:00Z",
      "customerId": "0121200012584",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "芝田",
      "passportNumber": "",
      "postCode": "272-0021",
      "resultIndex": 19,
      "score": 1.4142135,
      "stateCode": "12",
      "stateLibelle": "千葉県",
      "storeId": "XA0",
      "storeName": "MITSUKOSHI NIHONBASHI",
      "telephone1": "0473254056",
      "telephone2": "",
      "title": "J01"
    }
  ],
  "hasMoreResults": true,
  "numFound": "21",
  "responseTime": 1297,
  "startIndex": 20
}

Validation #430

Success

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

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "AdvancedCustomerSearchCustomerRep_222": {
      "additionalProperties": false,
      "properties": {
        "_version_": {
          "type": "integer"
        },
        "address1": {
          "type": "string"
        },
        "address2": {
          "type": "string"
        },
        "address3": {
          "type": "string"
        },
        "city": {
          "type": "string"
        },
        "closed": {
          "type": "string"
        },
        "countryCode": {
          "type": "string"
        },
        "countryLibelle": {
          "type": "string"
        },
        "creationDate": {
          "type": "string"
        },
        "customerId": {
          "pattern": "\\d*",
          "type": "string"
        },
        "eMail": {
          "type": "string"
        },
        "firstName1": {
          "type": "string"
        },
        "firstName2": {
          "type": "string"
        },
        "gender": {
          "type": "string"
        },
        "isCompany": {
          "type": "string"
        },
        "iterationIndex": {
          "type": "integer"
        },
        "lastName1": {
          "type": "string"
        },
        "lastName2": {
          "type": "string"
        },
        "passportNumber": {
          "type": "string"
        },
        "postCode": {
          "type": "string"
        },
        "resultIndex": {
          "type": "integer"
        },
        "score": {
          "type": "number"
        },
        "stateCode": {
          "type": "string"
        },
        "stateLibelle": {
          "type": "string"
        },
        "storeId": {
          "type": "string"
        },
        "storeName": {
          "type": "string"
        },
        "telephone1": {
          "type": "string"
        },
        "telephone2": {
          "type": "string"
        },
        "title": {
          "type": "string"
        }
      },
      "required": [
        "_version_",
        "address1",
        "address2",
        "address3",
        "city",
        "countryCode",
        "customerId",
        "firstName1",
        "gender",
        "isCompany",
        "iterationIndex",
        "lastName1",
        "postCode",
        "resultIndex",
        "score",
        "stateCode",
        "stateLibelle",
        "telephone1",
        "telephone2"
      ],
      "title": "Customer - AdvancedCustomerSearchCustomerRep",
      "type": "object"
    }
  },
  "description": "Automatically generated",
  "properties": {
    "customers": {
      "items": {
        "$ref": "#/definitions/AdvancedCustomerSearchCustomerRep_222",
        "type": "object"
      },
      "type": "array"
    },
    "hasMoreResults": {
      "type": "boolean"
    },
    "numFound": {
      "type": "string"
    },
    "responseTime": {
      "type": "integer"
    },
    "startIndex": {
      "type": "integer"
    }
  },
  "required": [
    "customers",
    "hasMoreResults",
    "numFound",
    "responseTime"
  ],
  "title": "CustomerAdvancedSearchRequestResponse - DefaultCustomeradvancedsearchrequestresponse",
  "type": "object"
}

JSON instance

{
  "customers": [
    {
      "_version_": 1605630601022406700,
      "address1": "門真市",
      "address2": "末広町35-9-402",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "2612-08-16T00:00:00Z",
      "customerId": "0128810032120",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "祐子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "ウルシバタ",
      "lastName2": "漆畑",
      "passportNumber": "",
      "postCode": "571-0030",
      "resultIndex": 0,
      "score": 1.4142135,
      "stateCode": "27",
      "stateLibelle": "大阪府",
      "storeId": "XL0",
      "storeName": "HANKYU UMEDA",
      "telephone1": "0669093917",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605628987518746600,
      "address1": "大阪市中央区",
      "address2": "難波千日前8-20",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "0213-08-14T00:00:00Z",
      "customerId": "0121700017859",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "佑子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "542-0075",
      "resultIndex": 1,
      "score": 1.4142135,
      "stateCode": "27",
      "stateLibelle": "大阪府",
      "storeId": "XN0",
      "storeName": "TAKASHIMAYA OSAKA",
      "telephone1": "09042735268",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605625077483700200,
      "address1": "",
      "address2": "",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1002-08-13T00:00:00Z",
      "customerId": "0121500005982",
      "eMail": "yuppeco-919@goo.jp",
      "firstName1": "ユウコ",
      "firstName2": "佑子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "",
      "resultIndex": 2,
      "score": 1.4142135,
      "stateCode": "",
      "stateLibelle": "",
      "storeId": "X70",
      "storeName": "SEIBU SHIBUYA",
      "telephone1": "09078673733",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605628285856776200,
      "address1": "座間市入谷",
      "address2": "5-2598-3",
      "address3": "ライオンズヒルズ1101",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0128780002694",
      "eMail": "lucky-chappy@nifty.com",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "2520024",
      "resultIndex": 3,
      "score": 1.4142135,
      "stateCode": "14",
      "stateLibelle": "神奈川県",
      "storeId": "XZ0",
      "storeName": "ONLINE STORE",
      "telephone1": "0462557354",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605631610308264000,
      "address1": "大阪市西成区",
      "address2": "南津守2-1-65",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "3004-08-17T00:00:00Z",
      "customerId": "0128700021560",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "557-0063",
      "resultIndex": 4,
      "score": 1.4142135,
      "stateCode": "27",
      "stateLibelle": "大阪府",
      "storeId": "XJ0",
      "storeName": "MIDOSUJI",
      "telephone1": "09053659000",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605623882547462100,
      "address1": "枚方市",
      "address2": "松丘町 22-9",
      "address3": "_",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "2402-08-13T00:00:00Z",
      "customerId": "0120900010857",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "573-0012",
      "resultIndex": 5,
      "score": 1.4142135,
      "stateCode": "27",
      "stateLibelle": "大阪府",
      "storeId": "XK0",
      "storeName": "HERMES HILTON PLAZA",
      "telephone1": "0728492909",
      "telephone2": "09019013421",
      "title": "J01"
    },
    {
      "_version_": 1605623967925665800,
      "address1": "新宿区",
      "address2": "大京町 28-1",
      "address3": "#1003",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0121000000382",
      "eMail": "_",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "160-0015",
      "resultIndex": 6,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "X50",
      "storeName": "ISETAN SHINJUKU",
      "telephone1": "0333529240",
      "telephone2": "_",
      "title": "J01"
    },
    {
      "_version_": 1605624077078233000,
      "address1": "新宿区",
      "address2": "大京町 28-1",
      "address3": "#1003",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0121000007876",
      "eMail": "shibayu.03@gmail.com",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "160-0015",
      "resultIndex": 7,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "XG0",
      "storeName": "ISETAN URAWA",
      "telephone1": "09016664223",
      "telephone2": "_",
      "title": "J01"
    },
    {
      "_version_": 1605624901581930500,
      "address1": "豊島区",
      "address2": "西池袋3丁目 21-13-3202",
      "address3": "_",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1705-08-13T00:00:00Z",
      "customerId": "0121400012621",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "171-0021",
      "resultIndex": 8,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "X40",
      "storeName": "SEIBU IKEBUKURO",
      "telephone1": "0339811889",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605625909999566800,
      "address1": "世田谷区",
      "address2": "瀬田1丁目 2-25",
      "address3": "#201",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1413-08-12T00:00:00Z",
      "customerId": "0121900004289",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "158-0095",
      "resultIndex": 9,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "XB0",
      "storeName": "TAKASHIMAYA TAMAGAWA",
      "telephone1": "0337073883",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605630907686846500,
      "address1": "5-2598-3",
      "address2": "",
      "address3": "ライオンズヒルズ1101",
      "city": "座間市入谷",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1403-08-17T00:00:00Z",
      "customerId": "0128786023447",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "2520024",
      "resultIndex": 10,
      "score": 1.4142135,
      "stateCode": "14",
      "stateLibelle": "神奈川県",
      "storeId": "XZ0",
      "storeName": "ONLINE STORE",
      "telephone1": "0462557354",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1608954842471989200,
      "address1": "名古屋市名東区",
      "address2": "富が丘141-1",
      "address3": "グリーシア102",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1109-08-18T00:00:00Z",
      "customerId": "0001840020138",
      "eMail": "u_06_v23@yahoo.co.jp",
      "firstName1": "ユウコ",
      "firstName2": "由布子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "465-0031",
      "resultIndex": 11,
      "score": 1.4142135,
      "stateCode": "23",
      "stateLibelle": "愛知県",
      "storeId": "XP0",
      "storeName": "MITSUKOSHI NAGOYA",
      "telephone1": "09056268243",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605629842726846500,
      "address1": "各務原市",
      "address2": "鵜沼山崎町8-64-1",
      "address3": "ユーフォリア新鵜沼305号",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "3109-08-15T00:00:00Z",
      "customerId": "0124200021096",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "祐子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "509-0124",
      "resultIndex": 12,
      "score": 1.4142135,
      "stateCode": "21",
      "stateLibelle": "岐阜県",
      "storeId": "XH0",
      "storeName": "JR NAGOYA TAKASHIMAYA",
      "telephone1": "0583852647",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605629343449481200,
      "address1": "練馬区",
      "address2": "光が丘3-3-9-1407",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1507-08-18T00:00:00Z",
      "customerId": "0121000064074",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "祐子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "179-0072",
      "resultIndex": 13,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "X50",
      "storeName": "ISETAN SHINJUKU",
      "telephone1": "09042432245",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605624400273473500,
      "address1": "千代田区",
      "address2": "丸の内2丁目 6-1",
      "address3": "三菱商事株式会社",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0121100000692",
      "eMail": "yuko.shibata@mitsubishicorp.com",
      "firstName1": "ユウコ",
      "firstName2": "裕子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "100-0005",
      "resultIndex": 14,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "X20",
      "storeName": "MARUNOUCHI",
      "telephone1": "0332104767",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605625855506120700,
      "address1": "世田谷区",
      "address2": "玉川4丁目 13-5",
      "address3": "#310",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0121900000868",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "裕子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "158-0094",
      "resultIndex": 15,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "XB0",
      "storeName": "TAKASHIMAYA TAMAGAWA",
      "telephone1": "0337095965",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605632670401822700,
      "address1": "横浜市青葉区",
      "address2": "松風台4-16",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1604-08-18T00:00:00Z",
      "customerId": "0121900017284",
      "eMail": "yukotaka76@gmail.com",
      "firstName1": "ユウコ",
      "firstName2": "裕子",
      "gender": "",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "227-0067",
      "resultIndex": 16,
      "score": 1.4142135,
      "stateCode": "14",
      "stateLibelle": "神奈川県",
      "storeId": "XB0",
      "storeName": "TAKASHIMAYA TAMAGAWA",
      "telephone1": "09011670855",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605630356389625900,
      "address1": "伊万里市",
      "address2": "松島町 383-10",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "2207-08-14T00:00:00Z",
      "customerId": "0122210009758",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "雄子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "848-0045",
      "resultIndex": 17,
      "score": 1.4142135,
      "stateCode": "41",
      "stateLibelle": "佐賀県",
      "storeId": "XV0",
      "storeName": "HANKYU HAKATA",
      "telephone1": "0955239467",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605630334369529900,
      "address1": "市川市",
      "address2": "八幡3-29-26",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "0902-08-16T00:00:00Z",
      "customerId": "0120800077776",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "芝田",
      "passportNumber": "",
      "postCode": "272-0021",
      "resultIndex": 18,
      "score": 1.4142135,
      "stateCode": "12",
      "stateLibelle": "千葉県",
      "storeId": "X10",
      "storeName": "GINZA",
      "telephone1": "09088088522",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605629370679951400,
      "address1": "市川市",
      "address2": "八幡3丁目 29-26",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1803-08-15T00:00:00Z",
      "customerId": "0121200012584",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "芝田",
      "passportNumber": "",
      "postCode": "272-0021",
      "resultIndex": 19,
      "score": 1.4142135,
      "stateCode": "12",
      "stateLibelle": "千葉県",
      "storeId": "XA0",
      "storeName": "MITSUKOSHI NIHONBASHI",
      "telephone1": "0473254056",
      "telephone2": "",
      "title": "J01"
    }
  ],
  "hasMoreResults": true,
  "numFound": "21",
  "responseTime": 1297,
  "startIndex": 20
}

Validation #429

Success

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

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "AdvancedCustomerSearchCustomerRep_222": {
      "additionalProperties": false,
      "properties": {
        "_version_": {
          "type": "integer"
        },
        "address1": {
          "type": "string"
        },
        "address2": {
          "type": "string"
        },
        "address3": {
          "type": "string"
        },
        "city": {
          "type": "string"
        },
        "closed": {
          "type": "string"
        },
        "countryCode": {
          "type": "string"
        },
        "countryLibelle": {
          "type": "string"
        },
        "creationDate": {
          "type": "string"
        },
        "customerId": {
          "pattern": "\\d*",
          "type": "string"
        },
        "eMail": {
          "type": "string"
        },
        "firstName1": {
          "type": "string"
        },
        "firstName2": {
          "type": "string"
        },
        "gender": {
          "type": "string"
        },
        "isCompany": {
          "type": "string"
        },
        "iterationIndex": {
          "type": "integer"
        },
        "lastName1": {
          "type": "string"
        },
        "lastName2": {
          "type": "string"
        },
        "passportNumber": {
          "type": "string"
        },
        "postCode": {
          "type": "string"
        },
        "resultIndex": {
          "type": "integer"
        },
        "score": {
          "type": "number"
        },
        "stateCode": {
          "type": "string"
        },
        "stateLibelle": {
          "type": "string"
        },
        "storeId": {
          "type": "string"
        },
        "storeName": {
          "type": "string"
        },
        "telephone1": {
          "type": "string"
        },
        "telephone2": {
          "type": "string"
        },
        "title": {
          "type": "string"
        }
      },
      "required": [
        "_version_",
        "address1",
        "address2",
        "address3",
        "city",
        "countryCode",
        "customerId",
        "firstName1",
        "gender",
        "isCompany",
        "iterationIndex",
        "lastName1",
        "postCode",
        "resultIndex",
        "score",
        "stateCode",
        "stateLibelle",
        "telephone1",
        "telephone2"
      ],
      "title": "Customer - AdvancedCustomerSearchCustomerRep",
      "type": "object"
    }
  },
  "description": "Automatically generated",
  "properties": {
    "customers": {
      "items": {
        "$ref": "#/definitions/AdvancedCustomerSearchCustomerRep_222",
        "type": "object"
      },
      "type": "array"
    },
    "hasMoreResults": {
      "type": "boolean"
    },
    "numFound": {
      "type": "string"
    },
    "responseTime": {
      "type": "integer"
    },
    "startIndex": {
      "type": "integer"
    }
  },
  "required": [
    "customers",
    "hasMoreResults",
    "numFound",
    "responseTime"
  ],
  "title": "CustomerAdvancedSearchRequestResponse - DefaultCustomeradvancedsearchrequestresponse",
  "type": "object"
}

JSON instance

{
  "customers": [
    {
      "_version_": 1605630601022406700,
      "address1": "門真市",
      "address2": "末広町35-9-402",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "2612-08-16T00:00:00Z",
      "customerId": "0128810032120",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "祐子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "ウルシバタ",
      "lastName2": "漆畑",
      "passportNumber": "",
      "postCode": "571-0030",
      "resultIndex": 0,
      "score": 1.4142135,
      "stateCode": "27",
      "stateLibelle": "大阪府",
      "storeId": "XL0",
      "storeName": "HANKYU UMEDA",
      "telephone1": "0669093917",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605628987518746600,
      "address1": "大阪市中央区",
      "address2": "難波千日前8-20",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "0213-08-14T00:00:00Z",
      "customerId": "0121700017859",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "佑子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "542-0075",
      "resultIndex": 1,
      "score": 1.4142135,
      "stateCode": "27",
      "stateLibelle": "大阪府",
      "storeId": "XN0",
      "storeName": "TAKASHIMAYA OSAKA",
      "telephone1": "09042735268",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605625077483700200,
      "address1": "",
      "address2": "",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1002-08-13T00:00:00Z",
      "customerId": "0121500005982",
      "eMail": "yuppeco-919@goo.jp",
      "firstName1": "ユウコ",
      "firstName2": "佑子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "",
      "resultIndex": 2,
      "score": 1.4142135,
      "stateCode": "",
      "stateLibelle": "",
      "storeId": "X70",
      "storeName": "SEIBU SHIBUYA",
      "telephone1": "09078673733",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605628285856776200,
      "address1": "座間市入谷",
      "address2": "5-2598-3",
      "address3": "ライオンズヒルズ1101",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0128780002694",
      "eMail": "lucky-chappy@nifty.com",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "2520024",
      "resultIndex": 3,
      "score": 1.4142135,
      "stateCode": "14",
      "stateLibelle": "神奈川県",
      "storeId": "XZ0",
      "storeName": "ONLINE STORE",
      "telephone1": "0462557354",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605631610308264000,
      "address1": "大阪市西成区",
      "address2": "南津守2-1-65",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "3004-08-17T00:00:00Z",
      "customerId": "0128700021560",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "557-0063",
      "resultIndex": 4,
      "score": 1.4142135,
      "stateCode": "27",
      "stateLibelle": "大阪府",
      "storeId": "XJ0",
      "storeName": "MIDOSUJI",
      "telephone1": "09053659000",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605623882547462100,
      "address1": "枚方市",
      "address2": "松丘町 22-9",
      "address3": "_",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "2402-08-13T00:00:00Z",
      "customerId": "0120900010857",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "573-0012",
      "resultIndex": 5,
      "score": 1.4142135,
      "stateCode": "27",
      "stateLibelle": "大阪府",
      "storeId": "XK0",
      "storeName": "HERMES HILTON PLAZA",
      "telephone1": "0728492909",
      "telephone2": "09019013421",
      "title": "J01"
    },
    {
      "_version_": 1605623967925665800,
      "address1": "新宿区",
      "address2": "大京町 28-1",
      "address3": "#1003",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0121000000382",
      "eMail": "_",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "160-0015",
      "resultIndex": 6,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "X50",
      "storeName": "ISETAN SHINJUKU",
      "telephone1": "0333529240",
      "telephone2": "_",
      "title": "J01"
    },
    {
      "_version_": 1605624077078233000,
      "address1": "新宿区",
      "address2": "大京町 28-1",
      "address3": "#1003",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0121000007876",
      "eMail": "shibayu.03@gmail.com",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "160-0015",
      "resultIndex": 7,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "XG0",
      "storeName": "ISETAN URAWA",
      "telephone1": "09016664223",
      "telephone2": "_",
      "title": "J01"
    },
    {
      "_version_": 1605624901581930500,
      "address1": "豊島区",
      "address2": "西池袋3丁目 21-13-3202",
      "address3": "_",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1705-08-13T00:00:00Z",
      "customerId": "0121400012621",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "171-0021",
      "resultIndex": 8,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "X40",
      "storeName": "SEIBU IKEBUKURO",
      "telephone1": "0339811889",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605625909999566800,
      "address1": "世田谷区",
      "address2": "瀬田1丁目 2-25",
      "address3": "#201",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1413-08-12T00:00:00Z",
      "customerId": "0121900004289",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "158-0095",
      "resultIndex": 9,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "XB0",
      "storeName": "TAKASHIMAYA TAMAGAWA",
      "telephone1": "0337073883",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605630907686846500,
      "address1": "5-2598-3",
      "address2": "",
      "address3": "ライオンズヒルズ1101",
      "city": "座間市入谷",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1403-08-17T00:00:00Z",
      "customerId": "0128786023447",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "2520024",
      "resultIndex": 10,
      "score": 1.4142135,
      "stateCode": "14",
      "stateLibelle": "神奈川県",
      "storeId": "XZ0",
      "storeName": "ONLINE STORE",
      "telephone1": "0462557354",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1608954842471989200,
      "address1": "名古屋市名東区",
      "address2": "富が丘141-1",
      "address3": "グリーシア102",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1109-08-18T00:00:00Z",
      "customerId": "0001840020138",
      "eMail": "u_06_v23@yahoo.co.jp",
      "firstName1": "ユウコ",
      "firstName2": "由布子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "465-0031",
      "resultIndex": 11,
      "score": 1.4142135,
      "stateCode": "23",
      "stateLibelle": "愛知県",
      "storeId": "XP0",
      "storeName": "MITSUKOSHI NAGOYA",
      "telephone1": "09056268243",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605629842726846500,
      "address1": "各務原市",
      "address2": "鵜沼山崎町8-64-1",
      "address3": "ユーフォリア新鵜沼305号",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "3109-08-15T00:00:00Z",
      "customerId": "0124200021096",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "祐子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "509-0124",
      "resultIndex": 12,
      "score": 1.4142135,
      "stateCode": "21",
      "stateLibelle": "岐阜県",
      "storeId": "XH0",
      "storeName": "JR NAGOYA TAKASHIMAYA",
      "telephone1": "0583852647",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605629343449481200,
      "address1": "練馬区",
      "address2": "光が丘3-3-9-1407",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1507-08-18T00:00:00Z",
      "customerId": "0121000064074",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "祐子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "179-0072",
      "resultIndex": 13,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "X50",
      "storeName": "ISETAN SHINJUKU",
      "telephone1": "09042432245",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605624400273473500,
      "address1": "千代田区",
      "address2": "丸の内2丁目 6-1",
      "address3": "三菱商事株式会社",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0121100000692",
      "eMail": "yuko.shibata@mitsubishicorp.com",
      "firstName1": "ユウコ",
      "firstName2": "裕子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "100-0005",
      "resultIndex": 14,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "X20",
      "storeName": "MARUNOUCHI",
      "telephone1": "0332104767",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605625855506120700,
      "address1": "世田谷区",
      "address2": "玉川4丁目 13-5",
      "address3": "#310",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0121900000868",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "裕子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "158-0094",
      "resultIndex": 15,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "XB0",
      "storeName": "TAKASHIMAYA TAMAGAWA",
      "telephone1": "0337095965",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605632670401822700,
      "address1": "横浜市青葉区",
      "address2": "松風台4-16",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1604-08-18T00:00:00Z",
      "customerId": "0121900017284",
      "eMail": "yukotaka76@gmail.com",
      "firstName1": "ユウコ",
      "firstName2": "裕子",
      "gender": "",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "227-0067",
      "resultIndex": 16,
      "score": 1.4142135,
      "stateCode": "14",
      "stateLibelle": "神奈川県",
      "storeId": "XB0",
      "storeName": "TAKASHIMAYA TAMAGAWA",
      "telephone1": "09011670855",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605630356389625900,
      "address1": "伊万里市",
      "address2": "松島町 383-10",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "2207-08-14T00:00:00Z",
      "customerId": "0122210009758",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "雄子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "848-0045",
      "resultIndex": 17,
      "score": 1.4142135,
      "stateCode": "41",
      "stateLibelle": "佐賀県",
      "storeId": "XV0",
      "storeName": "HANKYU HAKATA",
      "telephone1": "0955239467",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605630334369529900,
      "address1": "市川市",
      "address2": "八幡3-29-26",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "0902-08-16T00:00:00Z",
      "customerId": "0120800077776",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "芝田",
      "passportNumber": "",
      "postCode": "272-0021",
      "resultIndex": 18,
      "score": 1.4142135,
      "stateCode": "12",
      "stateLibelle": "千葉県",
      "storeId": "X10",
      "storeName": "GINZA",
      "telephone1": "09088088522",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605629370679951400,
      "address1": "市川市",
      "address2": "八幡3丁目 29-26",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1803-08-15T00:00:00Z",
      "customerId": "0121200012584",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "芝田",
      "passportNumber": "",
      "postCode": "272-0021",
      "resultIndex": 19,
      "score": 1.4142135,
      "stateCode": "12",
      "stateLibelle": "千葉県",
      "storeId": "XA0",
      "storeName": "MITSUKOSHI NIHONBASHI",
      "telephone1": "0473254056",
      "telephone2": "",
      "title": "J01"
    }
  ],
  "hasMoreResults": true,
  "numFound": "21",
  "responseTime": 1297,
  "startIndex": 20
}

Validation #428

Success

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

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "AdvancedCustomerSearchCustomerRep_222": {
      "additionalProperties": false,
      "properties": {
        "_version_": {
          "type": "integer"
        },
        "address1": {
          "type": "string"
        },
        "address2": {
          "type": "string"
        },
        "address3": {
          "type": "string"
        },
        "city": {
          "type": "string"
        },
        "closed": {
          "type": "string"
        },
        "countryCode": {
          "type": "string"
        },
        "countryLibelle": {
          "type": "string"
        },
        "creationDate": {
          "type": "string"
        },
        "customerId": {
          "pattern": "\\d*",
          "type": "string"
        },
        "eMail": {
          "type": "string"
        },
        "firstName1": {
          "type": "string"
        },
        "firstName2": {
          "type": "string"
        },
        "gender": {
          "type": "string"
        },
        "isCompany": {
          "type": "string"
        },
        "iterationIndex": {
          "type": "integer"
        },
        "lastName1": {
          "type": "string"
        },
        "lastName2": {
          "type": "string"
        },
        "passportNumber": {
          "type": "string"
        },
        "postCode": {
          "type": "string"
        },
        "resultIndex": {
          "type": "integer"
        },
        "score": {
          "type": "number"
        },
        "stateCode": {
          "type": "string"
        },
        "stateLibelle": {
          "type": "string"
        },
        "storeId": {
          "type": "string"
        },
        "storeName": {
          "type": "string"
        },
        "telephone1": {
          "type": "string"
        },
        "telephone2": {
          "type": "string"
        },
        "title": {
          "type": "string"
        }
      },
      "required": [
        "_version_",
        "address1",
        "address2",
        "address3",
        "city",
        "countryCode",
        "customerId",
        "firstName1",
        "gender",
        "isCompany",
        "iterationIndex",
        "lastName1",
        "postCode",
        "resultIndex",
        "score",
        "stateCode",
        "stateLibelle",
        "telephone1",
        "telephone2"
      ],
      "title": "Customer - AdvancedCustomerSearchCustomerRep",
      "type": "object"
    }
  },
  "description": "Automatically generated",
  "properties": {
    "customers": {
      "items": {
        "$ref": "#/definitions/AdvancedCustomerSearchCustomerRep_222",
        "type": "object"
      },
      "type": "array"
    },
    "hasMoreResults": {
      "type": "boolean"
    },
    "numFound": {
      "type": "string"
    },
    "responseTime": {
      "type": "integer"
    },
    "startIndex": {
      "type": "integer"
    }
  },
  "required": [
    "customers",
    "hasMoreResults",
    "numFound",
    "responseTime"
  ],
  "title": "CustomerAdvancedSearchRequestResponse - DefaultCustomeradvancedsearchrequestresponse",
  "type": "object"
}

JSON instance

{
  "customers": [
    {
      "_version_": 1605630601022406700,
      "address1": "門真市",
      "address2": "末広町35-9-402",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "2612-08-16T00:00:00Z",
      "customerId": "0128810032120",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "祐子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "ウルシバタ",
      "lastName2": "漆畑",
      "passportNumber": "",
      "postCode": "571-0030",
      "resultIndex": 0,
      "score": 1.4142135,
      "stateCode": "27",
      "stateLibelle": "大阪府",
      "storeId": "XL0",
      "storeName": "HANKYU UMEDA",
      "telephone1": "0669093917",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605628987518746600,
      "address1": "大阪市中央区",
      "address2": "難波千日前8-20",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "0213-08-14T00:00:00Z",
      "customerId": "0121700017859",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "佑子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "542-0075",
      "resultIndex": 1,
      "score": 1.4142135,
      "stateCode": "27",
      "stateLibelle": "大阪府",
      "storeId": "XN0",
      "storeName": "TAKASHIMAYA OSAKA",
      "telephone1": "09042735268",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605625077483700200,
      "address1": "",
      "address2": "",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1002-08-13T00:00:00Z",
      "customerId": "0121500005982",
      "eMail": "yuppeco-919@goo.jp",
      "firstName1": "ユウコ",
      "firstName2": "佑子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "",
      "resultIndex": 2,
      "score": 1.4142135,
      "stateCode": "",
      "stateLibelle": "",
      "storeId": "X70",
      "storeName": "SEIBU SHIBUYA",
      "telephone1": "09078673733",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605628285856776200,
      "address1": "座間市入谷",
      "address2": "5-2598-3",
      "address3": "ライオンズヒルズ1101",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0128780002694",
      "eMail": "lucky-chappy@nifty.com",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "2520024",
      "resultIndex": 3,
      "score": 1.4142135,
      "stateCode": "14",
      "stateLibelle": "神奈川県",
      "storeId": "XZ0",
      "storeName": "ONLINE STORE",
      "telephone1": "0462557354",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605631610308264000,
      "address1": "大阪市西成区",
      "address2": "南津守2-1-65",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "3004-08-17T00:00:00Z",
      "customerId": "0128700021560",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "557-0063",
      "resultIndex": 4,
      "score": 1.4142135,
      "stateCode": "27",
      "stateLibelle": "大阪府",
      "storeId": "XJ0",
      "storeName": "MIDOSUJI",
      "telephone1": "09053659000",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605623882547462100,
      "address1": "枚方市",
      "address2": "松丘町 22-9",
      "address3": "_",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "2402-08-13T00:00:00Z",
      "customerId": "0120900010857",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "573-0012",
      "resultIndex": 5,
      "score": 1.4142135,
      "stateCode": "27",
      "stateLibelle": "大阪府",
      "storeId": "XK0",
      "storeName": "HERMES HILTON PLAZA",
      "telephone1": "0728492909",
      "telephone2": "09019013421",
      "title": "J01"
    },
    {
      "_version_": 1605623967925665800,
      "address1": "新宿区",
      "address2": "大京町 28-1",
      "address3": "#1003",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0121000000382",
      "eMail": "_",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "160-0015",
      "resultIndex": 6,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "X50",
      "storeName": "ISETAN SHINJUKU",
      "telephone1": "0333529240",
      "telephone2": "_",
      "title": "J01"
    },
    {
      "_version_": 1605624077078233000,
      "address1": "新宿区",
      "address2": "大京町 28-1",
      "address3": "#1003",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0121000007876",
      "eMail": "shibayu.03@gmail.com",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "160-0015",
      "resultIndex": 7,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "XG0",
      "storeName": "ISETAN URAWA",
      "telephone1": "09016664223",
      "telephone2": "_",
      "title": "J01"
    },
    {
      "_version_": 1605624901581930500,
      "address1": "豊島区",
      "address2": "西池袋3丁目 21-13-3202",
      "address3": "_",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1705-08-13T00:00:00Z",
      "customerId": "0121400012621",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "171-0021",
      "resultIndex": 8,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "X40",
      "storeName": "SEIBU IKEBUKURO",
      "telephone1": "0339811889",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605625909999566800,
      "address1": "世田谷区",
      "address2": "瀬田1丁目 2-25",
      "address3": "#201",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1413-08-12T00:00:00Z",
      "customerId": "0121900004289",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "158-0095",
      "resultIndex": 9,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "XB0",
      "storeName": "TAKASHIMAYA TAMAGAWA",
      "telephone1": "0337073883",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605630907686846500,
      "address1": "5-2598-3",
      "address2": "",
      "address3": "ライオンズヒルズ1101",
      "city": "座間市入谷",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1403-08-17T00:00:00Z",
      "customerId": "0128786023447",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "2520024",
      "resultIndex": 10,
      "score": 1.4142135,
      "stateCode": "14",
      "stateLibelle": "神奈川県",
      "storeId": "XZ0",
      "storeName": "ONLINE STORE",
      "telephone1": "0462557354",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1608954842471989200,
      "address1": "名古屋市名東区",
      "address2": "富が丘141-1",
      "address3": "グリーシア102",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1109-08-18T00:00:00Z",
      "customerId": "0001840020138",
      "eMail": "u_06_v23@yahoo.co.jp",
      "firstName1": "ユウコ",
      "firstName2": "由布子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "465-0031",
      "resultIndex": 11,
      "score": 1.4142135,
      "stateCode": "23",
      "stateLibelle": "愛知県",
      "storeId": "XP0",
      "storeName": "MITSUKOSHI NAGOYA",
      "telephone1": "09056268243",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605629842726846500,
      "address1": "各務原市",
      "address2": "鵜沼山崎町8-64-1",
      "address3": "ユーフォリア新鵜沼305号",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "3109-08-15T00:00:00Z",
      "customerId": "0124200021096",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "祐子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "509-0124",
      "resultIndex": 12,
      "score": 1.4142135,
      "stateCode": "21",
      "stateLibelle": "岐阜県",
      "storeId": "XH0",
      "storeName": "JR NAGOYA TAKASHIMAYA",
      "telephone1": "0583852647",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605629343449481200,
      "address1": "練馬区",
      "address2": "光が丘3-3-9-1407",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1507-08-18T00:00:00Z",
      "customerId": "0121000064074",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "祐子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "179-0072",
      "resultIndex": 13,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "X50",
      "storeName": "ISETAN SHINJUKU",
      "telephone1": "09042432245",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605624400273473500,
      "address1": "千代田区",
      "address2": "丸の内2丁目 6-1",
      "address3": "三菱商事株式会社",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0121100000692",
      "eMail": "yuko.shibata@mitsubishicorp.com",
      "firstName1": "ユウコ",
      "firstName2": "裕子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "100-0005",
      "resultIndex": 14,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "X20",
      "storeName": "MARUNOUCHI",
      "telephone1": "0332104767",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605625855506120700,
      "address1": "世田谷区",
      "address2": "玉川4丁目 13-5",
      "address3": "#310",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1313-08-12T00:00:00Z",
      "customerId": "0121900000868",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "裕子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "158-0094",
      "resultIndex": 15,
      "score": 1.4142135,
      "stateCode": "13",
      "stateLibelle": "東京都",
      "storeId": "XB0",
      "storeName": "TAKASHIMAYA TAMAGAWA",
      "telephone1": "0337095965",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605632670401822700,
      "address1": "横浜市青葉区",
      "address2": "松風台4-16",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1604-08-18T00:00:00Z",
      "customerId": "0121900017284",
      "eMail": "yukotaka76@gmail.com",
      "firstName1": "ユウコ",
      "firstName2": "裕子",
      "gender": "",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "227-0067",
      "resultIndex": 16,
      "score": 1.4142135,
      "stateCode": "14",
      "stateLibelle": "神奈川県",
      "storeId": "XB0",
      "storeName": "TAKASHIMAYA TAMAGAWA",
      "telephone1": "09011670855",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605630356389625900,
      "address1": "伊万里市",
      "address2": "松島町 383-10",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "2207-08-14T00:00:00Z",
      "customerId": "0122210009758",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "雄子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "柴田",
      "passportNumber": "",
      "postCode": "848-0045",
      "resultIndex": 17,
      "score": 1.4142135,
      "stateCode": "41",
      "stateLibelle": "佐賀県",
      "storeId": "XV0",
      "storeName": "HANKYU HAKATA",
      "telephone1": "0955239467",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605630334369529900,
      "address1": "市川市",
      "address2": "八幡3-29-26",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "0902-08-16T00:00:00Z",
      "customerId": "0120800077776",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "芝田",
      "passportNumber": "",
      "postCode": "272-0021",
      "resultIndex": 18,
      "score": 1.4142135,
      "stateCode": "12",
      "stateLibelle": "千葉県",
      "storeId": "X10",
      "storeName": "GINZA",
      "telephone1": "09088088522",
      "telephone2": "",
      "title": "J01"
    },
    {
      "_version_": 1605629370679951400,
      "address1": "市川市",
      "address2": "八幡3丁目 29-26",
      "address3": "",
      "city": "",
      "closed": "-",
      "countryCode": "JP",
      "countryLibelle": "JAPON",
      "creationDate": "1803-08-15T00:00:00Z",
      "customerId": "0121200012584",
      "eMail": "",
      "firstName1": "ユウコ",
      "firstName2": "優子",
      "gender": "F",
      "isCompany": "X",
      "iterationIndex": 0,
      "lastName1": "シバタ",
      "lastName2": "芝田",
      "passportNumber": "",
      "postCode": "272-0021",
      "resultIndex": 19,
      "score": 1.4142135,
      "stateCode": "12",
      "stateLibelle": "千葉県",
      "storeId": "XA0",
      "storeName": "MITSUKOSHI NIHONBASHI",
      "telephone1": "0473254056",
      "telephone2": "",
      "title": "J01"
    }
  ],
  "hasMoreResults": true,
  "numFound": "21",
  "responseTime": 1297,
  "startIndex": 20
}

Validation #427

Success

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

JSON Schema

{
  "additionalProperties": false,
  "definitions": {
    "AdvancedCustomerSearchCustomerRep_222": {
      "additionalProperties": false,
      "properties": {
        "_version_": {
          "type": "integer"
        },
        "address1": {
          "type": "string"
        },
        "address2": {
          "type": "string"
        },
        "address3": {
          "type": "string"
        },
        "city": {
          "type": "string"
        },
        "closed": {
          "type": "string"
        },
        "countryCode": {
          "type": "string"
        },
        "countryLibelle": {
          "type": "string"
        },
        "creationDate": {
          "type": "string"
        },
        "customerId": {
          "pattern": "\\d*",
          "type": "string"
        },
        "eMail": {
          "type": "string"
        },
        "firstName1": {
          "type": "string"
        },
        "firstName2": {
          "type": "string"
        },
        "gender": {
          "type": "string"
        },
        "isCompany": {
          "type": "string"
        },
        "iterationIndex": {
          "type": "integer"
        },
        "lastName1": {
          "type": "string"
        },
        "lastName2": {
          "type": "string"
        },
        "passportNumber": {
          "type": "string"
        },
        "postCode": {
          "type": "string"
        },
        "resultIndex": {
          "type": "integer"
        },
        "score": {
          "type": "number"
        },
        "stateCode": {
          "type": "string"
        },
        "stateLibelle": {
          "type": "string"
        },
        "storeId": {
          "type": "string"
        },
        "storeName": {
          "type": "string"
        },
        "telephone1": {
          "type": "string"
        },
        "telephone2": {
          "type": "string"
        },
        "title": {
          "type": "string"
        }
      },
      "required": [
        "_version_",
        "address1",
        "address2",
        "address3",
        "city",
        "countryCode",
        "customerId",
        "firstName1",
        "gender",
        "isCompany",
        "iterationIndex",
        "lastName1",
        "postCode",
        "resultIndex",
        "score",
        "stateCode",
        "stateLibelle",
        "telephone1",
        "telephone2"
      ],
      "title": "Customer - AdvancedCustomerSearchCustomerRep",
      "type": "object"
    }
  },
  "description": "Automatically generated",
  "properties": {
    "customers": {
      "items": {
        "$ref": "#/definitions/AdvancedCustomerSearchCustomerRep_222",
        "type": "object"
      },
      "type": "array"
    },
    "hasMoreResults": {
      "type": "boolean"
    },
    "numFound": {
      "type": "string"
    },
    "responseTime": {
      "type": "integer"
    },
    "startIndex": {
      "type": "integer"
    }
  },
  "required": [
    "customers",
    "hasMoreResults",
    "numFound",
    "responseTime"
  ],
  "title": "CustomerAdvancedSearchRequestResponse - DefaultCustomeradvancedsearchrequestresponse",
  "type": "object"
}

JSON instance

{
  "customers": [
    {
      "_version_": 76462647,
      "address1": "fugiat elit sed exercitation reprehenderit",
      "address2": "id consectetur",
      "address3": "commodo minim in dolore",
      "city": "ea eu aliquip enim",
      "countryCode": "nulla eiusmod esse dolore mollit",
      "customerId": "98",
      "firstName1": "ipsum labore reprehenderit",
      "gender": "dolor reprehenderit",
      "isCompany": "conseq",
      "iterationIndex": 63231015,
      "lastName1": "fugiat in",
      "postCode": "",
      "resultIndex": -91950463,
      "score": -40166224.14120405,
      "stateCode": "deserunt non pa",
      "stateLibelle": "non labore dolore",
      "telephone1": "nostrud officia",
      "telephone2": "elit aliquip reprehenderit aliqua"
    }
  ],
  "hasMoreResults": true,
  "numFound": "Lorem in qui reprehenderit",
  "responseTime": 33609153
}

Validation #426

Success

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

JSON Schema

{
  "additionalProperties": false,
  "description": "Automatically generated",
  "properties": {
    "app": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "maxResults": {
      "type": "integer"
    },
    "passportNumber": {
      "type": "string"
    },
    "password": {
      "type": "string"
    },
    "postCode": {
      "type": "string"
    },
    "startIndex": {
      "type": "integer"
    },
    "state": {
      "type": "string"
    },
    "subsidiaryId": {
      "type": "string"
    },
    "telephone": {
      "type": "string"
    },
    "text": {
      "type": "string"
    },
    "user": {
      "type": "string"
    },
    "username": {
      "type": "string"
    }
  },
  "required": [
    "app",
    "maxResults",
    "password",
    "startIndex",
    "subsidiaryId",
    "user",
    "username"
  ],
  "title": "CustomerSearchResult - DefaultCustomeradvancedsearchrequest",
  "type": "object"
}

JSON instance

{
  "app": "mollit",
  "maxResults": -63034222,
  "password": "consequat adipisicing",
  "startIndex": -37824418,
  "subsidiaryId": "elit eiusmod ex esse",
  "user": "laboris consequat elit et velit",
  "username": "non laborum veniam"
}