skip to Main Content

If-then condition in JSON Schema isn't working

Following is the jsonSchema. { "$schema": "http://json-schema.org/draft-07/schema#", "type": "array", "items": [ { "type": "object", "properties": { "isMerchant": { "type": "boolean" }, "isAgent": { "type": "boolean" }, "cashLoan": { "type": "boolean" }, "personalDetail": { "type": "string" }, "contact": { "type": "object",…

VIEW QUESTION
Back To Top
Search