Number of legal advisory sessions provided by the Legal Aid Department (JBG) each month, by branch and category of legal matter.
0 views·0 downloads
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, branch and case category.
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.
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.
Number of legal advisory sessions provided by the Legal Aid Department (JBG) each month, by branch and category of legal matter.
Name in Dataset | Variable | Definition |
|---|---|---|
date (Date) | Date | The date in YYYY-MM-DD format, with DD set to 01 as the data is at monthly frequency |
state (Categorical) | State | One of 16 states; the state in which the JBG branch is located |
branch (Categorical) | Branch | One of 23 JBG branches; 15 are state or federal territory offices, 7 are sub-state offices, and 'Ibu Pejabat' is the department's headquarters in W.P. Putrajaya |
category (Categorical) | Case Category | The branch of law the matter falls under: 'Jenayah' (criminal), 'Sivil' (civil), or 'Syariah' |
cases (Integer) | Legal Advisory Sessions | The number of legal advisory sessions registered |
07 Aug 2026, 12:00
31 Aug 2027, 12:00
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.
Full Dataset (CSV)
Recommended for individuals seeking an Excel-friendly format.
0
Full Dataset (Parquet)
Recommended for data scientists seeking to work with data via code.
0
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_category.parquet'
df = pd.read_parquet(URL_DATA)
if 'date' in df.columns: df['date'] = pd.to_datetime(df['date'])
print(df)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_category&limit=3"
response_json = requests.get(url=url).json()
pprint.pprint(response_json)© 2026 Public Sector Open Data