changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "analysis": {
+ "description": "Analysis type identifier",
+ "type": "string"
+ },
+ "cik": {
+ "description": "SEC CIK lookup result or null if unavailable",
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "company_overview": {
+ "description": "Company fundamentals and overview or null if unavailable",
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "consumer_complaints": {
+ "description": "CFPB consumer complaints or null if unavailable",
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "income_statement": {
+ "description": "Income statement financials or null if unavailable",
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "macro_context": {
+ "description": "Macro economic context or null if FRED key not provided",
+ "properties": {
+ "fed_funds_rate": {
+ "description": "Federal funds rate data",
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "treasury_10y": {
+ "description": "10-year Treasury yield data",
+ "type": [
+ "object",
+ "null"
+ ]
+ }
+ },
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "sec_filings": {
+ "description": "SEC 10-K filings data or null if unavailable",
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "stock_quote": {
+ "description": "Current stock quote data or null if unavailable",
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "ticker": {
+ "description": "Stock ticker symbol analyzed",
+ "type": "string"
+ }
+ },
+ "required": [
+ "analysis",
+ "ticker",
+ "cik",
+ "sec_filings",
+ "stock_quote",
+ "company_overview",
+ "income_statement",
+ "consumer_complaints",
+ "macro_context"
+ ],
+ "type": "object"
+}