My App

Examples

Sample SFRS filings

Complete 10-K Filing

This example shows a complete annual report for a fictional technology company.

{
  "sfrs": {
    "version": "0.1",
    "generatedAt": "2025-03-15T14:30:00Z",
    "generator": "Sureshake Filing Tool v1.0"
  },
  "filing": {
    "entity": {
      "lei": "5493001KJTIIGC8Y1R12",
      "name": "Acme Technology Corporation",
      "jurisdiction": "US-DE",
      "fiscalYearEnd": "--12-31",
      "cik": "0001234567",
      "ticker": "ACME",
      "exchange": "XNAS"
    },
    "period": {
      "duration": {
        "start": "2024-01-01",
        "end": "2024-12-31"
      }
    },
    "framework": "US-GAAP",
    "submissionType": "10-K",
    "auditor": {
      "name": "Big Four LLP",
      "pcaobId": "1234",
      "opinion": "unqualified",
      "opinionDate": "2025-02-28"
    }
  },
  "facts": {
    "revenue": { "value": 4850000000, "unit": "USD", "decimals": -6 },
    "costOfRevenue": { "value": 2910000000, "unit": "USD", "decimals": -6 },
    "grossProfit": { "value": 1940000000, "unit": "USD", "decimals": -6 },
    "operatingExpenses": { "value": 1115000000, "unit": "USD", "decimals": -6 },
    "operatingIncome": { "value": 825000000, "unit": "USD", "decimals": -6 },
    "netIncome": { "value": 648000000, "unit": "USD", "decimals": -6 },
    "earningsPerShareBasic": { "value": 3.24, "unit": "USD/share", "decimals": 2 },
    "earningsPerShareDiluted": { "value": 3.18, "unit": "USD/share", "decimals": 2 },
    "totalAssets": { "value": 6000000000, "unit": "USD", "decimals": -6 },
    "totalLiabilities": { "value": 2180000000, "unit": "USD", "decimals": -6 },
    "totalStockholdersEquity": { "value": 3820000000, "unit": "USD", "decimals": -6 }
  }
}

With Segment Dimensions

Adding segment breakdowns:

{
  "dimensions": {
    "revenueBySegment": {
      "axis": "segment",
      "members": [
        {
          "name": "Cloud Services",
          "facts": {
            "revenue": { "value": 2180000000, "unit": "USD", "decimals": -6 },
            "operatingIncome": { "value": 545000000, "unit": "USD", "decimals": -6 }
          }
        },
        {
          "name": "Enterprise Software",
          "facts": {
            "revenue": { "value": 1890000000, "unit": "USD", "decimals": -6 },
            "operatingIncome": { "value": 340000000, "unit": "USD", "decimals": -6 }
          }
        },
        {
          "name": "Professional Services",
          "facts": {
            "revenue": { "value": 780000000, "unit": "USD", "decimals": -6 },
            "operatingIncome": { "value": -60000000, "unit": "USD", "decimals": -6 }
          }
        }
      ]
    },
    "revenueByGeography": {
      "axis": "geography",
      "members": [
        {
          "name": "United States",
          "facts": {
            "revenue": { "value": 2910000000, "unit": "USD", "decimals": -6 }
          }
        },
        {
          "name": "Europe",
          "facts": {
            "revenue": { "value": 1164000000, "unit": "USD", "decimals": -6 }
          }
        },
        {
          "name": "Asia Pacific",
          "facts": {
            "revenue": { "value": 776000000, "unit": "USD", "decimals": -6 }
          }
        }
      ]
    }
  }
}

With Footnotes

Adding structured disclosure notes:

{
  "notes": {
    "revenueRecognition": {
      "title": "Revenue Recognition",
      "text": "The Company recognizes revenue when control of promised goods or services is transferred to customers in an amount that reflects the consideration expected to be received in exchange for those goods or services. Revenue from cloud services is recognized ratably over the subscription period.",
      "relatedFacts": ["revenue", "deferredRevenueCurrent"]
    },
    "segmentInformation": {
      "title": "Segment Information",
      "text": "The Company operates in three reportable segments.",
      "tables": [
        {
          "caption": "Segment Revenue and Operating Income",
          "headers": ["Segment", "Revenue", "Operating Income", "Margin"],
          "rows": [
            ["Cloud Services", 2180000000, 545000000, "25.0%"],
            ["Enterprise Software", 1890000000, 340000000, "18.0%"],
            ["Professional Services", 780000000, -60000000, "-7.7%"],
            ["Total", 4850000000, 825000000, "17.0%"]
          ]
        }
      ]
    }
  }
}

Minimal Filing

The minimum required fields:

{
  "sfrs": {
    "version": "0.1",
    "generatedAt": "2025-03-15T14:30:00Z"
  },
  "filing": {
    "entity": {
      "lei": "5493001KJTIIGC8Y1R12",
      "name": "Simple Corp",
      "jurisdiction": "US"
    },
    "period": {
      "duration": {
        "start": "2024-01-01",
        "end": "2024-12-31"
      }
    },
    "framework": "US-GAAP",
    "submissionType": "10-K"
  },
  "facts": {
    "revenue": { "value": 1000000, "unit": "USD" },
    "netIncome": { "value": 100000, "unit": "USD" },
    "totalAssets": { "value": 500000, "unit": "USD" },
    "totalLiabilities": { "value": 200000, "unit": "USD" },
    "totalStockholdersEquity": { "value": 300000, "unit": "USD" }
  }
}

Download Examples

Full example files are available in the GitHub repository:

On this page