|
| 1 | +export type Filter = { |
| 2 | + name: string |
| 3 | + children?: Filter[] |
| 4 | +} |
| 5 | + |
| 6 | +const availableFilters: Filter[] = [ |
| 7 | + { |
| 8 | + name: 'technical_approach', |
| 9 | + children: [ |
| 10 | + { |
| 11 | + name: 'Infrastructure as a Service (IaaS)', |
| 12 | + children: [ |
| 13 | + { name: 'Compute' }, |
| 14 | + { name: 'Network' }, |
| 15 | + { name: 'Storage' }, |
| 16 | + { name: 'Security' }, |
| 17 | + ], |
| 18 | + }, |
| 19 | + { name: 'Container as a Service (CaaS)' }, |
| 20 | + { |
| 21 | + name: 'Platform as a Service (PaaS)', |
| 22 | + children: [ |
| 23 | + { name: 'Database' }, |
| 24 | + { name: 'Development and Testing' }, |
| 25 | + { name: 'Business Analytics' }, |
| 26 | + { name: 'Process management' }, |
| 27 | + { name: 'Knowledge management' }, |
| 28 | + { name: 'Data management' }, |
| 29 | + ], |
| 30 | + }, |
| 31 | + { name: 'Software as a Service (SaaS)' }, |
| 32 | + { name: 'Artificial Intelligence and Machine Learning' }, |
| 33 | + { |
| 34 | + name: 'Data as a Service (DaaS)', |
| 35 | + children: [{ name: 'Data product distribution and exchange' }], |
| 36 | + }, |
| 37 | + { name: 'Cybersecurity and Data Privacy' }, |
| 38 | + { name: 'Internet of Things (IoT)' }, |
| 39 | + ], |
| 40 | + }, |
| 41 | + { |
| 42 | + name: 'business_domain', |
| 43 | + children: [ |
| 44 | + { name: 'Automotive' }, |
| 45 | + { name: 'Agriculture, Forestry, Fishing' }, |
| 46 | + { name: 'Blockchain (DLT)' }, |
| 47 | + { name: 'Beauty and Perfume' }, |
| 48 | + { name: 'Cleaning and Facility Management Services' }, |
| 49 | + { |
| 50 | + name: 'Community Groups, Social, Political and Religious', |
| 51 | + children: [{ name: 'Governmental Administration and Regulation' }], |
| 52 | + }, |
| 53 | + { name: 'Education' }, |
| 54 | + { name: 'Construction' }, |
| 55 | + { name: 'Employment, Recruitment, HR' }, |
| 56 | + { |
| 57 | + name: 'Energy and Utility Suppliers', |
| 58 | + children: [ |
| 59 | + { name: 'Electricity' }, |
| 60 | + { name: 'Gas' }, |
| 61 | + { name: 'Waste Collection, Treatment and Disposal Activities' }, |
| 62 | + { name: 'Water Supply' }, |
| 63 | + ], |
| 64 | + }, |
| 65 | + { name: 'Financial Services and Insurance' }, |
| 66 | + { name: 'Healthcare' }, |
| 67 | + { name: 'IT' }, |
| 68 | + { name: 'Leisure and Entertainment' }, |
| 69 | + { name: 'Legal, Public Order, Security' }, |
| 70 | + { |
| 71 | + name: 'Manufacturing', |
| 72 | + children: [{ name: 'Manufacturing of Metal Products' }, { name: 'Other (manufacturing)' }], |
| 73 | + }, |
| 74 | + { name: 'Mining and Drilling' }, |
| 75 | + { name: 'Project Management, Marketing and Admin' }, |
| 76 | + { name: 'Personal Services' }, |
| 77 | + { name: 'Restaurants, Bars, Cafes, Catering' }, |
| 78 | + { name: 'Real Estate' }, |
| 79 | + { name: 'Publishing, Printing and Photography' }, |
| 80 | + { name: 'Tourism and Accommodation' }, |
| 81 | + { name: 'Science and Engineering' }, |
| 82 | + { name: 'Trade' }, |
| 83 | + { |
| 84 | + name: 'Transportation and Transportation infrastructure', |
| 85 | + children: [ |
| 86 | + { name: 'Transport of Freight' }, |
| 87 | + { name: 'Transport of Persons' }, |
| 88 | + { name: 'Other' }, |
| 89 | + ], |
| 90 | + }, |
| 91 | + ], |
| 92 | + }, |
| 93 | + { |
| 94 | + name: 'professional_services', |
| 95 | + children: [ |
| 96 | + { name: 'Implementation Services' }, |
| 97 | + { name: 'Consulting' }, |
| 98 | + { |
| 99 | + name: 'Service Management', |
| 100 | + children: [{ name: 'Operations' }, { name: 'Maintenance' }, { name: 'Governance' }], |
| 101 | + }, |
| 102 | + ], |
| 103 | + }, |
| 104 | + { |
| 105 | + name: 'compliance_profile', |
| 106 | + children: [ |
| 107 | + { name: 'Baseline' }, |
| 108 | + { name: 'Professional' }, |
| 109 | + { name: 'Professional+' }, |
| 110 | + ], |
| 111 | + }, |
| 112 | +] |
| 113 | + |
| 114 | +export default availableFilters |
0 commit comments