addedInput schema / properties / inputs / properties
Added value: +{
+ "adr": {
+ "description": "Average nightly rate in dollars. Required for str.",
+ "type": "number"
+ },
+ "arv": {
+ "description": "After-repair value in dollars. Required for brrr and flip.",
+ "type": "number"
+ },
+ "btsArv": {
+ "description": "Finished build-to-sell value in dollars. Required for newc.",
+ "type": "number"
+ },
+ "buildPsf": {
+ "description": "Build cost per square foot in dollars. Required for newc.",
+ "type": "number"
+ },
+ "downPct": {
+ "description": "Down payment. Expressed as a FRACTION (0.0675 = 6.75%), never a percent. Optional — a documented default applies.",
+ "type": "number"
+ },
+ "insurance": {
+ "description": "Annual insurance in dollars. Optional.",
+ "type": "number"
+ },
+ "landPrice": {
+ "description": "Land acquisition cost in dollars. Required for newc.",
+ "type": "number"
+ },
+ "livingSqft": {
+ "description": "Heated living area in square feet. Required for newc.",
+ "type": "number"
+ },
+ "marketRent": {
+ "description": "Expected monthly rent in dollars. Required for ltr and brrr.",
+ "type": "number"
+ },
+ "occupancy": {
+ "description": "Expected occupancy. Expressed as a FRACTION (0.0675 = 6.75%), never a percent. Required for str.",
+ "type": "number"
+ },
+ "price": {
+ "description": "Purchase price in dollars. Required for every strategy except newc.",
+ "type": "number"
+ },
+ "rate": {
+ "description": "Annual interest rate. Expressed as a FRACTION (0.0675 = 6.75%), never a percent. Optional.",
+ "type": "number"
+ },
+ "rehabBudget": {
+ "description": "Renovation budget in dollars. Required for brrr and flip.",
+ "type": "number"
+ },
+ "taxes": {
+ "description": "Annual property taxes in dollars. Optional.",
+ "type": "number"
+ },
+ "term": {
+ "description": "Loan term in years. Optional.",
+ "type": "number"
+ },
+ "units": {
+ "description": "Multifamily rent roll — {unitCount, avgRent, marketRent?} or an array of unit objects. Required for multifamily.",
+ "type": "object"
+ },
+ "vacancyPct": {
+ "description": "Vacancy allowance. Expressed as a FRACTION (0.0675 = 6.75%), never a percent. Optional.",
+ "type": "number"
+ }
+}
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "best_use": {
+ "description": "Highest-scoring strategy id.",
+ "type": "string"
+ },
+ "note": {
+ "type": "string"
+ },
+ "ranked": {
+ "items": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "skipped": {
+ "items": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "best_use",
+ "ranked"
+ ],
+ "type": "object"
+}