1{ 2 "$id": "https://example.com/person.schema.json", 3 "$schema": "https://json-schema.org/draft/2020-12/schema#", 4 "type": "object", 5 "definitions": { 6 "example": { 7 "$anchor": "example", 8 "type": "string", 9 "enum": [ 10 "A", "B" 11 ] 12 } 13 } 14} 15