Spaceflight News · Schema

Info

API metadata describing the running SNAPI version and the news sites currently aggregated.

NewsSpaceSpaceflightAerospaceOpen SourceLaunchesPublic APIs

Properties

Name Type Description
version string Current SNAPI version string.
news_sites array List of news site names currently imported by SNAPI.
View JSON Schema on GitHub

JSON Schema

spaceflight-news-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/spaceflight-news/refs/heads/main/json-schema/spaceflight-news-info-schema.json",
  "title": "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"
  ]
}