changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "classifications": {
+ "description": "分類事項(表章事項・地域・時間軸・分類)の一覧",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "id": {
+ "description": "分類ID(tab / area / time / cat01 など)。e-stat-get-stats-data では cd を付けた引数(cat01 → cdCat01)で絞り込みに使う",
+ "type": "string"
+ },
+ "items": {
+ "description": "分類項目の一覧",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "code": {
+ "description": "項目コード。e-stat-get-stats-data の絞り込み引数に指定する値",
+ "type": "string"
+ },
+ "level": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "階層レベル"
+ },
+ "name": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "項目名"
+ },
+ "parentCode": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "親項目のコード"
+ },
+ "unit": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "単位"
+ }
+ },
+ "required": [
+ "code",
+ "name",
+ "level",
+ "unit",
+ "parentCode"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "name": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "分類名"
+ },
+ "returnedCount": {
+ "description": "今回返した項目数",
+ "type": "number"
+ },
+ "totalCount": {
+ "description": "この分類の全項目数",
+ "type": "number"
+ },
+ "truncated": {
+ "description": "項目が省略されている場合 true。classId・classLimit・classNameFilter で絞り込み・全量取得ができる",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "totalCount",
+ "returnedCount",
+ "truncated",
+ "items"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "note": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "項目の省略が発生した場合の案内"
+ },
+ "table": {
+ "additionalProperties": false,
+ "description": "統計表の基本情報",
+ "properties": {
+ "collectArea": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "集計地域区分"
+ },
+ "cycle": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "提供周期"
+ },
+ "description": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "解説"
+ },
+ "govOrg": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "作成機関"
+ },
+ "mainCategory": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "統計大分野"
+ },
+ "openDate": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "公開日"
+ },
+ "overallTotalNumber": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "統計表の全データ件数(セル数)"
+ },
+ "statName": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "統計名(例: 人口推計)"
+ },
+ "statisticsName": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "提供統計名"
+ },
+ "statsDataId": {
+ "description": "統計表ID",
+ "type": "string"
+ },
+ "subCategory": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "統計小分野"
+ },
+ "surveyDate": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "調査年月"
+ },
+ "title": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "統計表題名"
+ },
+ "updatedDate": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "最終更新日"
+ }
+ },
+ "required": [
+ "statsDataId",
+ "statName",
+ "govOrg",
+ "statisticsName",
+ "title",
+ "cycle",
+ "surveyDate",
+ "openDate",
+ "collectArea",
+ "mainCategory",
+ "subCategory",
+ "overallTotalNumber",
+ "updatedDate",
+ "description"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "table",
+ "classifications",
+ "note"
+ ],
+ "type": "object"
+}