Results Totals - Implan-Group/api GitHub Wiki

Result Totals

This endpoint provides final result totals for an Impact, as Direct, Indirect, and Induced estimates for several outputs.


🖽 The Result Object

Property Type Details
runId int
regionName str
dataYear int
impactType str
impactTypeId int
output float
employment float
wagesalaryemployment float
proprietoremployment float
laborIncome float
employeeCompensation float
proprietorIncome float
otherPropertyTypeIncome float
taxOnProductionAndImports float
subCountyGeneralTaxes float
subCountySpecialDistrictsTaxes float
countyTaxes float
stateTaxes float
federalTaxes float
totalTaxes float

GET /api/v1/impact/results/{runId}

Parameter Spec Type Details
runId route int The analysis run identifier.
dollarYear query int❔ An optional override for the Dollar Year the results will be in.

🧾Example

📤 Request

GET /api/v1/impact/results/17280

📥 Response

[
    {
        "runId": 17280,
        "regionName": "Group 5",
        "dataYear": "2020",
        "impactType": "Direct",
        "impactTypeId": 1,
        "output": 20283674846.79369,
        "employment": 80396.98835537401,
        "wagesalaryemployment": 57850.62132952054,
        "proprietoremployment": 22546.367025853488,
        "laborIncome": 24430071828.524586,
        "employeeCompensation": 4426187312.784757,
        "proprietorIncome": 20003884515.73983,
        "otherPropertyTypeIncome": 237643298.92504603,
        "taxOnProductionAndImports": 408366365.5705692,
        "subCountyGeneralTaxes": 23957.262679038602,
        "subCountySpecialDistrictsTaxes": 2.122569325080405,
        "countyTaxes": 241321.39988444754,
        "stateTaxes": 305684.8348221214,
        "federalTaxes": 3577768.462463037,
        "totalTaxes": 4148734.0824179705
    },
⚠️ **GitHub.com Fallback** ⚠️