FiscalNote · Schema

FiscalNote Presidential Transcript

A presidential transcript record from FiscalNote's PolicyNote API, delivering primary-source verified transcripts of presidential communications including executive orders, proclamations, press statements, and public remarks.

GovernmentLegislationPolicyPolitical IntelligenceRegulation

Properties

Name Type Description
id string Unique identifier for the transcript record.
title string Title of the transcript.
type string Type of presidential communication.
date string Date of the communication in ISO 8601 format.
location string Location where the communication took place.
duration string Duration of the communication in ISO 8601 duration format.
wordCount integer Total word count of the transcript.
fullText string Full text of the transcript.
summary string Summary of the transcript content.
videoUrl string URL to the video recording if available.
sourceUrl string URL to the primary source document.
verified boolean Indicates whether this transcript has been verified against the primary source.
createdAt string Timestamp when the record was created.
updatedAt string Timestamp when the record was last updated.
View JSON Schema on GitHub

JSON Schema

fiscalnote-transcript-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://fiscalnote.com/schemas/fiscalnote/transcript.json",
  "title": "FiscalNote Presidential Transcript",
  "description": "A presidential transcript record from FiscalNote's PolicyNote API, delivering primary-source verified transcripts of presidential communications including executive orders, proclamations, press statements, and public remarks.",
  "type": "object",
  "required": ["id", "title", "type", "date"],
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the transcript record."
    },
    "title": {
      "type": "string",
      "description": "Title of the transcript."
    },
    "type": {
      "type": "string",
      "description": "Type of presidential communication.",
      "enum": ["executive_order", "proclamation", "press_statement", "public_remarks", "interview", "formal_event"]
    },
    "date": {
      "type": "string",
      "format": "date",
      "description": "Date of the communication in ISO 8601 format."
    },
    "location": {
      "type": "string",
      "description": "Location where the communication took place."
    },
    "duration": {
      "type": "string",
      "description": "Duration of the communication in ISO 8601 duration format.",
      "pattern": "^P(?:\\d+D)?(?:T(?:\\d+H)?(?:\\d+M)?(?:\\d+S)?)?$"
    },
    "wordCount": {
      "type": "integer",
      "description": "Total word count of the transcript.",
      "minimum": 0
    },
    "fullText": {
      "type": "string",
      "description": "Full text of the transcript."
    },
    "summary": {
      "type": "string",
      "description": "Summary of the transcript content."
    },
    "videoUrl": {
      "type": "string",
      "format": "uri",
      "description": "URL to the video recording if available."
    },
    "sourceUrl": {
      "type": "string",
      "format": "uri",
      "description": "URL to the primary source document."
    },
    "verified": {
      "type": "boolean",
      "description": "Indicates whether this transcript has been verified against the primary source."
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the record was created."
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the record was last updated."
    }
  }
}