changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "date_range": {
+ "properties": {
+ "end": {
+ "description": "End date in YYYY-MM-DD format or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "start": {
+ "description": "Start date in YYYY-MM-DD format or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "form_type_filter": {
+ "description": "Form type filter applied or 'all'",
+ "type": "string"
+ },
+ "query": {
+ "description": "The search query used",
+ "type": "string"
+ },
+ "results": {
+ "items": {
+ "properties": {
+ "cik": {
+ "description": "Central Index Key identifier",
+ "type": "string"
+ },
+ "entity_name": {
+ "description": "Company or entity name",
+ "type": "string"
+ },
+ "filing_date": {
+ "description": "Date filing was submitted",
+ "type": "string"
+ },
+ "filing_id": {
+ "description": "Unique filing identifier",
+ "type": "string"
+ },
+ "form_type": {
+ "description": "SEC form type (e.g., 10-K, 10-Q)",
+ "type": "string"
+ },
+ "location": {
+ "description": "Business location",
+ "type": "string"
+ },
+ "period_of_report": {
+ "description": "Period covered by the filing",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_hits": {
+ "description": "Total number of matching filings",
+ "type": "number"
+ }
+ },
+ "required": [
+ "query",
+ "form_type_filter",
+ "date_range",
+ "total_hits",
+ "results"
+ ],
+ "type": "object"
+}