Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

_comment : In order to display information on the “i” symbol of each visualization, Visualization Information is maintained in this field.  

Index Properties of National W&S- Dss:

The index that contains data for National-W&S is- ws-national-dashboard

The mapping for this index is:

Code Block
{
  "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
        }
      }
    },
    "tenantId": {
      "type": "text",
      "fields": {
        "keyword": {
          "type": "keyword",
          "ignore_above": 256
        }
      }
    },
    "module": {
      "type": "text",
      "fields": {
        "keyword": {
          "type": "keyword",
          "ignore_above": 256
        }
      }
    },
    "date": {
      "type": "date",
      "format": "dd-MM-yyyy HH:mm:ss||dd-MM-yyyy||epoch_millis||dd-MM-yyyy'T'HH:mm:ss.SSSZ"
    },
    "transactions": {
      "type": "long"
    },
    "connectionType": {
      "type": "text",
      "fields": {
        "keyword": {
          "type": "keyword",
          "ignore_above": 256
        }
      }
    },
    "connectionsCreatedForConnectionType": {
      "type": "long"
    },
    "channelType": {
      "type": "text",
      "fields": {
        "keyword": {
          "type": "keyword",
          "ignore_above": 256
        }
      }
    },
    "connectionsCreatedForChannelType": {
      "type": "long"
    },
    "sewerageConnectionsForChannelType": {
      "type": "long"
    },
    "waterConnectionsForChannelType": {
      "type": "long"
    },
    "usageType": {
      "type": "text",
      "fields": {
        "keyword": {
          "type": "keyword",
          "ignore_above": 256
        }
      }
    },
    "todaysCollectionForUsageType": {
      "type": "long"
    },
    "sewerageConnectionsForUsageType": {
      "type": "long"
    },
    "waterConnectionsForUsageType": {
      "type": "long"
    },
    "paymentChannelType": {
      "type": "text",
      "fields": {
        "keyword": {
          "type": "keyword",
          "ignore_above": 256
        }
      }
    },
    "todaysCollectionForChannelType": {
      "type": "long"
    },
    "todaysCollectionForConnectionType": {
      "type": "long"
    },
    "taxHeads": {
      "type": "text",
      "fields": {
        "keyword": {
          "type": "keyword",
          "ignore_above": 256
        }
      }
    },
    "todaysCollectionForTaxHeads": {
      "type": "long"
    },
    "meterType": {
      "type": "text",
      "fields": {
        "keyword": {
          "type": "keyword",
          "ignore_above": 256
        }
      }
    },
    "waterConnectionsForMeterType": {
      "type": "long"
    },
    "duration": {
      "type": "text",
      "fields": {
        "keyword": {
          "type": "keyword",
          "ignore_above": 256
        }
      }
    },
    "pendingConnectionsForDuration": {
      "type": "long"
    },
    "todaysTotalApplications": {
      "type": "long"
    },
    "todaysClosedApplications": {
      "type": "long"
    },
    "todaysCompletedApplicationsWithinSLA": {
      "type": "long"
    },
    "slaCompliance": {
      "type": "long"
    }
  }
}

The following is the table that describes the properties mentioned above:

Attributes

Definition

Breakup

ulb

The district or region for which the data is ingested

Nil

state

The ULB name for which the data is ingested

Nil

ward

The ward for which the data is ingested

Nil

transactions

Number of transactions related to WS/SW module on a given date

Nil

connectionsCreated

Number of connections related to WS/SW module on a given date

Breakup by channel type and connection type has to be provided

todaysCollection

Total collection related to WS/SW module on a given date

Breakup by usage type, channel type and tax head has to be provided

waterConnections

new connections created on the given date

Breakup by meter type,usage and channel

sewerageConnections

new sewreage connections created on the given date

Breakup by usage and channel

pendingConnections

pending connections on the given date

Breakup by duration

slaCompliance

Percentage of complaints that are resolved within SLA till the given date.

Nil

todaysTotalApplications

# of Applications created on the given date

Nil

todaysClosedApplications

# of Applications closed on the given date

Nil

todaysCompletedApplicationsWithinSLA

# of Applications closed on the given date within SLA

Nil

Postman collection for National W&S- Dss: https://www.getpostman.com/collections/5d3bb33f27dc4528c103

...