1{ 2 "$id": "https://example.com/config.schema.json", 3 "$schema": "http://json-schema.org/draft-07/schema#", 4 "title": "config", 5 "type": "object", 6 "properties": { 7 "dsn": { 8 "type": "string" 9 }, 10 "foo": { 11 "const": "bar" 12 }, 13 "bar": { 14 "type": "string", 15 "enum": [ 16 "foo", 17 "bar", 18 "baz" 19 ] 20 } 21 }, 22 "required": [ 23 "dsn" 24 ] 25}