...
Code Block |
---|
PUT pt-national-dashboard/_mapping/nss { "properties": { "ulb": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "state": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "ward": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "region": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "transactionsForUsageCategory": { "type": "long" }, "todaysTotalApplications": { "type": "long" }, "todaysClosedApplications": { "type": "long" }, "assessedPropertiesForUsageCategory": { "type": "long" }, "date": { "type": "date", "format": "dd-MM-yyyy HH:mm:ss||dd-MM-yyyy||epoch_millis||dd-MM-yyyy'T'HH:mm:ss.SSSZ" }, "propertiesRegisteredForFinancialYear": { "type": "long" }, "financialYear": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "usageCategory": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }, "todaysCollectionForUsageCategory": { "type": "long" }, "propertyTaxForUsageCategory": { "type": "long" }, "cessForUsageCategory": { "type": "long" }, "rebateForUsageCategory": { "type": "long" }, "penaltyForUsageCategory": { "type": "long" }, "interestForUsageCategory": { "type": "long" }, "assessments": { "type": "long" } } } |
The following table that describes the properties mentioned above:
Attributes | Definition | Breakup |
| It represents the state name. for ex. Punjab | Nil |
| It represents the ulb name of state . for ex. for state Punjab, ulb can be | Nil |
| It represents the ward name of particular ulb of particular state. for ex. for ulb | Nil |
| It represents the category like “RESIDENCIAL”, INDUSTRIAL”, “COMMERCIAL” etc. | Nil |
| It represents total transactions based on the usageCategory on given date. | Breakup by usageCategory(RESIDENCIAL, INDUSTRIAL,COMMERCIAL etc. ) |
| It represents total properties assessed based on the usageCategory on given date. | Breakup by usageCategory(RESIDENCIAL, INDUSTRIAL,COMMERCIAL etc. ) |
| It represents the aggregation of fields property tax, cess, penalty, interest, rebate(should be nagative number) for the given date based on the usageCategory. | Breakup by usageCategory(RESIDENCIAL, INDUSTRIAL,COMMERCIAL etc. ) |
| It represents the collection done as part of property tax for given date based on the usageCategory. | Breakup by usageCategory(RESIDENCIAL, INDUSTRIAL,COMMERCIAL etc. ) |
| It represents the collection done as part of cess for given date based on the usageCategory. | Breakup by usageCategory(RESIDENCIAL, INDUSTRIAL,COMMERCIAL etc. ) |
| It represents the rebate given based on the usageCategory. | Breakup by usageCategory(RESIDENCIAL, INDUSTRIAL,COMMERCIAL etc. ) |
| It represents the collection done as part of panalty for given date based on the usageCategory. | Breakup by usageCategory(RESIDENCIAL, INDUSTRIAL,COMMERCIAL etc. ) |
| It represents the collection done as part of interest for given date based on the usageCategory. | Breakup by usageCategory(RESIDENCIAL, INDUSTRIAL,COMMERCIAL etc. ) |
| It represents number of assessments done. | Nil |
| It represents number of applications created as part of property tax on given date | Nil |
| It represents number of closed applications as part of property tax on given date. | Nil |
| It represents date for which data is ingesting | Nil |
| it represents financial year which which data is inserting. | Nil |
| It represents number of properties registered in the system for the given financial year. | Breakup by financialYear(“2021-22”, “2022-23” etc.) |