RTX · Schema

RTX EAGLE Data Source

A configured intelligence or logistics data source in the RTX EAGLE platform

DefenseAerospaceGovernmentLogisticsIntelligenceMilitary

Properties

Name Type Description
id string Unique identifier for the data source
name string Human-readable name of the data source
type string Type of data source (e.g., LogisticsDB, IntelligenceDB, AnalyticsDB)
status string Current operational status
description string Description of data contained in this source
program string Defense program this data source is associated with
classification string Data classification level
View JSON Schema on GitHub

JSON Schema

rtx-data-source-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.rtx.com/eagle/schemas/data-source",
  "title": "RTX EAGLE Data Source",
  "description": "A configured intelligence or logistics data source in the RTX EAGLE platform",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the data source"
    },
    "name": {
      "type": "string",
      "description": "Human-readable name of the data source"
    },
    "type": {
      "type": "string",
      "description": "Type of data source (e.g., LogisticsDB, IntelligenceDB, AnalyticsDB)"
    },
    "status": {
      "type": "string",
      "description": "Current operational status",
      "enum": ["Active", "Inactive", "Maintenance", "Error"]
    },
    "description": {
      "type": "string",
      "description": "Description of data contained in this source"
    },
    "program": {
      "type": "string",
      "description": "Defense program this data source is associated with"
    },
    "classification": {
      "type": "string",
      "description": "Data classification level"
    }
  },
  "required": ["id", "name", "type", "status"]
}