changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "cik": {
+ "description": "Company CIK number",
+ "type": "string"
+ },
+ "company_name": {
+ "description": "Official company name",
+ "type": "string"
+ },
+ "filings": {
+ "items": {
+ "properties": {
+ "accession_number": {
+ "description": "SEC accession number",
+ "type": "string"
+ },
+ "document_url": {
+ "description": "URL to access the filing document",
+ "type": "string"
+ },
+ "filing_date": {
+ "description": "Date filing was submitted",
+ "type": "string"
+ },
+ "form": {
+ "description": "SEC form type",
+ "type": "string"
+ },
+ "primary_document": {
+ "description": "Primary document filename",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "filter_form_type": {
+ "description": "Form type filter applied or 'all'",
+ "type": "string"
+ },
+ "fiscal_year_end": {
+ "description": "Fiscal year end date",
+ "type": "string"
+ },
+ "sic_description": {
+ "description": "Standard Industrial Classification description",
+ "type": "string"
+ },
+ "state_of_incorporation": {
+ "description": "State where company is incorporated",
+ "type": "string"
+ },
+ "tickers": {
+ "description": "Associated ticker symbols",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "cik",
+ "company_name",
+ "tickers",
+ "sic_description",
+ "state_of_incorporation",
+ "fiscal_year_end",
+ "filter_form_type",
+ "filings"
+ ],
+ "type": "object"
+}