mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-17 19:04:13 +03:00
a4ca74602f
* Remove .travis.yml reference from .gitattributes * Minor refactoring of .svglintrc.js - Remove unused variables - Fix missing semi-colons - Remove unneeded indentation * Prevent error in clean command due to missing files * Fix indentations * Further improvements to Editorconfig and indentation * Format YAML files - Update indentation for array notation - Normalize use of newlines
35 lines
856 B
Plaintext
35 lines
856 B
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
|
|
}
|
|
}
|
|
}
|
|
}
|