mirror of
				https://github.com/Mibew/simple-icons.git
				synced 2025-10-31 02:25:59 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.3 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
 | |
|           },
 | |
|           "slug": {
 | |
|             "description": "The brand name slug (used as filename in icons/)",
 | |
|             "type": "string",
 | |
|             "pattern": "^[a-z0-9\\-]+_[a-z0-9\\-]+$",
 | |
|             "required": false
 | |
|           },
 | |
|           "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
 | |
|           },
 | |
|           "guidelines": {
 | |
|             "description": "The brand guidelines for the icon and/or color",
 | |
|             "type": "string",
 | |
|             "pattern": "^https?://[^\\s]+$",
 | |
|             "required": false
 | |
|           }
 | |
|         },
 | |
|         "required": true
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| }
 |