document.schema.json (443B)
1 { 2 "$schema": "https://json-schema.org/draft/2020-12/schema", 3 "$id": "document.schema.json", 4 "title": "Document", 5 "description": "A document of some kind, either viewable or editable", 6 "type": "object", 7 "properties": { 8 "name": { 9 "description": "The document's name", 10 "type": "string" 11 }, 12 "mimeType": { 13 "description": "The document's mimetype", 14 "type": "string" 15 } 16 }, 17 "required": ["name"] 18 }