1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "type": "object",
- "properties": {
- "limit": {
- "type": ["string", "number"]
- },
- "mimetype": {
- "type": "string"
- },
- "fallback": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "additionalProperties": false,
- "properties": {
- "loader": {
- "description": "Fallback loader name",
- "type": "string"
- },
- "options": {
- "description": "Fallback loader options",
- "anyOf": [
- {
- "type": "object"
- },
- {
- "type": "string"
- }
- ]
- }
- },
- "type": "object"
- }
- ]
- }
- },
- "additionalProperties": true
- }
|