changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "cik": {
+ "description": "Company CIK number",
+ "type": "string"
+ },
+ "company_name": {
+ "description": "Official company name from SEC",
+ "type": "string"
+ },
+ "filings": {
+ "description": "Recent SEC filings (up to 20 results)",
+ "items": {
+ "properties": {
+ "accession_number": {
+ "description": "SEC accession number for the filing",
+ "type": "string"
+ },
+ "document_url": {
+ "description": "Full URL to the primary document on SEC website",
+ "type": "string"
+ },
+ "filing_date": {
+ "description": "Date filing was submitted to SEC (YYYY-MM-DD)",
+ "type": "string"
+ },
+ "form": {
+ "description": "SEC form type (e.g., 10-K, 10-Q, 8-K)",
+ "type": "string"
+ },
+ "primary_document": {
+ "description": "Primary document filename",
+ "type": "string"
+ }
+ },
+ "required": [
+ "accession_number",
+ "filing_date",
+ "form",
+ "primary_document",
+ "document_url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "filter_form_type": {
+ "description": "Form type filter applied ('all' if none specified)",
+ "type": "string"
+ },
+ "fiscal_year_end": {
+ "description": "Company's fiscal year end date (MMDD format)",
+ "type": "string"
+ },
+ "sic_description": {
+ "description": "SEC SIC industry classification description",
+ "type": "string"
+ },
+ "state_of_incorporation": {
+ "description": "State where company is incorporated",
+ "type": "string"
+ }
+ },
+ "required": [
+ "cik",
+ "company_name",
+ "sic_description",
+ "state_of_incorporation",
+ "fiscal_year_end",
+ "filter_form_type",
+ "filings"
+ ],
+ "type": "object"
+}