2017-09-13 17:21:34 +03:00
|
|
|
{
|
2017-09-13 22:44:59 +03:00
|
|
|
"title": "Simple Icons",
|
2017-09-13 17:21:34 +03:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"icons": {
|
2017-09-13 22:44:59 +03:00
|
|
|
"description": "The list of icons",
|
2017-09-13 17:21:34 +03:00
|
|
|
"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",
|
2019-07-04 00:37:06 +03:00
|
|
|
"pattern": "^https?://[^\\s]+$",
|
2017-09-13 17:21:34 +03:00
|
|
|
"required": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|