changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "assetValueFactor": {
+ "description": "教育環境による資産価値係数(%)",
+ "type": "number"
+ },
+ "disasterRiskScore": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "keyInsights": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "overallScore": {
+ "description": "ファミリー適性総合スコア",
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "pricePerSqm": {
+ "type": "number"
+ },
+ "recommendations": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "safety": {
+ "additionalProperties": false,
+ "properties": {
+ "crimeRate": {
+ "description": "犯罪発生率(件/千人)",
+ "type": "number"
+ },
+ "crimeScore": {
+ "description": "安全性スコア(高い=安全)",
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "dominantCrimeType": {
+ "description": "主要犯罪類型",
+ "type": "string"
+ }
+ },
+ "required": [
+ "crimeScore",
+ "crimeRate",
+ "dominantCrimeType"
+ ],
+ "type": "object"
+ },
+ "schoolDistrict": {
+ "additionalProperties": false,
+ "properties": {
+ "educationScore": {
+ "description": "教育環境スコア",
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "elementarySchool": {
+ "description": "学区の小学校名",
+ "type": "string"
+ },
+ "juniorHighSchool": {
+ "description": "学区の中学校名",
+ "type": "string"
+ },
+ "nearbySchoolCount": {
+ "description": "半径2km内の学校数",
+ "type": "number"
+ },
+ "universityAdvancementRate": {
+ "description": "大学進学率(%)",
+ "type": "number"
+ }
+ },
+ "required": [
+ "elementarySchool",
+ "juniorHighSchool",
+ "educationScore",
+ "universityAdvancementRate",
+ "nearbySchoolCount"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "overallScore",
+ "schoolDistrict",
+ "safety",
+ "assetValueFactor",
+ "disasterRiskScore",
+ "pricePerSqm",
+ "keyInsights",
+ "recommendations"
+ ],
+ "type": "object"
+}