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 }, 11 "required": [ 12 "dsn" 13 ] 14}
View as plain text