本ケーススタディの概要
「ケーススタディ#3」では、公共施設と設備の登録例を紹介しました。本ケーススタディは、既に登録した公共施設情報を元に施設カルテに登録する統計情報を登録します。また、公共施設情報で不足する部分については追加登録します。既に記載した様に、人間用の帳票と異なり、コンピュータ用の帳票は複数に分けても構いません。コンピュータはidとtypeの値で名寄せして、ひとつの帳票として取り扱ってくれます。
登録する情報
登録する情報としては、既に登録してある建物や土地の情報に追加する情報と、統計情報があります。
■追加情報
情報の種類 | 情報の内容と想定 |
---|---|
統計対象施設 | 広島県呉市の「吉浦まちづくりセンター」という施設を想定します |
施設が入居する建物の追加情報 | 財産区分: ”行政財産(公共用財産)” 耐用年数: 47年間 耐震基準: 新耐震基準 棟数: 1 行政財産の使用許可: 無し アスベスト対策: 済み |
建物の敷地の追加情報 | 用途地域: 近隣商業地域 所有形態: 市 防火地域: 準防火地域 |
■コスト関連統計情報
大区分 | 中区分 | 細区分 | H30年度 | R1年度 | R2年度 | R3年度 | R4年度 |
---|---|---|---|---|---|---|---|
収入 | 使用料等 | 使用料 | 0 | 0 | 0 | 0 | 0 |
手数料 | 0 | 0 | 0 | 0 | 0 | ||
その他収入 | 100000 | 200000 | 1500000 | 300000 | 700000 | ||
運営経費 | 建物維持管理費 | 光熱水費 | 300000 | 250000 | 170000 | 210000 | 250000 |
燃料費 | 180000 | 160000 | 120000 | 110000 | 150000 | ||
修繕費 | 1800000 | 300000 | 2700000 | 120000 | 1700000 | ||
建物管理委託費 | 1290000 | 3000000 | 3050000 | 3120000 | 3300000 | ||
使用料及び賃貸料 | 0 | 0 | 0 | 0 | 0 | ||
その他経費 | 1230000 | 1330000 | 1400000 | 1470000 | 1540000 | ||
運営費 | 事業運営費 | 8000000 | 8200000 | 8500000 | 8450000 | 8600000 | |
人件費 | 10000000 | 11000000 | 12000000 | 13000000 | 14000000 | ||
指定管理委託料 | 0 | 0 | 0 | 0 | 0 | ||
資本的経費 | 工事費 | 500000 | 550000 | 1200000 | 800000 | 950000 | |
減価償却費 | 3000000 | 3000000 | 3000000 | 3000000 | 3000000 |
技術情報
統計情報は、右図の様に年度ごと施設ごとに登録します。また、敷地や建物に関する情報は追加します。
ダウンロードしたい方はこちら。
なお、本例では5年分をまとめて登録していますが、定常的には毎年1年分を登録する運用にすればいいはずです。
{
"actionType": "append",
"entities": [
{
"id": "urn:ngsi-ld:Building:0000000002002-0000",
"type": "Building",
"propertyClass": "行政財産(公共用財産)",
"serviceLife": 47,
"seismicDesignStandard": "新耐震基準",
"numberOfBuildings": 1,
"usePermission": false,
"asbestosControl": "対応済み"
},
{
"id": "urn:ngsi-ld:Land:0000000002002-0000",
"type": "Land",
"landUseZone": "近隣商業地域",
"fireZone": "準防火地域",
"ownership": "市"
},
{
"id": "urn:ngsi-ld:FacilityStatistics:JP9000020342025-01234567-2018",
"type": "FacilityStatistics",
"startDateOfPeriod": "20180401",
"endDateOfPeriod": "20190331",
"name": "施設カルテ",
"refFacility": "urn:ngsi-ld:Facility:JP9000020342025-01234567",
"income": {
"usageFee": 0,
"commission": 0,
"otherIncome": 100000
},
"operatingExpense": {
"utilitiesFee": 300000,
"fuelFee": 180000,
"repairFee": 1800000,
"buildingManagementFee": 1290000,
"rentalFee": 0,
"otherExpense": 1230000,
"businessOperationCost": 8000000,
"personnelExpense": 10000000,
"designatedManagementFee": 0
},
"capitalCapitalExpense": {
"constructionFee": 500000
},
"depreciationCost": 3000000
},
{
"id": "urn:ngsi-ld:FacilityStatistics:JP9000020342025-01234567-2019",
"type": "FacilityStatistics",
"startDateOfPeriod": "20190401",
"endDateOfPeriod": "20200331",
"name": "施設カルテ",
"refFacility": "urn:ngsi-ld:Facility:JP9000020342025-01234567",
"income": {
"usageFee": 0,
"commission": 0,
"otherIncome": 200000
},
"operatingExpense": {
"utilitiesFee": 250000,
"fuelFee": 160000,
"repairFee": 300000,
"buildingManagementFee": 3000000,
"rentalFee": 0,
"otherExpense": 1330000,
"businessOperationCost": 8200000,
"personnelExpense": 11000000,
"designatedManagementFee": 0
},
"capitalCapitalExpense": {
"constructionFee": 550000
},
"depreciationCost": 3000000
},
{
"id": "urn:ngsi-ld:FacilityStatistics:JP9000020342025-01234567-2020",
"type": "FacilityStatistics",
"startDateOfPeriod": "20200401",
"endDateOfPeriod": "20210331",
"name": "施設カルテ",
"refFacility": "urn:ngsi-ld:Facility:JP9000020342025-01234567",
"income": {
"usageFee": 0,
"commission": 0,
"otherIncome": 1500000
},
"operatingExpense": {
"utilitiesFee": 170000,
"fuelFee": 120000,
"repairFee": 27080000,
"buildingManagementFee": 3050000,
"rentalFee": 0,
"otherExpense": 1400000,
"businessOperationCost": 8500000,
"personnelExpense": 12000000,
"designatedManagementFee": 0
},
"capitalCapitalExpense": {
"constructionFee": 1200000
},
"depreciationCost": 3000000
},
{
"id": "urn:ngsi-ld:FacilityStatistics:JP9000020342025-01234567-2021",
"type": "FacilityStatistics",
"startDateOfPeriod": "20210401",
"endDateOfPeriod": "20220331",
"name": "施設カルテ",
"refFacility": "urn:ngsi-ld:Facility:JP9000020342025-01234567",
"income": {
"usageFee": 0,
"commission": 0,
"otherIncome": 300000
},
"operatingExpense": {
"utilitiesFee": 210000,
"fuelFee": 110000,
"repairFee": 120000,
"buildingManagementFee": 3120000,
"rentalFee": 0,
"otherExpense": 1470000,
"businessOperationCost": 8450000,
"personnelExpense": 13000000,
"designatedManagementFee": 0
},
"capitalCapitalExpense": {
"constructionFee": 800000
},
"depreciationCost": 3000000
},
{
"id": "urn:ngsi-ld:FacilityStatistics:JP9000020342025-01234567-2022",
"type": "FacilityStatistics",
"startDateOfPeriod": "20220401",
"endDateOfPeriod": "20230331",
"name": "施設カルテ",
"refFacility": "urn:ngsi-ld:Facility:JP9000020342025-01234567",
"income": {
"usageFee": 0,
"commission": 0,
"otherIncome": 700000
},
"operatingExpense": {
"utilitiesFee": 250000,
"fuelFee": 150000,
"repairFee": 1700000,
"buildingManagementFee": 3300000,
"rentalFee": 0,
"otherExpense": 1540000,
"businessOperationCost": 8600000,
"personnelExpense": 14000000,
"designatedManagementFee": 0
},
"capitalCapitalExpense": {
"constructionFee": 950000
},
"depreciationCost": 3000000
}
]
}