1{ 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "title": "JSON schema for mock-config.json5 file", 4 "definitions": { 5 "sourceRedirection": { 6 "description": "A source redirection for mocked module.", 7 "type": "object", 8 "required": [ 9 "source" 10 ], 11 "properties": { 12 "source": { 13 "type": "string", 14 "maxLength": 128, 15 "minLength": 1 16 } 17 } 18 } 19 }, 20 "patternProperties": { 21 ".+": { 22 "$ref": "#/definitions/sourceRedirection" 23 } 24 } 25}