1{ 2 "$id": "https://example.com/person.schema.json", 3 "$schema": "http://json-schema.org/draft-07/schema#", 4 "title": "Person", 5 "type": "object", 6 "properties": { 7 "firstName": { 8 "type": "string" 9 }, 10 "lastName": { 11 "type": "string" 12 }, 13 "age": { 14 "type": "integer", 15 "minimum": 0 16 } 17 }, 18 "oneOf": [ 19 { 20 "properties": { 21 "firstName": { 22 "const": "John" 23 } 24 } 25 }, 26 { 27 "properties": { 28 "lastName": { 29 "const": "Doe" 30 } 31 } 32 } 33 ] 34} 35 36