The input JSON schema validates the input JSON instance (JSON Schema Draft 4).
{
"additionalProperties": false,
"definitions": {},
"properties": {
"customerId": {
"pattern": "\\d*",
"type": "string"
},
"password": {
"description": "Used for authentication",
"type": "string"
},
"subsidiaryId": {
"type": "string"
},
"user": {
"description": "Used for authentication",
"type": "string"
}
},
"required": [
"customerId",
"password",
"user",
"subsidiaryId"
],
"title": "Customer - customerIdWithAuth",
"type": "object"
}
{
"customerId": "3155366",
"password": "exerc",
"subsidiaryId": "culpa ut ullamco",
"user": "fugiat nostrud minim"
}