dependentRequired (bidirectional)
- Viewer
 - JSON Schema
 
Loading ....
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "credit_card": {
      "type": "number"
    },
    "billing_address": {
      "type": "string"
    }
  },
  "required": [
    "name"
  ],
  "dependentRequired": {
    "credit_card": [
      "billing_address"
    ],
    "billing_address": [
      "credit_card"
    ]
  }
}