--- language: - el license: cc-by-4.0 pretty_name: OpenGov Greek Public Deliberations v2 tags: - greek - deliberations - public-consultation - government - civic-participation - legislation - legal size_categories: - 1K | Ordered list of legislative articles included in the draft under consultation. | | `articles[].article_id` | int64 | Internal id of the article. | | `articles[].title` | string | Article heading as published. | | `articles[].url` | string | Canonical URL of the article on `opengov.gr`. | | `articles[].body_text` | string | Plain-text body of the article (extracted from the original HTML, NFC-normalized). | | `articles[].comments` | list | Ordered list of citizen / organization comments on this specific article. | | `articles[].comments[].comment_row_id`| int64 | Globally unique primary key for each comment. | | `articles[].comments[].content` | string | Plain-text content of the comment (NFC-normalized). | | `articles[].comments[].date` | timestamp[us] | Submission date/time of the comment. | | `documents` | list | Ordered list of supporting documents attached to the consultation. | | `documents[].document_id` | int64 | Internal id of the document. | | `documents[].title` | string | Title of the document. | | `documents[].url` | string | URL of the document on `opengov.gr`. | | `documents[].type` | string | Document type, one of `law_draft`, `analysis`, `other_draft`, `other_report`, `deliberation_report`, `other`. | **Note on Timestamps** All `timestamp[us]` fields in this dataset (`start_date`, `end_date`, `scraped_at`, `articles[].comments[].date`) are stored as timezone-naive values (no timezone tag in the schema), but the wall-clock values represent **Athens local time** (`Europe/Athens` - EET in winter, EEST in summer). This matches the local time configured on the source platform `opengov.gr`, which is operated by the Greek government (EKDDA). The values are therefore *not* UTC and *not* US time. To work with these timestamps in a timezone-aware way, localize them on read, e.g.: ```python import pandas as pd df = pd.read_parquet("opengov_deliberations_v2.parquet") df["start_date"] = df["start_date"].dt.tz_localize( "Europe/Athens", ambiguous="NaT", nonexistent="shift_forward" ) ``` **Dataset Statistics** * Consultations (rows): 1.168 * Articles (nested): 30.505 * Comments (nested): 348.380 * Documents (nested): 2.286 * Ministries covered: 36 * Coverage (consultation start dates): 2009-10-19 - 2026-03-31 * Scrape window: 2026-04-06 - 2026-04-08 * Size: 357,71 MB * Words: 82.937.627 (counted on all natural-language fields, whitespace-separated) * Tokens: 111.390.719 (counted on all natural-language fields with the `nlpaueb/bert-base-greek-uncased-v1` WordPiece tokenizer, no special tokens, no truncation) The fields included in the word/token count are: `title`, `start_minister_message`, `end_minister_message`, `ministry.name`, `articles[].title`, `articles[].body_text`, `articles[].comments[].content`, `documents[].title`. Identifiers, URLs, timestamps, and short categorical fields (`ministry.code`, `documents[].type`) are excluded. **Usage** This dataset is useful for: * Natural Language Processing (NLP) tasks for Modern Greek, especially in the legal and legislative register * Argument mining, opinion analysis, and stance detection on civic-participation data * Summarization, retrieval, and question answering over draft Greek legislation * Civic-tech applications: tracking legislative activity, citizen engagement metrics, ministry-level analyses * Building Greek language models, lexicons, or domain-adapted embeddings for the legal/policy domain * Sociolinguistic and political-science research on Greek public deliberation 2009–2026 The text in `articles[].body_text` is extracted from the original HTML on `opengov.gr` via plain-text stripping and is whitespace- and unicode-normalized; users who require the original HTML formatting should refer back to the source URLs (`articles[].url`). Comment text (`articles[].comments[].content`) is preserved as submitted by users on the platform, with usernames anonymized at source by `opengov.gr`. **License** This dataset is licensed under the [Creative Commons Attribution 4.0 International (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/) license. The license is a forward-compatible upgrade of the [CC BY 3.0 GR](https://creativecommons.org/licenses/by/3.0/gr/) license under which `opengov.gr` itself releases its content. Per the official [`opengov.gr` Terms of Use](https://www.opengov.gr/home/%CF%8C%CF%81%CE%BF%CE%B9-%CF%87%CF%81%CE%AE%CF%83%CE%B7%CF%82) (operated by the National Centre for Public Administration and Local Government - EKDDA): *"Το συνολικό περιεχόμενο του παρόντος δικτυακού τόπου διατίθεται στο κοινό με τους ειδικότερους όρους της Ελληνικής άδειας Creative Commons Αναφορά Προέλευσης (CC BY v.3.0)..."*. Citizen comments are also released under Creative Commons by participation, per the [`opengov.gr` Πλαίσιο Αρχών](http://www.opengov.gr/home/?page_id=312). This is consistent with Greek Law 4727/2020 (art. 66) and EU Directive 2019/1024 on the re-use of public sector information. When using this dataset, please attribute: > *OpenGov Greek Public Deliberations v2*, glossAPI (EELLAK), derived from the OpenGov.gr platform of the Hellenic Republic / National Centre for Public Administration and Local Government (EKDDA), licensed under CC BY 4.0. **Contact** For feedback contact: glossapi.team@eellak.gr