Aligned News · Schema

Bundle

An Aligned News bundle, grouping related stories around a theme.

AINewsIntelligenceMCPSignals

Properties

Name Type Description
id string
title string
summary string
stories array
publishedAt string
View JSON Schema on GitHub

JSON Schema

aligned-news-bundle-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aligned-news/refs/heads/main/json-schema/aligned-news-bundle-schema.json",
  "title": "Bundle",
  "description": "An Aligned News bundle, grouping related stories around a theme.",
  "type": "object",
  "properties": {
    "id": { "type": "string", "format": "uuid" },
    "title": { "type": "string" },
    "summary": { "type": "string" },
    "stories": {
      "type": "array",
      "items": { "$ref": "aligned-news-story-schema.json" }
    },
    "publishedAt": { "type": "string", "format": "date-time" }
  },
  "required": ["id", "title"]
}