| {"time": "2024-04-29T15:33:10+00:00", "type": "pr", "payload": {"url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111", "id": 1846006717, "node_id": "PR_kwDOKNhT9c5uB9O9", "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111", "diff_url": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111.diff", "patch_url": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111.patch", "issue_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/111", "number": 111, "state": "closed", "locked": false, "title": "chore(deps): update mypy requirement from ==1.9.* to ==1.10.*", "user": {"login": "dependabot[bot]", "id": 49699333, "node_id": "MDM6Qm90NDk2OTkzMzM=", "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dependabot%5Bbot%5D", "html_url": "https://github.com/apps/dependabot", "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}, "body": "Updates the requirements on [mypy](https://github.com/python/mypy) to permit the latest version.\n<details>\n<summary>Changelog</summary>\n<p><em>Sourced from <a href=\"https://github.com/python/mypy/blob/master/CHANGELOG.md\">mypy's changelog</a>.</em></p>\n<blockquote>\n<h1>Mypy Release Notes</h1>\n<h2>Next release</h2>\n<h2>Mypy 1.10</h2>\n<p>We\u2019ve just uploaded mypy 1.10 to the Python Package Index (<a href=\"https://pypi.org/project/mypy/\">PyPI</a>). Mypy is a static type checker for Python. This release includes new features, performance improvements and bug fixes. You can install it as follows:</p>\n<pre><code>python3 -m pip install -U mypy\n</code></pre>\n<p>You can read the full documentation for this release on <a href=\"http://mypy.readthedocs.io\">Read the Docs</a>.</p>\n<h4>Support TypeIs (PEP 742)</h4>\n<p>Mypy now supports <code>TypeIs</code> (<a href=\"https://peps.python.org/pep-0742/\">PEP 742</a>), which allows\nfunctions to narrow the type of a value, similar to <code>isinstance()</code>. Unlike <code>TypeGuard</code>,\n<code>TypeIs</code> can narrow in both the <code>if</code> and <code>else</code> branches of an if statement:</p>\n<pre lang=\"python\"><code>from typing_extensions import TypeIs\n<p>def is_str(s: object) -> TypeIs[str]:\nreturn isinstance(s, str)</p>\n<p>def f(o: str | int) -> None:\nif is_str(o):\n# Type of o is 'str'\n...\nelse:\n# Type of o is 'int'\n...\n</code></pre></p>\n<p><code>TypeIs</code> will be added to the <code>typing</code> module in Python 3.13, but it\ncan be used on earlier Python versions by importing it from\n<code>typing_extensions</code>.</p>\n<p>This feature was contributed by Jelle Zijlstra (PR <a href=\"https://redirect.github.com/python/mypy/pull/16898\">16898</a>).</p>\n<h4>Support TypeVar Defaults (PEP 696)</h4>\n<p><a href=\"https://peps.python.org/pep-0696/\">PEP 696</a> adds support for type parameter defaults.\nExample:</p>\n<pre lang=\"python\"><code>from typing import Generic\nfrom typing_extensions import TypeVar\n<p></tr></table>\n</code></pre></p>\n</blockquote>\n<p>... (truncated)</p>\n</details>\n<details>\n<summary>Commits</summary>\n<ul>\n<li><a href=\"https://github.com/python/mypy/commit/3faf0fc4798ec3ee6b1cd123965193dc0a753fb0\"><code>3faf0fc</code></a> Remove +dev for version for release 1.10</li>\n<li><a href=\"https://github.com/python/mypy/commit/a5998d20402515f0c0bf05c7fe1029e93aa9bfa8\"><code>a5998d2</code></a> Update CHANGELOG.md (<a href=\"https://redirect.github.com/python/mypy/issues/17159\">#17159</a>)</li>\n<li><a href=\"https://github.com/python/mypy/commit/62ea5b01f0c0c99e7db93326cb8d219eecfb3cb6\"><code>62ea5b0</code></a> Various updates to changelog for 1.10 (<a href=\"https://redirect.github.com/python/mypy/issues/17158\">#17158</a>)</li>\n<li><a href=\"https://github.com/python/mypy/commit/2f0864c4e55a74700d8ce2d97ab2d3ca2b288513\"><code>2f0864c</code></a> Update CHANGELOG.md with draft for release 1.10 (<a href=\"https://redirect.github.com/python/mypy/issues/17150\">#17150</a>)</li>\n<li><a href=\"https://github.com/python/mypy/commit/e1443bbade91118794055449cc8b4b4f7fd08b7d\"><code>e1443bb</code></a> fix: incorrect returned type of access descriptors on unions of types (<a href=\"https://redirect.github.com/python/mypy/issues/16604\">#16604</a>)</li>\n<li><a href=\"https://github.com/python/mypy/commit/5161ac2e5b73dc7597536eb4444219868317e5d9\"><code>5161ac2</code></a> Sync typeshed (<a href=\"https://redirect.github.com/python/mypy/issues/17124\">#17124</a>)</li>\n<li><a href=\"https://github.com/python/mypy/commit/e2fc1f28935806ca04b18fab277217f583b51594\"><code>e2fc1f2</code></a> Fix crash when expanding invalid Unpack in a <code>Callable</code> alias (<a href=\"https://redirect.github.com/python/mypy/issues/17028\">#17028</a>)</li>\n<li><a href=\"https://github.com/python/mypy/commit/3ff6e47c57a67e807e0b4579a816b4f66ab16824\"><code>3ff6e47</code></a> Docs: docstrings in checker.py, ast_helpers.py (<a href=\"https://redirect.github.com/python/mypy/issues/16908\">#16908</a>)</li>\n<li><a href=\"https://github.com/python/mypy/commit/732d98ecb2a98e4eaea14aba1ed8ac9c1f5ccdb6\"><code>732d98e</code></a> Fix string formatting for string enums (<a href=\"https://redirect.github.com/python/mypy/issues/16555\">#16555</a>)</li>\n<li><a href=\"https://github.com/python/mypy/commit/80190101f68b52e960c22572ed6cc814de078b9c\"><code>8019010</code></a> Narrow individual items when matching a tuple to a sequence pattern (<a href=\"https://redirect.github.com/python/mypy/issues/16905\">#16905</a>)</li>\n<li>Additional commits viewable in <a href=\"https://github.com/python/mypy/compare/1.9.0...v1.10.0\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n</details>", "created_at": "2024-04-29T15:33:10Z", "updated_at": "2024-05-28T18:28:28Z", "closed_at": "2024-05-28T18:28:19Z", "merged_at": "2024-05-28T18:28:19Z", "merge_commit_sha": "e2a531d0ee50c814e307a62f82054831f0358edd", "assignees": [], "requested_reviewers": [], "requested_teams": [], "labels": [{"id": 5927009393, "node_id": "LA_kwDOKNhT9c8AAAABYUb8cQ", "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/labels/dependencies", "name": "dependencies", "color": "0366d6", "default": false, "description": "Pull requests that update a dependency file"}, {"id": 5927030280, "node_id": "LA_kwDOKNhT9c8AAAABYUdOCA", "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/labels/python", "name": "python", "color": "2b67c6", "default": false, "description": "Pull requests that update Python code"}], "milestone": null, "draft": false, "commits_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111/commits", "review_comments_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111/comments", "review_comment_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/comments{/number}", "comments_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/111/comments", "statuses_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/statuses/d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c", "head": {"label": "OpenJobDescription:dependabot/pip/mypy-eq-1.10.star", "ref": "dependabot/pip/mypy-eq-1.10.star", "sha": "d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c", "user": {"login": "OpenJobDescription", "id": 142452466, "node_id": "O_kgDOCH2m8g", "avatar_url": "https://avatars.githubusercontent.com/u/142452466?v=4", "gravatar_id": "", "url": "https://api.github.com/users/OpenJobDescription", "html_url": "https://github.com/OpenJobDescription", "followers_url": "https://api.github.com/users/OpenJobDescription/followers", "following_url": "https://api.github.com/users/OpenJobDescription/following{/other_user}", "gists_url": "https://api.github.com/users/OpenJobDescription/gists{/gist_id}", "starred_url": "https://api.github.com/users/OpenJobDescription/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/OpenJobDescription/subscriptions", "organizations_url": "https://api.github.com/users/OpenJobDescription/orgs", "repos_url": "https://api.github.com/users/OpenJobDescription/repos", "events_url": "https://api.github.com/users/OpenJobDescription/events{/privacy}", "received_events_url": "https://api.github.com/users/OpenJobDescription/received_events", "type": "Organization", "user_view_type": "public", "site_admin": false}, "repo": {"id": 685265909, "node_id": "R_kgDOKNhT9Q", "name": "openjd-model-for-python", "full_name": "OpenJobDescription/openjd-model-for-python", "private": false, "owner": {"login": "OpenJobDescription", "id": 142452466, "node_id": "O_kgDOCH2m8g", "avatar_url": "https://avatars.githubusercontent.com/u/142452466?v=4", "gravatar_id": "", "url": "https://api.github.com/users/OpenJobDescription", "html_url": "https://github.com/OpenJobDescription", "followers_url": "https://api.github.com/users/OpenJobDescription/followers", "following_url": "https://api.github.com/users/OpenJobDescription/following{/other_user}", "gists_url": "https://api.github.com/users/OpenJobDescription/gists{/gist_id}", "starred_url": "https://api.github.com/users/OpenJobDescription/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/OpenJobDescription/subscriptions", "organizations_url": "https://api.github.com/users/OpenJobDescription/orgs", "repos_url": "https://api.github.com/users/OpenJobDescription/repos", "events_url": "https://api.github.com/users/OpenJobDescription/events{/privacy}", "received_events_url": "https://api.github.com/users/OpenJobDescription/received_events", "type": "Organization", "user_view_type": "public", "site_admin": false}, "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python", "description": "Provides a Python implementation of the data model for Open Job Description's template schemas.", "fork": false, "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python", "forks_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/forks", "keys_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/teams", "hooks_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/hooks", "issue_events_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/events{/number}", "events_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/events", "assignees_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/assignees{/user}", "branches_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/branches{/branch}", "tags_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/tags", "blobs_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/refs{/sha}", "trees_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/statuses/{sha}", "languages_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/languages", "stargazers_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/stargazers", "contributors_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contributors", "subscribers_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/subscribers", "subscription_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/subscription", "commits_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/commits{/sha}", "git_commits_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/commits{/sha}", "comments_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/comments{/number}", "issue_comment_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/comments{/number}", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/{+path}", "compare_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/merges", "archive_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/downloads", "issues_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues{/number}", "pulls_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls{/number}", "milestones_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/milestones{/number}", "notifications_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/labels{/name}", "releases_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/releases{/id}", "deployments_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/deployments", "created_at": "2023-08-30T21:28:48Z", "updated_at": "2026-05-19T19:09:34Z", "pushed_at": "2026-05-19T19:09:34Z", "git_url": "git://github.com/OpenJobDescription/openjd-model-for-python.git", "ssh_url": "git@github.com:OpenJobDescription/openjd-model-for-python.git", "clone_url": "https://github.com/OpenJobDescription/openjd-model-for-python.git", "svn_url": "https://github.com/OpenJobDescription/openjd-model-for-python", "homepage": "https://github.com/OpenJobDescription/openjd-specifications/wiki", "size": 488, "stargazers_count": 12, "watchers_count": 12, "language": "Python", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": false, "has_pages": false, "has_discussions": false, "forks_count": 20, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 9, "license": {"key": "apache-2.0", "name": "Apache License 2.0", "spdx_id": "Apache-2.0", "url": "https://api.github.com/licenses/apache-2.0", "node_id": "MDc6TGljZW5zZTI="}, "allow_forking": true, "is_template": false, "web_commit_signoff_required": false, "has_pull_requests": true, "pull_request_creation_policy": "all", "topics": [], "visibility": "public", "forks": 20, "open_issues": 9, "watchers": 12, "default_branch": "mainline"}}, "base": {"label": "OpenJobDescription:mainline", "ref": "mainline", "sha": "6f721b15ef410d0d4ffce45b8592d30496e5981b", "user": {"login": "OpenJobDescription", "id": 142452466, "node_id": "O_kgDOCH2m8g", "avatar_url": "https://avatars.githubusercontent.com/u/142452466?v=4", "gravatar_id": "", "url": "https://api.github.com/users/OpenJobDescription", "html_url": "https://github.com/OpenJobDescription", "followers_url": "https://api.github.com/users/OpenJobDescription/followers", "following_url": "https://api.github.com/users/OpenJobDescription/following{/other_user}", "gists_url": "https://api.github.com/users/OpenJobDescription/gists{/gist_id}", "starred_url": "https://api.github.com/users/OpenJobDescription/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/OpenJobDescription/subscriptions", "organizations_url": "https://api.github.com/users/OpenJobDescription/orgs", "repos_url": "https://api.github.com/users/OpenJobDescription/repos", "events_url": "https://api.github.com/users/OpenJobDescription/events{/privacy}", "received_events_url": "https://api.github.com/users/OpenJobDescription/received_events", "type": "Organization", "user_view_type": "public", "site_admin": false}, "repo": {"id": 685265909, "node_id": "R_kgDOKNhT9Q", "name": "openjd-model-for-python", "full_name": "OpenJobDescription/openjd-model-for-python", "private": false, "owner": {"login": "OpenJobDescription", "id": 142452466, "node_id": "O_kgDOCH2m8g", "avatar_url": "https://avatars.githubusercontent.com/u/142452466?v=4", "gravatar_id": "", "url": "https://api.github.com/users/OpenJobDescription", "html_url": "https://github.com/OpenJobDescription", "followers_url": "https://api.github.com/users/OpenJobDescription/followers", "following_url": "https://api.github.com/users/OpenJobDescription/following{/other_user}", "gists_url": "https://api.github.com/users/OpenJobDescription/gists{/gist_id}", "starred_url": "https://api.github.com/users/OpenJobDescription/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/OpenJobDescription/subscriptions", "organizations_url": "https://api.github.com/users/OpenJobDescription/orgs", "repos_url": "https://api.github.com/users/OpenJobDescription/repos", "events_url": "https://api.github.com/users/OpenJobDescription/events{/privacy}", "received_events_url": "https://api.github.com/users/OpenJobDescription/received_events", "type": "Organization", "user_view_type": "public", "site_admin": false}, "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python", "description": "Provides a Python implementation of the data model for Open Job Description's template schemas.", "fork": false, "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python", "forks_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/forks", "keys_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/teams", "hooks_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/hooks", "issue_events_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/events{/number}", "events_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/events", "assignees_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/assignees{/user}", "branches_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/branches{/branch}", "tags_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/tags", "blobs_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/refs{/sha}", "trees_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/statuses/{sha}", "languages_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/languages", "stargazers_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/stargazers", "contributors_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contributors", "subscribers_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/subscribers", "subscription_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/subscription", "commits_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/commits{/sha}", "git_commits_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/commits{/sha}", "comments_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/comments{/number}", "issue_comment_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/comments{/number}", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/{+path}", "compare_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/merges", "archive_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/downloads", "issues_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues{/number}", "pulls_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls{/number}", "milestones_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/milestones{/number}", "notifications_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/labels{/name}", "releases_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/releases{/id}", "deployments_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/deployments", "created_at": "2023-08-30T21:28:48Z", "updated_at": "2026-05-19T19:09:34Z", "pushed_at": "2026-05-19T19:09:34Z", "git_url": "git://github.com/OpenJobDescription/openjd-model-for-python.git", "ssh_url": "git@github.com:OpenJobDescription/openjd-model-for-python.git", "clone_url": "https://github.com/OpenJobDescription/openjd-model-for-python.git", "svn_url": "https://github.com/OpenJobDescription/openjd-model-for-python", "homepage": "https://github.com/OpenJobDescription/openjd-specifications/wiki", "size": 488, "stargazers_count": 12, "watchers_count": 12, "language": "Python", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": false, "has_pages": false, "has_discussions": false, "forks_count": 20, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 9, "license": {"key": "apache-2.0", "name": "Apache License 2.0", "spdx_id": "Apache-2.0", "url": "https://api.github.com/licenses/apache-2.0", "node_id": "MDc6TGljZW5zZTI="}, "allow_forking": true, "is_template": false, "web_commit_signoff_required": false, "has_pull_requests": true, "pull_request_creation_policy": "all", "topics": [], "visibility": "public", "forks": 20, "open_issues": 9, "watchers": 12, "default_branch": "mainline"}}, "_links": {"self": {"href": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111"}, "html": {"href": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111"}, "issue": {"href": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/111"}, "comments": {"href": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/111/comments"}, "review_comments": {"href": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111/comments"}, "review_comment": {"href": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/comments{/number}"}, "commits": {"href": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111/commits"}, "statuses": {"href": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/statuses/d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c"}}, "author_association": "CONTRIBUTOR", "auto_merge": null, "assignee": null, "active_lock_reason": null, "merged": true, "mergeable": null, "rebaseable": null, "mergeable_state": "unknown", "merged_by": {"login": "amarsjac", "id": 131478790, "node_id": "U_kgDOB9Y1Bg", "avatar_url": "https://avatars.githubusercontent.com/u/131478790?v=4", "gravatar_id": "", "url": "https://api.github.com/users/amarsjac", "html_url": "https://github.com/amarsjac", "followers_url": "https://api.github.com/users/amarsjac/followers", "following_url": "https://api.github.com/users/amarsjac/following{/other_user}", "gists_url": "https://api.github.com/users/amarsjac/gists{/gist_id}", "starred_url": "https://api.github.com/users/amarsjac/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/amarsjac/subscriptions", "organizations_url": "https://api.github.com/users/amarsjac/orgs", "repos_url": "https://api.github.com/users/amarsjac/repos", "events_url": "https://api.github.com/users/amarsjac/events{/privacy}", "received_events_url": "https://api.github.com/users/amarsjac/received_events", "type": "User", "user_view_type": "public", "site_admin": false}, "comments": 1, "review_comments": 0, "maintainer_can_modify": false, "commits": 1, "additions": 1, "deletions": 1, "changed_files": 1}} |
| {"time": "2024-04-29T15:33:10+00:00", "type": "timeline:review_requested", "payload": {"id": 12645097174, "node_id": "RRE_lADOKNhT9c6HQ5M1zwAAAALxtN7W", "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/events/12645097174", "actor": {"login": "dependabot[bot]", "id": 49699333, "node_id": "MDM6Qm90NDk2OTkzMzM=", "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dependabot%5Bbot%5D", "html_url": "https://github.com/apps/dependabot", "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}, "event": "review_requested", "commit_id": null, "commit_url": null, "created_at": "2024-04-29T15:33:10Z", "review_requester": {"login": "dependabot[bot]", "id": 49699333, "node_id": "MDM6Qm90NDk2OTkzMzM=", "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dependabot%5Bbot%5D", "html_url": "https://github.com/apps/dependabot", "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}, "requested_team": {"name": "Developers", "id": 8513209, "node_id": "T_kwDOCH2m8s4Agea5", "slug": "developers", "description": "", "privacy": "closed", "notification_setting": "notifications_enabled", "url": "https://api.github.com/organizations/142452466/team/8513209", "html_url": "https://github.com/orgs/OpenJobDescription/teams/developers", "members_url": "https://api.github.com/organizations/142452466/team/8513209/members{/member}", "repositories_url": "https://api.github.com/organizations/142452466/team/8513209/repos", "type": "organization", "organization_id": 142452466, "permission": "push", "permissions": {"admin": false, "maintain": false, "push": true, "triage": true, "pull": true}, "parent": null}, "performed_via_github_app": null}} |
| {"time": "2024-04-29T15:33:11+00:00", "type": "timeline:labeled", "payload": {"id": 12645097253, "node_id": "LE_lADOKNhT9c6HQ5M1zwAAAALxtN8l", "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/events/12645097253", "actor": {"login": "dependabot[bot]", "id": 49699333, "node_id": "MDM6Qm90NDk2OTkzMzM=", "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dependabot%5Bbot%5D", "html_url": "https://github.com/apps/dependabot", "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}, "event": "labeled", "commit_id": null, "commit_url": null, "created_at": "2024-04-29T15:33:11Z", "label": {"name": "dependencies", "color": "0366d6"}, "performed_via_github_app": null}} |
| {"time": "2024-04-29T15:33:11+00:00", "type": "timeline:labeled", "payload": {"id": 12645097265, "node_id": "LE_lADOKNhT9c6HQ5M1zwAAAALxtN8x", "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/events/12645097265", "actor": {"login": "dependabot[bot]", "id": 49699333, "node_id": "MDM6Qm90NDk2OTkzMzM=", "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dependabot%5Bbot%5D", "html_url": "https://github.com/apps/dependabot", "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}, "event": "labeled", "commit_id": null, "commit_url": null, "created_at": "2024-04-29T15:33:11Z", "label": {"name": "python", "color": "2b67c6"}, "performed_via_github_app": null}} |
| {"time": "2024-04-29T15:33:23+00:00", "type": "review", "payload": {"id": 2028859394, "node_id": "PRR_kwDOKNhT9c547fAC", "user": {"login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}, "body": "", "state": "APPROVED", "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111#pullrequestreview-2028859394", "pull_request_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111", "author_association": "NONE", "_links": {"html": {"href": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111#pullrequestreview-2028859394"}, "pull_request": {"href": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111"}}, "submitted_at": "2024-04-29T15:33:23Z", "commit_id": "d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c"}} |
| {"time": "2024-04-29T15:33:23+00:00", "type": "timeline:reviewed", "payload": {"id": 2028859394, "node_id": "PRR_kwDOKNhT9c547fAC", "user": {"login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}, "body": "", "commit_id": "d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c", "state": "approved", "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111#pullrequestreview-2028859394", "pull_request_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111", "_links": {"html": {"href": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111#pullrequestreview-2028859394"}, "pull_request": {"href": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111"}}, "submitted_at": "2024-04-29T15:33:23Z", "updated_at": "2024-05-28T18:21:45Z", "author_association": "NONE", "event": "reviewed"}} |
| {"time": "2024-05-28T18:18:05+00:00", "type": "timeline:head_ref_force_pushed", "payload": {"id": 12961601668, "node_id": "HRFPE_lADOKNhT9c6HQ5M1zwAAAAMEkliE", "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/events/12961601668", "actor": {"login": "dependabot[bot]", "id": 49699333, "node_id": "MDM6Qm90NDk2OTkzMzM=", "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dependabot%5Bbot%5D", "html_url": "https://github.com/apps/dependabot", "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}, "event": "head_ref_force_pushed", "commit_id": "2d3b59d7f6d310f801f2142db1bf0e39f9d14276", "commit_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/commits/2d3b59d7f6d310f801f2142db1bf0e39f9d14276", "created_at": "2024-05-28T18:18:05Z", "performed_via_github_app": null}} |
| {"time": "2024-05-28T18:18:16+00:00", "type": "review", "payload": {"id": 2083571699, "node_id": "PRR_kwDOKNhT9c58MMfz", "user": {"login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}, "body": "", "state": "APPROVED", "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111#pullrequestreview-2083571699", "pull_request_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111", "author_association": "NONE", "_links": {"html": {"href": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111#pullrequestreview-2083571699"}, "pull_request": {"href": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111"}}, "submitted_at": "2024-05-28T18:18:16Z", "commit_id": "d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c"}} |
| {"time": "2024-05-28T18:18:16+00:00", "type": "timeline:reviewed", "payload": {"id": 2083571699, "node_id": "PRR_kwDOKNhT9c58MMfz", "user": {"login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}, "body": "", "commit_id": "d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c", "state": "approved", "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111#pullrequestreview-2083571699", "pull_request_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111", "_links": {"html": {"href": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111#pullrequestreview-2083571699"}, "pull_request": {"href": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111"}}, "submitted_at": "2024-05-28T18:18:16Z", "updated_at": "2024-05-28T18:21:45Z", "author_association": "NONE", "event": "reviewed"}} |
| {"time": "2024-05-28T18:21:43+00:00", "type": "commit", "payload": {"sha": "d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c", "node_id": "C_kwDOKNhT9doAKGQ0ZTZkYmJhZWE4ZTg3MWMxNmE4YmRhY2JiOTNiNWNhN2YxZTBkMWM", "commit": {"author": {"name": "dependabot[bot]", "email": "49699333+dependabot[bot]@users.noreply.github.com", "date": "2024-05-28T18:21:43Z"}, "committer": {"name": "GitHub", "email": "noreply@github.com", "date": "2024-05-28T18:21:43Z"}, "message": "chore(deps): update mypy requirement from ==1.9.* to ==1.10.*\n\nUpdates the requirements on [mypy](https://github.com/python/mypy) to permit the latest version.\n- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/python/mypy/compare/1.9.0...v1.10.0)\n\n---\nupdated-dependencies:\n- dependency-name: mypy\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>", "tree": {"sha": "bd4fec82a59e3f8ce79cb3acdf51fab82e393af2", "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/trees/bd4fec82a59e3f8ce79cb3acdf51fab82e393af2"}, "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/commits/d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c", "comment_count": 0, "verification": {"verified": true, "reason": "valid", "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmViC3CRC1aQ7uu5UhlAAAcM8QAD1WMKPQqu2X5+XnoWyBNlqA\nirOi5B1DRGEGl2UtbSWwBNuNHsjvdMg5TFjIIwEif8tj+uKfuVbgdb/khJjE1hNU\nLnAiEVJqFRz7AVnU7Cp/Xh3ggalHk9gEroaLMToykXnwuuaSp2jQqkIrb7vftvIe\npMQb85ukZ5voxKvYALyE1nzmMPCjoAX//BS16kyAKu36ngfs6zFDmjQdmxLjPJQS\n1usJGaTJNTBm31C99jBN2fPTnQctxa9OqeGee5zrSErNAi7VqsMQtNLQJX6+XYLS\n58UeKD4ittcPMYOjfyXkwbbSWEM7aeFIPRFk4QdgkXYPfmEV4yHgrR0+yPHTnlEt\nQLPaRUzFnfcZyG5SB/cFJS/HH/kXsyGgmYacrNXpWdTQ5MC7nm+2367w4STv/8RX\na0QY1l/bFsK9PLxL6HAKsnkH8zm+P1+t8lnb5Y2eSP6db0HP+yBL4zeNL1ShqL++\nYzrwV+kpTaRoddolmwF2iDaEtiPVlOoeEIZrXgp6ERQYYEcjULjATF5rrzdNDJZw\nykNOEGNuALlX8vu2Pj3u60PP2fLLeIuZMQo/1xDxD7KxZQ/14nXenGn0Rmklbowi\nu88BaZYEwJENE6cKcKS/0cvGSErHyafGeZSkp+NI+fwsH3hk6AGW6GWw852kpSHz\nNGxx0NuTsmqWmvmbUKBQ\n=Ji34\n-----END PGP SIGNATURE-----\n", "payload": "tree bd4fec82a59e3f8ce79cb3acdf51fab82e393af2\nparent 6f721b15ef410d0d4ffce45b8592d30496e5981b\nauthor dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 1716920503 +0000\ncommitter GitHub <noreply@github.com> 1716920503 +0000\n\nchore(deps): update mypy requirement from ==1.9.* to ==1.10.*\n\nUpdates the requirements on [mypy](https://github.com/python/mypy) to permit the latest version.\n- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/python/mypy/compare/1.9.0...v1.10.0)\n\n---\nupdated-dependencies:\n- dependency-name: mypy\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>", "verified_at": "2024-11-30T23:19:02Z"}}, "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/commits/d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c", "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python/commit/d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c", "comments_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/commits/d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c/comments", "author": {"login": "dependabot[bot]", "id": 49699333, "node_id": "MDM6Qm90NDk2OTkzMzM=", "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dependabot%5Bbot%5D", "html_url": "https://github.com/apps/dependabot", "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}, "committer": {"login": "web-flow", "id": 19864447, "node_id": "MDQ6VXNlcjE5ODY0NDQ3", "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", "gravatar_id": "", "url": "https://api.github.com/users/web-flow", "html_url": "https://github.com/web-flow", "followers_url": "https://api.github.com/users/web-flow/followers", "following_url": "https://api.github.com/users/web-flow/following{/other_user}", "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", "organizations_url": "https://api.github.com/users/web-flow/orgs", "repos_url": "https://api.github.com/users/web-flow/repos", "events_url": "https://api.github.com/users/web-flow/events{/privacy}", "received_events_url": "https://api.github.com/users/web-flow/received_events", "type": "User", "user_view_type": "public", "site_admin": false}, "parents": [{"sha": "6f721b15ef410d0d4ffce45b8592d30496e5981b", "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/commits/6f721b15ef410d0d4ffce45b8592d30496e5981b", "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python/commit/6f721b15ef410d0d4ffce45b8592d30496e5981b"}], "stats": {"total": 2, "additions": 1, "deletions": 1}, "files": [{"sha": "a3f0086071fe7daa272d580f822b7ab49fe4aef2", "filename": "requirements-testing.txt", "status": "modified", "additions": 1, "deletions": 1, "changes": 2, "blob_url": "https://github.com/OpenJobDescription/openjd-model-for-python/blob/d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c/requirements-testing.txt", "raw_url": "https://github.com/OpenJobDescription/openjd-model-for-python/raw/d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c/requirements-testing.txt", "contents_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/contents/requirements-testing.txt?ref=d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c", "patch": "@@ -6,4 +6,4 @@ pytest-xdist == 3.5.*\n types-PyYAML ~= 6.0\n black == 24.*\n ruff == 0.4.*\n-mypy == 1.9.*\n+mypy == 1.10.*"}]}} |
| {"time": "2024-05-28T18:21:43+00:00", "type": "timeline:committed", "payload": {"sha": "d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c", "node_id": "C_kwDOKNhT9doAKGQ0ZTZkYmJhZWE4ZTg3MWMxNmE4YmRhY2JiOTNiNWNhN2YxZTBkMWM", "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/commits/d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c", "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python/commit/d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c", "author": {"name": "dependabot[bot]", "email": "49699333+dependabot[bot]@users.noreply.github.com", "date": "2024-05-28T18:21:43Z"}, "committer": {"name": "GitHub", "email": "noreply@github.com", "date": "2024-05-28T18:21:43Z"}, "tree": {"sha": "bd4fec82a59e3f8ce79cb3acdf51fab82e393af2", "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/trees/bd4fec82a59e3f8ce79cb3acdf51fab82e393af2"}, "message": "chore(deps): update mypy requirement from ==1.9.* to ==1.10.*\n\nUpdates the requirements on [mypy](https://github.com/python/mypy) to permit the latest version.\n- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/python/mypy/compare/1.9.0...v1.10.0)\n\n---\nupdated-dependencies:\n- dependency-name: mypy\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>", "parents": [{"sha": "6f721b15ef410d0d4ffce45b8592d30496e5981b", "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/git/commits/6f721b15ef410d0d4ffce45b8592d30496e5981b", "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python/commit/6f721b15ef410d0d4ffce45b8592d30496e5981b"}], "verification": {"verified": true, "reason": "valid", "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJmViC3CRC1aQ7uu5UhlAAAcM8QAD1WMKPQqu2X5+XnoWyBNlqA\nirOi5B1DRGEGl2UtbSWwBNuNHsjvdMg5TFjIIwEif8tj+uKfuVbgdb/khJjE1hNU\nLnAiEVJqFRz7AVnU7Cp/Xh3ggalHk9gEroaLMToykXnwuuaSp2jQqkIrb7vftvIe\npMQb85ukZ5voxKvYALyE1nzmMPCjoAX//BS16kyAKu36ngfs6zFDmjQdmxLjPJQS\n1usJGaTJNTBm31C99jBN2fPTnQctxa9OqeGee5zrSErNAi7VqsMQtNLQJX6+XYLS\n58UeKD4ittcPMYOjfyXkwbbSWEM7aeFIPRFk4QdgkXYPfmEV4yHgrR0+yPHTnlEt\nQLPaRUzFnfcZyG5SB/cFJS/HH/kXsyGgmYacrNXpWdTQ5MC7nm+2367w4STv/8RX\na0QY1l/bFsK9PLxL6HAKsnkH8zm+P1+t8lnb5Y2eSP6db0HP+yBL4zeNL1ShqL++\nYzrwV+kpTaRoddolmwF2iDaEtiPVlOoeEIZrXgp6ERQYYEcjULjATF5rrzdNDJZw\nykNOEGNuALlX8vu2Pj3u60PP2fLLeIuZMQo/1xDxD7KxZQ/14nXenGn0Rmklbowi\nu88BaZYEwJENE6cKcKS/0cvGSErHyafGeZSkp+NI+fwsH3hk6AGW6GWw852kpSHz\nNGxx0NuTsmqWmvmbUKBQ\n=Ji34\n-----END PGP SIGNATURE-----\n", "payload": "tree bd4fec82a59e3f8ce79cb3acdf51fab82e393af2\nparent 6f721b15ef410d0d4ffce45b8592d30496e5981b\nauthor dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 1716920503 +0000\ncommitter GitHub <noreply@github.com> 1716920503 +0000\n\nchore(deps): update mypy requirement from ==1.9.* to ==1.10.*\n\nUpdates the requirements on [mypy](https://github.com/python/mypy) to permit the latest version.\n- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/python/mypy/compare/1.9.0...v1.10.0)\n\n---\nupdated-dependencies:\n- dependency-name: mypy\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>", "verified_at": "2024-11-30T23:19:02Z"}, "event": "committed"}} |
| {"time": "2024-05-28T18:21:45+00:00", "type": "timeline:head_ref_force_pushed", "payload": {"id": 12961636808, "node_id": "HRFPE_lADOKNhT9c6HQ5M1zwAAAAMEkuHI", "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/events/12961636808", "actor": {"login": "dependabot[bot]", "id": 49699333, "node_id": "MDM6Qm90NDk2OTkzMzM=", "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dependabot%5Bbot%5D", "html_url": "https://github.com/apps/dependabot", "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}, "event": "head_ref_force_pushed", "commit_id": "d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c", "commit_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/commits/d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c", "created_at": "2024-05-28T18:21:45Z", "performed_via_github_app": null}} |
| {"time": "2024-05-28T18:22:01+00:00", "type": "review", "payload": {"id": 2083578398, "node_id": "PRR_kwDOKNhT9c58MOIe", "user": {"login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}, "body": "", "state": "APPROVED", "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111#pullrequestreview-2083578398", "pull_request_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111", "author_association": "NONE", "_links": {"html": {"href": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111#pullrequestreview-2083578398"}, "pull_request": {"href": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111"}}, "submitted_at": "2024-05-28T18:22:01Z", "commit_id": "d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c"}} |
| {"time": "2024-05-28T18:22:01+00:00", "type": "timeline:reviewed", "payload": {"id": 2083578398, "node_id": "PRR_kwDOKNhT9c58MOIe", "user": {"login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}, "body": "", "commit_id": "d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c", "state": "approved", "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111#pullrequestreview-2083578398", "pull_request_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111", "_links": {"html": {"href": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111#pullrequestreview-2083578398"}, "pull_request": {"href": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111"}}, "submitted_at": "2024-05-28T18:22:01Z", "updated_at": "2024-05-28T18:22:01Z", "author_association": "NONE", "event": "reviewed"}} |
| {"time": "2024-05-28T18:22:06+00:00", "type": "comment", "payload": {"url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/comments/2135862049", "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111#issuecomment-2135862049", "issue_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/111", "id": 2135862049, "node_id": "IC_kwDOKNhT9c5_Tqsh", "user": {"login": "sonarqubecloud[bot]", "id": 39514782, "node_id": "MDM6Qm90Mzk1MTQ3ODI=", "avatar_url": "https://avatars.githubusercontent.com/in/12526?v=4", "gravatar_id": "", "url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D", "html_url": "https://github.com/apps/sonarqubecloud", "followers_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/followers", "following_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/repos", "events_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}, "created_at": "2024-05-28T18:22:06Z", "updated_at": "2024-05-28T18:22:06Z", "author_association": "NONE", "body": "## [](https://sonarcloud.io/dashboard?id=OpenJobDescription_openjd-model-for-python&pullRequest=111) **Quality Gate passed** \nIssues \n [0 New issues](https://sonarcloud.io/project/issues?id=OpenJobDescription_openjd-model-for-python&pullRequest=111&resolved=false&sinceLeakPeriod=true) \n [0 Accepted issues](https://sonarcloud.io/project/issues?id=OpenJobDescription_openjd-model-for-python&pullRequest=111&resolutions=WONTFIX)\n\nMeasures \n [0 Security Hotspots](https://sonarcloud.io/project/security_hotspots?id=OpenJobDescription_openjd-model-for-python&pullRequest=111&resolved=false&sinceLeakPeriod=true) \n No data about Coverage \n No data about Duplication \n \n[See analysis details on SonarCloud](https://sonarcloud.io/dashboard?id=OpenJobDescription_openjd-model-for-python&pullRequest=111)\n\n", "reactions": {"url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/comments/2135862049/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0}, "performed_via_github_app": {"id": 12526, "slug": "sonarqubecloud", "node_id": "MDM6QXBwMTI1MjY=", "owner": {"login": "SonarSource", "id": 545988, "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0NTk4OA==", "avatar_url": "https://avatars.githubusercontent.com/u/545988?v=4", "gravatar_id": "", "url": "https://api.github.com/users/SonarSource", "html_url": "https://github.com/SonarSource", "followers_url": "https://api.github.com/users/SonarSource/followers", "following_url": "https://api.github.com/users/SonarSource/following{/other_user}", "gists_url": "https://api.github.com/users/SonarSource/gists{/gist_id}", "starred_url": "https://api.github.com/users/SonarSource/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/SonarSource/subscriptions", "organizations_url": "https://api.github.com/users/SonarSource/orgs", "repos_url": "https://api.github.com/users/SonarSource/repos", "events_url": "https://api.github.com/users/SonarSource/events{/privacy}", "received_events_url": "https://api.github.com/users/SonarSource/received_events", "type": "Organization", "user_view_type": "public", "site_admin": false}, "name": "SonarQubeCloud", "description": "\r\nSonarQube Cloud (formerly SonarCloud) is a SaaS code analysis tool designed to detect coding issues in 30+ languages, frameworks, and IaC platforms. Your code is checked against an extensive set of rules that cover many attributes of code, such as maintainability, reliability, and security issues, on each merge/pull request.\r\n\r\nFor those requiring US-based hosting, [SonarQube Cloud US](https://sonarqube.us/) offers the perfect alternative. If you need data residency outside the US or within the EU, [SonarQube Cloud](https://sonarcloud.io/) with this GitHub app is the ideal solution.\r\n\r\nSonarQube Cloud integrates seamlessly into your GitHub workflow and provides clear guidance for resolving any code quality and security issues detected. The majority of popular languages can be analyzed automatically; no configuration is required!\r\n\r\nWith [SonarQube Cloud](https://sonarcloud.io/github), you get:\r\n\r\n- Fast, precise static analysis and feedback on your code\r\n \r\n- Support for popular languages, frameworks, and IaC tools\r\n \r\n- Free analysis for open-source projects and private projects up to max 50k LoC\r\n \r\n- Automatic analysis of pull requests and branches with results reported inline\r\n \r\n- IDE Support with [SonarQube for IDE](https://www.sonarsource.com/products/sonarlint/) integration\r\n \r\n- Quality Gate (added as a GitHub check) acting at two different levels - first, preventing you from merging pull requests that contain issues - and later, helping you to release only clean, safe code\r\n \r\n- Sign up for SonarQube free tier and begin scanning your private and public repositories\r\n \r\n\r\nA [GitHub Action](https://github.com/marketplace/actions/sonarcloud-scan) is available in the marketplace to make it easy for you (for projects where automatic analysis isn't available). SonarQube Cloud also integrates smoothly with Jenkins, CircleCI, TravisCI, CirrusCI, and many other tools.\r\n\r\nA free tier is available that allows you to explore the benefits of SonarQube Cloud using your public and private repositories. We also provide a no-commitment, [14-day trial](https://www.sonarsource.com/products/sonarcloud/signup/) of SonarQube Cloud Team for unlimited team members, up to 1.9M LoC, AI CodeFix recommendations, and more. No need to speak with a sales rep or request a license key - get automatic code analysis results on your private projects in minutes! Want to see more examples of SonarCloud in action? You can [explore current Open Source projects in SonarCloud](https://sonarcloud.io/explore/projects?sort=-analysis_date) that are using the [Clean as You Code](https://www.sonarsource.com/solutions/our-unique-approach/) methodology.\r\n\r\nWhat are you waiting for? SonarQube Cloud helps you consistently deliver cleaner, secure software that future developers will appreciate and your users will love. Start writing Clean Code. [Now](https://www.sonarsource.com/products/sonarcloud/signup/)!", "external_url": "https://sonarcloud.io", "html_url": "https://github.com/apps/sonarqubecloud", "created_at": "2018-05-22T07:36:37Z", "updated_at": "2026-03-03T08:54:32Z", "permissions": {"checks": "write", "contents": "read", "emails": "read", "members": "read", "metadata": "read", "organization_copilot_seat_management": "read", "pull_requests": "write", "security_events": "write", "statuses": "write"}, "events": ["code_scanning_alert", "organization", "pull_request", "push", "repository"]}, "pin": null}} |
| {"time": "2024-05-28T18:22:06+00:00", "type": "timeline:commented", "payload": {"url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/comments/2135862049", "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111#issuecomment-2135862049", "issue_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/111", "id": 2135862049, "node_id": "IC_kwDOKNhT9c5_Tqsh", "user": {"login": "sonarqubecloud[bot]", "id": 39514782, "node_id": "MDM6Qm90Mzk1MTQ3ODI=", "avatar_url": "https://avatars.githubusercontent.com/in/12526?v=4", "gravatar_id": "", "url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D", "html_url": "https://github.com/apps/sonarqubecloud", "followers_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/followers", "following_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/repos", "events_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}, "created_at": "2024-05-28T18:22:06Z", "updated_at": "2024-05-28T18:22:06Z", "body": "## [](https://sonarcloud.io/dashboard?id=OpenJobDescription_openjd-model-for-python&pullRequest=111) **Quality Gate passed** \nIssues \n [0 New issues](https://sonarcloud.io/project/issues?id=OpenJobDescription_openjd-model-for-python&pullRequest=111&resolved=false&sinceLeakPeriod=true) \n [0 Accepted issues](https://sonarcloud.io/project/issues?id=OpenJobDescription_openjd-model-for-python&pullRequest=111&resolutions=WONTFIX)\n\nMeasures \n [0 Security Hotspots](https://sonarcloud.io/project/security_hotspots?id=OpenJobDescription_openjd-model-for-python&pullRequest=111&resolved=false&sinceLeakPeriod=true) \n No data about Coverage \n No data about Duplication \n \n[See analysis details on SonarCloud](https://sonarcloud.io/dashboard?id=OpenJobDescription_openjd-model-for-python&pullRequest=111)\n\n", "author_association": "NONE", "reactions": {"url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/comments/2135862049/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0}, "performed_via_github_app": {"id": 12526, "client_id": "Iv1.dc610988574d1724", "slug": "sonarqubecloud", "node_id": "MDM6QXBwMTI1MjY=", "owner": {"login": "SonarSource", "id": 545988, "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0NTk4OA==", "avatar_url": "https://avatars.githubusercontent.com/u/545988?v=4", "gravatar_id": "", "url": "https://api.github.com/users/SonarSource", "html_url": "https://github.com/SonarSource", "followers_url": "https://api.github.com/users/SonarSource/followers", "following_url": "https://api.github.com/users/SonarSource/following{/other_user}", "gists_url": "https://api.github.com/users/SonarSource/gists{/gist_id}", "starred_url": "https://api.github.com/users/SonarSource/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/SonarSource/subscriptions", "organizations_url": "https://api.github.com/users/SonarSource/orgs", "repos_url": "https://api.github.com/users/SonarSource/repos", "events_url": "https://api.github.com/users/SonarSource/events{/privacy}", "received_events_url": "https://api.github.com/users/SonarSource/received_events", "type": "Organization", "user_view_type": "public", "site_admin": false}, "name": "SonarQubeCloud", "description": "\r\nSonarQube Cloud (formerly SonarCloud) is a SaaS code analysis tool designed to detect coding issues in 30+ languages, frameworks, and IaC platforms. Your code is checked against an extensive set of rules that cover many attributes of code, such as maintainability, reliability, and security issues, on each merge/pull request.\r\n\r\nFor those requiring US-based hosting, [SonarQube Cloud US](https://sonarqube.us/) offers the perfect alternative. If you need data residency outside the US or within the EU, [SonarQube Cloud](https://sonarcloud.io/) with this GitHub app is the ideal solution.\r\n\r\nSonarQube Cloud integrates seamlessly into your GitHub workflow and provides clear guidance for resolving any code quality and security issues detected. The majority of popular languages can be analyzed automatically; no configuration is required!\r\n\r\nWith [SonarQube Cloud](https://sonarcloud.io/github), you get:\r\n\r\n- Fast, precise static analysis and feedback on your code\r\n \r\n- Support for popular languages, frameworks, and IaC tools\r\n \r\n- Free analysis for open-source projects and private projects up to max 50k LoC\r\n \r\n- Automatic analysis of pull requests and branches with results reported inline\r\n \r\n- IDE Support with [SonarQube for IDE](https://www.sonarsource.com/products/sonarlint/) integration\r\n \r\n- Quality Gate (added as a GitHub check) acting at two different levels - first, preventing you from merging pull requests that contain issues - and later, helping you to release only clean, safe code\r\n \r\n- Sign up for SonarQube free tier and begin scanning your private and public repositories\r\n \r\n\r\nA [GitHub Action](https://github.com/marketplace/actions/sonarcloud-scan) is available in the marketplace to make it easy for you (for projects where automatic analysis isn't available). SonarQube Cloud also integrates smoothly with Jenkins, CircleCI, TravisCI, CirrusCI, and many other tools.\r\n\r\nA free tier is available that allows you to explore the benefits of SonarQube Cloud using your public and private repositories. We also provide a no-commitment, [14-day trial](https://www.sonarsource.com/products/sonarcloud/signup/) of SonarQube Cloud Team for unlimited team members, up to 1.9M LoC, AI CodeFix recommendations, and more. No need to speak with a sales rep or request a license key - get automatic code analysis results on your private projects in minutes! Want to see more examples of SonarCloud in action? You can [explore current Open Source projects in SonarCloud](https://sonarcloud.io/explore/projects?sort=-analysis_date) that are using the [Clean as You Code](https://www.sonarsource.com/solutions/our-unique-approach/) methodology.\r\n\r\nWhat are you waiting for? SonarQube Cloud helps you consistently deliver cleaner, secure software that future developers will appreciate and your users will love. Start writing Clean Code. [Now](https://www.sonarsource.com/products/sonarcloud/signup/)!", "external_url": "https://sonarcloud.io", "html_url": "https://github.com/apps/sonarqubecloud", "created_at": "2018-05-22T07:36:37Z", "updated_at": "2026-03-03T08:54:32Z", "permissions": {"checks": "write", "contents": "read", "emails": "read", "members": "read", "metadata": "read", "organization_copilot_seat_management": "read", "pull_requests": "write", "security_events": "write", "statuses": "write"}, "events": ["code_scanning_alert", "organization", "pull_request", "push", "repository"]}, "event": "commented", "actor": {"login": "sonarqubecloud[bot]", "id": 39514782, "node_id": "MDM6Qm90Mzk1MTQ3ODI=", "avatar_url": "https://avatars.githubusercontent.com/in/12526?v=4", "gravatar_id": "", "url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D", "html_url": "https://github.com/apps/sonarqubecloud", "followers_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/followers", "following_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/repos", "events_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/sonarqubecloud%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}}} |
| {"time": "2024-05-28T18:28:08+00:00", "type": "review", "payload": {"id": 2083589284, "node_id": "PRR_kwDOKNhT9c58MQyk", "user": {"login": "amarsjac", "id": 131478790, "node_id": "U_kgDOB9Y1Bg", "avatar_url": "https://avatars.githubusercontent.com/u/131478790?v=4", "gravatar_id": "", "url": "https://api.github.com/users/amarsjac", "html_url": "https://github.com/amarsjac", "followers_url": "https://api.github.com/users/amarsjac/followers", "following_url": "https://api.github.com/users/amarsjac/following{/other_user}", "gists_url": "https://api.github.com/users/amarsjac/gists{/gist_id}", "starred_url": "https://api.github.com/users/amarsjac/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/amarsjac/subscriptions", "organizations_url": "https://api.github.com/users/amarsjac/orgs", "repos_url": "https://api.github.com/users/amarsjac/repos", "events_url": "https://api.github.com/users/amarsjac/events{/privacy}", "received_events_url": "https://api.github.com/users/amarsjac/received_events", "type": "User", "user_view_type": "public", "site_admin": false}, "body": "", "state": "APPROVED", "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111#pullrequestreview-2083589284", "pull_request_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111", "author_association": "CONTRIBUTOR", "_links": {"html": {"href": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111#pullrequestreview-2083589284"}, "pull_request": {"href": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111"}}, "submitted_at": "2024-05-28T18:28:08Z", "commit_id": "d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c"}} |
| {"time": "2024-05-28T18:28:08+00:00", "type": "timeline:reviewed", "payload": {"id": 2083589284, "node_id": "PRR_kwDOKNhT9c58MQyk", "user": {"login": "amarsjac", "id": 131478790, "node_id": "U_kgDOB9Y1Bg", "avatar_url": "https://avatars.githubusercontent.com/u/131478790?v=4", "gravatar_id": "", "url": "https://api.github.com/users/amarsjac", "html_url": "https://github.com/amarsjac", "followers_url": "https://api.github.com/users/amarsjac/followers", "following_url": "https://api.github.com/users/amarsjac/following{/other_user}", "gists_url": "https://api.github.com/users/amarsjac/gists{/gist_id}", "starred_url": "https://api.github.com/users/amarsjac/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/amarsjac/subscriptions", "organizations_url": "https://api.github.com/users/amarsjac/orgs", "repos_url": "https://api.github.com/users/amarsjac/repos", "events_url": "https://api.github.com/users/amarsjac/events{/privacy}", "received_events_url": "https://api.github.com/users/amarsjac/received_events", "type": "User", "user_view_type": "public", "site_admin": false}, "body": "", "commit_id": "d4e6dbbaea8e871c16a8bdacbb93b5ca7f1e0d1c", "state": "approved", "html_url": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111#pullrequestreview-2083589284", "pull_request_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111", "_links": {"html": {"href": "https://github.com/OpenJobDescription/openjd-model-for-python/pull/111#pullrequestreview-2083589284"}, "pull_request": {"href": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/pulls/111"}}, "submitted_at": "2024-05-28T18:28:08Z", "updated_at": "2024-05-28T18:28:08Z", "author_association": "CONTRIBUTOR", "event": "reviewed"}} |
| {"time": "2024-05-28T18:28:19+00:00", "type": "timeline:merged", "payload": {"id": 12961705061, "node_id": "ME_lADOKNhT9c6HQ5M1zwAAAAMEk-xl", "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/events/12961705061", "actor": {"login": "amarsjac", "id": 131478790, "node_id": "U_kgDOB9Y1Bg", "avatar_url": "https://avatars.githubusercontent.com/u/131478790?v=4", "gravatar_id": "", "url": "https://api.github.com/users/amarsjac", "html_url": "https://github.com/amarsjac", "followers_url": "https://api.github.com/users/amarsjac/followers", "following_url": "https://api.github.com/users/amarsjac/following{/other_user}", "gists_url": "https://api.github.com/users/amarsjac/gists{/gist_id}", "starred_url": "https://api.github.com/users/amarsjac/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/amarsjac/subscriptions", "organizations_url": "https://api.github.com/users/amarsjac/orgs", "repos_url": "https://api.github.com/users/amarsjac/repos", "events_url": "https://api.github.com/users/amarsjac/events{/privacy}", "received_events_url": "https://api.github.com/users/amarsjac/received_events", "type": "User", "user_view_type": "public", "site_admin": false}, "event": "merged", "commit_id": "e2a531d0ee50c814e307a62f82054831f0358edd", "commit_url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/commits/e2a531d0ee50c814e307a62f82054831f0358edd", "created_at": "2024-05-28T18:28:19Z", "performed_via_github_app": null}} |
| {"time": "2024-05-28T18:28:19+00:00", "type": "timeline:closed", "payload": {"id": 12961705077, "node_id": "CE_lADOKNhT9c6HQ5M1zwAAAAMEk-x1", "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/events/12961705077", "actor": {"login": "amarsjac", "id": 131478790, "node_id": "U_kgDOB9Y1Bg", "avatar_url": "https://avatars.githubusercontent.com/u/131478790?v=4", "gravatar_id": "", "url": "https://api.github.com/users/amarsjac", "html_url": "https://github.com/amarsjac", "followers_url": "https://api.github.com/users/amarsjac/followers", "following_url": "https://api.github.com/users/amarsjac/following{/other_user}", "gists_url": "https://api.github.com/users/amarsjac/gists{/gist_id}", "starred_url": "https://api.github.com/users/amarsjac/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/amarsjac/subscriptions", "organizations_url": "https://api.github.com/users/amarsjac/orgs", "repos_url": "https://api.github.com/users/amarsjac/repos", "events_url": "https://api.github.com/users/amarsjac/events{/privacy}", "received_events_url": "https://api.github.com/users/amarsjac/received_events", "type": "User", "user_view_type": "public", "site_admin": false}, "event": "closed", "commit_id": null, "commit_url": null, "created_at": "2024-05-28T18:28:19Z", "state_reason": null, "performed_via_github_app": null}} |
| {"time": "2024-05-28T18:28:28+00:00", "type": "timeline:head_ref_deleted", "payload": {"id": 12961706189, "node_id": "HRDE_lADOKNhT9c6HQ5M1zwAAAAMEk_DN", "url": "https://api.github.com/repos/OpenJobDescription/openjd-model-for-python/issues/events/12961706189", "actor": {"login": "dependabot[bot]", "id": 49699333, "node_id": "MDM6Qm90NDk2OTkzMzM=", "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dependabot%5Bbot%5D", "html_url": "https://github.com/apps/dependabot", "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", "type": "Bot", "user_view_type": "public", "site_admin": false}, "event": "head_ref_deleted", "commit_id": null, "commit_url": null, "created_at": "2024-05-28T18:28:28Z", "performed_via_github_app": null}} |
|
|