feat: narrowed type for categories in icon.schema.json (#2126)

authored by Jakob Guddas and committed by GitHub 5647b345 439e4634

Changed files
+49 -1
+49 -1
icon.schema.json
··· 53 53 "categories": { 54 54 "type": "array", 55 55 "items": { 56 - "type": "string" 56 + "type": "string", 57 + "enum": [ 58 + "accessibility", 59 + "account", 60 + "animals", 61 + "arrows", 62 + "brands", 63 + "buildings", 64 + "charts", 65 + "communication", 66 + "connectivity", 67 + "currency", 68 + "cursors", 69 + "design", 70 + "development", 71 + "devices", 72 + "emoji", 73 + "files", 74 + "food-beverage", 75 + "furniture", 76 + "gaming", 77 + "home", 78 + "layout", 79 + "mail", 80 + "maps", 81 + "maths", 82 + "medical", 83 + "money", 84 + "multimedia", 85 + "nature", 86 + "navigation", 87 + "notifications", 88 + "people", 89 + "photography", 90 + "science", 91 + "seasons", 92 + "security", 93 + "shapes", 94 + "shopping", 95 + "social", 96 + "sports", 97 + "sustainability", 98 + "text", 99 + "time", 100 + "tools", 101 + "transportation", 102 + "travel", 103 + "weather" 104 + ] 57 105 }, 58 106 "uniqueItems": true 59 107 },