mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-15 18:04:12 +03:00
b9ca77b19e
* Increase specificity of source URL pattern for JSONLint ... to catch issues such as in #1494 * Temporary reversion of7704018
for testing * Revert e44bf83 * Reduce JSON schema url pattern specifity to just not allowing spaces * Temporary reversion of7704018
for testing * Revert aa805e0a
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
{
|
|
"title": "Simple Icons",
|
|
"type": "object",
|
|
"properties": {
|
|
"icons": {
|
|
"description": "The list of icons",
|
|
"type": "array",
|
|
"items": {
|
|
"description": "A single icon",
|
|
"type": "object",
|
|
"properties": {
|
|
"title": {
|
|
"description": "The icons name",
|
|
"type": "string",
|
|
"required": true
|
|
},
|
|
"hex": {
|
|
"description": "The icons color, as HEX (without #)",
|
|
"type": "string",
|
|
"pattern": "^[0-9A-F]{6}$",
|
|
"required": true
|
|
},
|
|
"source": {
|
|
"description": "The website from which the icon originated",
|
|
"type": "string",
|
|
"pattern": "^https?://[^\\s]+$",
|
|
"required": true
|
|
}
|
|
},
|
|
"required": true
|
|
}
|
|
}
|
|
}
|
|
}
|