mirror of
				https://github.com/Mibew/simple-icons.git
				synced 2025-10-31 10:31:06 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| {
 | |
|     "title": "SimpleIcons icons",
 | |
|     "type": "object",
 | |
|     "properties": {
 | |
|         "icons": {
 | |
|             "description": "The actual 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?://",
 | |
|                         "required": true
 | |
|                     }
 | |
|                 },
 | |
|                 "required": true
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 |