{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/spaceflight-news/refs/heads/main/json-structure/spaceflight-news-info-structure.json", "name": "Info", "description": "API metadata describing the running SNAPI version and the news sites currently aggregated.", "type": "object", "properties": { "version": { "type": "string", "description": "Current SNAPI version string.", "example": "4.30.2" }, "news_sites": { "type": "array", "description": "List of news site names currently imported by SNAPI.", "items": { "type": "string" }, "example": [ "NASA", "SpaceX", "ESA", "Spaceflight Now" ] } }, "required": [ "news_sites", "version" ] }