Spaceflight News · JSON Structure

Spaceflight News Info Structure

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

Type: object Properties: 2 Required: 2
NewsSpaceSpaceflightAerospaceOpen SourceLaunchesPublic APIs

Info is a JSON Structure definition published by Spaceflight News, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

version news_sites

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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"
  ]
}