changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "corporateMetrics": {
+ "additionalProperties": false,
+ "properties": {
+ "avgCommuteMinutes": {
+ "description": "平均通勤時間(分)",
+ "type": "number"
+ },
+ "employeeTotal": {
+ "description": "従業者総数",
+ "type": "number"
+ },
+ "industryMix": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "industry": {
+ "type": "string"
+ },
+ "share": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "industry",
+ "share"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "majorCompanyCount": {
+ "description": "大企業(従業員300+)数",
+ "type": "number"
+ },
+ "totalEstablishments": {
+ "description": "事業所数",
+ "type": "number"
+ }
+ },
+ "required": [
+ "totalEstablishments",
+ "majorCompanyCount",
+ "employeeTotal",
+ "avgCommuteMinutes",
+ "industryMix"
+ ],
+ "type": "object"
+ },
+ "demandScore": {
+ "description": "法人需要スコア",
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "growthPotential": {
+ "enum": [
+ "high",
+ "medium",
+ "low"
+ ],
+ "type": "string"
+ },
+ "humanFlowAlignment": {
+ "description": "人流との整合性",
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "keyInsights": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "recommendations": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "rentabilityScore": {
+ "description": "賃料収益性スコア",
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "summary": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "summary",
+ "corporateMetrics",
+ "demandScore",
+ "rentabilityScore",
+ "growthPotential",
+ "humanFlowAlignment",
+ "keyInsights",
+ "recommendations"
+ ],
+ "type": "object"
+}