Documentation Index
Fetch the complete documentation index at: https://docs.judit.io/llms.txt
Use this file to discover all available pages before exploring further.
🤖 The National Electronic Justice Gazette (DJEN) monitoring returns thecommunicationobject. Each object represents a DJEN publication that matched the monitored term. The root contains publication metadata (dates, court, type). Recipients are in therecipientsarray and their linked lawyers inrecipient_lawyers.
General Structure
A communication JSON is organized into 4 main blocks:- Publication Metadata (root): Identification, dates, status, court and communication type.
- Recipients (
recipients): People directly mentioned in the publication — can be lawyers or non-lawyers (parties in the lawsuit). - Recipient Lawyers (
recipient_lawyers): Lawyers linked to the parties, with OAB registration data. - Full Text (
text): Complete content of the publication as extracted from the DJEN.
Data Dictionary
1. Publication Metadata (Object Root)
These properties appear directly at the root of theresponse_data object.
Required fields
| Property | Type | Description |
|---|---|---|
communication_id | string | Unique identifier of the communication in the Judit system. |
active | boolean | Indicates whether the communication is active (true) or has been canceled (false). |
date_availability | string (ISO 8601) | Date when the publication became available in the DJEN. |
date_shipping | string (ISO 8601) | Dispatch/sending date of the communication by the court. |
hash | string | Unique publication hash, identifier from the DJEN. |
lawsuit_code | string | Linked lawsuit number in CNJ format (e.g., "0000000-00.0000.8.00.0000"). |
tribunal_acronym | string | Official court acronym (e.g., "TJSP", "TJRJ", "TRT2"). |
status | string | Publication status in the DJEN (e.g., "P" for published). |
text | string | Full text of the publication as extracted from the National Electronic Justice Gazette. |
source | string | Source system of the publication (e.g., "pje", "esaj"). |
Optional fields
| Property | Type | Description |
|---|---|---|
classification_code | string | Procedural class code associated with the communication. |
classification_name | string | Procedural class name (e.g., "ENFORCEMENT OF EXTRAJUDICIAL TITLE"). |
date_cancellation | string (ISO 8601) | Cancellation date of the communication, when applicable. |
reason_cancellation | string | Reason for the cancellation of the communication, when applicable. |
api_id | number | Internal ID of the communication in the source system. |
middle | string | Abbreviated code of the publication vehicle (e.g., "D" for DJEN). |
full_middle | string | Full name of the publication vehicle (e.g., "NATIONAL ELECTRONIC JUSTICE GAZETTE"). |
name_organ | string | Name of the court organ responsible for the publication (e.g., "1st CIVIL COURT"). |
communication_number | number | Sequential number of the communication within the DJEN edition. |
communication_type | string | Communication type (e.g., "INTIMATION", "SUMMONS"). |
document_type | string | Type of published document (e.g., "DECISION", "ORDER", "JUDGMENT"). |
integrate_api | boolean | Indicates whether the communication was integrated via an external API. |
2. Recipients (recipients)
Array with the people directly mentioned in the publication — can be lawyers or non-lawyers (parties in the lawsuit). All fields are required.
| Property | Type | Description |
|---|---|---|
communication_id | number | Internal ID of the communication the recipient is linked to. |
name | string | Full name of the recipient as it appears in the publication. |
side | string | Party side in the lawsuit: "Active" or "Passive". |
3. Recipient Lawyers (recipient_lawyers)
Array with the lawyers linked to the communication recipients. All fields are required.
Link object root
| Property | Type | Description |
|---|---|---|
id | number | Unique identifier of the lawyer-communication link. |
lawyer_id | number | Lawyer ID (reference to the lawyer object). |
communication_id | number | Internal communication ID the lawyer is linked to. |
created_at | string | Creation date of the link record. |
updated_at | string | Last update date of the link record. |
Nested lawyer object
| Property | Type | Description |
|---|---|---|
id | number | Unique lawyer identifier in the system. |
name | string | Lawyer’s full name. |
license_code | string | OAB registration number. |
license_state | string | OAB state section (e.g., "SP", "RJ"). |
Payload Example (Communication)
Next Steps
- 👉 Official Gazette Monitoring: See how to set up DJEN monitoring and receive publications via webhook.