general.schema.json (753B)
1 { 2 "$schema": "https://json-schema.org/draft/2020-12/schema", 3 "$id": "general.schema.json", 4 "title": "General", 5 "description": "General data about a page", 6 "type": "object", 7 "properties": { 8 "url": { 9 "description": "The page's url", 10 "type": "string" 11 }, 12 "date": { 13 "description": "The date the data was collected as a timestamp", 14 "type": "number" 15 }, 16 "description": { 17 "description": "A description of the page", 18 "type": "string" 19 }, 20 "siteName": { 21 "description": "A friendly name for the site", 22 "type": "string" 23 }, 24 "image": { 25 "description": "The url for an image representative of the page", 26 "type": "string" 27 } 28 }, 29 "required": ["url", "date"] 30 }