changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "baseline": {
+ "additionalProperties": false,
+ "description": "現状ベースライン",
+ "properties": {
+ "humanFlowScore": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "investmentScore": {
+ "type": "number"
+ },
+ "pricePerSqm": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "riskScore": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "pricePerSqm",
+ "humanFlowScore",
+ "investmentScore",
+ "riskScore"
+ ],
+ "type": "object"
+ },
+ "city": {
+ "type": "string"
+ },
+ "confidence": {
+ "enum": [
+ "high",
+ "medium",
+ "low"
+ ],
+ "type": "string"
+ },
+ "horizon": {
+ "type": "string"
+ },
+ "humanFlowImpactPct": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "keyOpportunities": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "keyRisks": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "markdownReport": {
+ "type": "string"
+ },
+ "prefecture": {
+ "type": "string"
+ },
+ "priceImpactPct": {
+ "description": "地価への影響(%。正=上昇)",
+ "type": "number"
+ },
+ "projected": {
+ "additionalProperties": false,
+ "description": "シナリオ適用後予測",
+ "properties": {
+ "humanFlowScore": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "investmentScore": {
+ "type": "number"
+ },
+ "pricePerSqm": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "riskScore": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "pricePerSqm",
+ "humanFlowScore",
+ "investmentScore",
+ "riskScore"
+ ],
+ "type": "object"
+ },
+ "recommendations": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "riskImpactPct": {
+ "type": "number"
+ },
+ "scale": {
+ "type": "string"
+ },
+ "scenario": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "prefecture",
+ "city",
+ "scenario",
+ "scale",
+ "horizon",
+ "baseline",
+ "projected",
+ "priceImpactPct",
+ "humanFlowImpactPct",
+ "riskImpactPct",
+ "confidence",
+ "keyOpportunities",
+ "keyRisks",
+ "recommendations"
+ ],
+ "type": "object"
+}