Increase specificity of source URL pattern for JSONLint (#1502)

* Increase specificity of source URL pattern for JSONLint

... to catch issues such as in #1494

* Temporary reversion of 7704018 for testing

* Revert e44bf83

* Reduce JSON schema url pattern specifity to just not allowing spaces

* Temporary reversion of 7704018 for testing

* Revert aa805e0a
This commit is contained in:
Eric Cornelissen 2019-07-03 22:37:06 +01:00 committed by Johan Fagerberg
parent 287317b7b6
commit b9ca77b19e

View file

@ -23,7 +23,7 @@
"source": { "source": {
"description": "The website from which the icon originated", "description": "The website from which the icon originated",
"type": "string", "type": "string",
"pattern": "^https?://", "pattern": "^https?://[^\\s]+$",
"required": true "required": true
} }
}, },