Legal Advisory Services by Branch

Data as of 31 Dec 2024, 23:59

Number of legal advisory sessions provided by the Legal Aid Department (JBG) each month, by branch.

0 views·0 downloads

Table

Legal Advisory Sessions

How is this data produced?

This dataset is tabulated from records in the Legal Aid Department's case management system (Sistem Pengurusan Kes Jabatan Bantuan Guaman, SPK-JBG). Each legal advisory session provided at a JBG branch is registered in the system with its date, branch, and a classification of the legal matter; this dataset counts those registrations. Every row is the number of sessions for a unique combination of month and branch.

Legal matters are classified in three levels. Category is the branch of law: criminal (Jenayah), civil (Sivil), or Syariah. Subcategory distinguishes matters within JBG's statutory remit to represent clients (bidang kuasa) from those outside it (luar bidang kuasa), where JBG may advise but not act. Case type is the specific matter, given either as the statute engaged (e.g. Akta Kontrak 1950) or the relief sought (e.g. Tuntutan Nafkah Anak).

Values in the categorical columns are given in Malay.

What caveats I should bear in mind when using this data?

Coverage. Only advisory sessions registered in SPK-JBG are captured. Informal advice, sessions handled outside the system, and demand that never reaches a JBG counter are not represented.

Sabah is absent for 2022. JBG's 2022 records contain no entries for the Sabah branch. Sabah figures for 2022 are therefore zero rather than missing, and the 2022 national total is understated by roughly the 1,000-2,000 sessions Sabah records in a typical year.

Sessions, not people. The figures count advisory sessions, not distinct individuals. A person who returns for further advice is counted each time.

Branch, not residence. The branch records where advice was given, not where the client lives. State figures describe where JBG delivered services, and should not be read as demand by state of residence - particularly for Ibu Pejabat in W.P. Putrajaya, which serves walk-ins from across the Klang Valley.

Metadata

Dataset description

Number of legal advisory sessions provided by the Legal Aid Department (JBG) each month, by branch.

Variable definitions
  • Date
  • State
  • Branch
  • Legal Advisory Sessions
Last updated:

07 Aug 2026, 12:00

Next update:

31 Aug 2027, 12:00

Data source(s)
  • Legal Aid Department
License

This data is made open under the Creative Commons Attribution 4.0 International License (CC BY 4.0). A copy of the license is available Here.

Download

Data
Full Dataset (CSV)

Full Dataset (CSV)

Recommended for individuals seeking an Excel-friendly format.

0

Full Dataset (Parquet)

Full Dataset (Parquet)

Recommended for data scientists seeking to work with data via code.

0

Code

Connect directly to the data with Python.

# If not already installed, do: pip install pandas fastparquet import pandas as pd URL_DATA = 'https://storage.data.gov.my/publicadmin/legal_advisory_branch.parquet' df = pd.read_parquet(URL_DATA) if 'date' in df.columns: df['date'] = pd.to_datetime(df['date']) print(df)

Sample OpenAPI query

The following code is an example of how to make an API query to retrieve the data catalogue mentioned above. You can use different programming languages by switching the code accordingly. For a complete guide on possible query parameters and syntax, please refer to the official Open API Documentation.

import requests import pprint url = "https://api.data.gov.my/data-catalogue?id=legal_advisory_branch&limit=3" response_json = requests.get(url=url).json() pprint.pprint(response_json)