changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "annual_values": {
+ "description": "Annual values sorted by fiscal year descending",
+ "items": {
+ "properties": {
+ "filed": {
+ "description": "Date filing was submitted",
+ "type": "string"
+ },
+ "fiscal_year": {
+ "description": "Fiscal year",
+ "type": "number"
+ },
+ "period_end": {
+ "description": "Period end date in YYYY-MM-DD format",
+ "type": "string"
+ },
+ "unit": {
+ "description": "Unit of measurement (e.g., USD, shares)",
+ "type": "string"
+ },
+ "value": {
+ "description": "Reported value",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "cik": {
+ "description": "Company CIK number",
+ "type": "string"
+ },
+ "company_name": {
+ "description": "Official company name",
+ "type": "string"
+ },
+ "concept": {
+ "description": "US-GAAP concept tag name",
+ "type": "string"
+ },
+ "description": {
+ "description": "Detailed concept description",
+ "type": "string"
+ },
+ "label": {
+ "description": "Human-readable concept label",
+ "type": "string"
+ }
+ },
+ "required": [
+ "cik",
+ "company_name",
+ "concept",
+ "label",
+ "description",
+ "annual_values"
+ ],
+ "type": "object"
+}