Aligned News · JSON Structure

Aligned News Bundle Structure

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

Type: object Properties: 5 Required: 2
AINewsIntelligenceMCPSignals

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

Properties

id title summary stories publishedAt

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/aligned-news/refs/heads/main/json-structure/aligned-news-bundle-structure.json",
  "name": "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-structure.json" } },
    "publishedAt": { "type": "string", "format": "date-time" }
  },
  "required": ["id", "title"]
}