mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			776 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			776 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| const joi = require('joi');
 | |
| const { nameType } = require('./util');
 | |
| 
 | |
| const applicationSchema = joi
 | |
|     .object()
 | |
|     .options({ stripUnknown: false })
 | |
|     .keys({
 | |
|         appName: nameType,
 | |
|         sdkVersion: joi.string().optional(),
 | |
|         strategies: joi
 | |
|             .array()
 | |
|             .optional()
 | |
|             .items(joi.string(), joi.any().strip()),
 | |
|         description: joi
 | |
|             .string()
 | |
|             .allow('')
 | |
|             .optional(),
 | |
|         url: joi
 | |
|             .string()
 | |
|             .allow('')
 | |
|             .optional(),
 | |
|         color: joi
 | |
|             .string()
 | |
|             .allow('')
 | |
|             .optional(),
 | |
|         icon: joi
 | |
|             .string()
 | |
|             .allow('')
 | |
|             .optional(),
 | |
|     });
 | |
| 
 | |
| module.exports = applicationSchema;
 |