mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 01:47:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			335 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			335 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| module.exports = {
 | |
|   type: 'object',
 | |
|   required: ['error'],
 | |
|   properties: {
 | |
|     error: {
 | |
|       type: 'object',
 | |
|       properties: {
 | |
|         status: {
 | |
|           type: 'integer',
 | |
|         },
 | |
|         name: {
 | |
|           type: 'string',
 | |
|         },
 | |
|         message: {
 | |
|           type: 'string',
 | |
|         },
 | |
|       },
 | |
|     },
 | |
|   },
 | |
| };
 | 
