content.json (459B)
1 { 2 "$id": "content.json#", 3 "$schema": "http://json-schema.org/draft-06/schema#", 4 "type": "object", 5 "required": [ 6 "size", 7 "mimeType" 8 ], 9 "properties": { 10 "size": { 11 "type": "integer" 12 }, 13 "compression": { 14 "type": "integer" 15 }, 16 "mimeType": { 17 "type": "string" 18 }, 19 "text": { 20 "type": "string" 21 }, 22 "encoding": { 23 "type": "string" 24 }, 25 "comment": { 26 "type": "string" 27 } 28 } 29 }