{"id":20532390,"url":"https://github.com/unitvectory-labs/cron-conductor-core","last_synced_at":"2026-05-21T16:08:58.216Z","repository":{"id":229915226,"uuid":"777993800","full_name":"UnitVectorY-Labs/cron-conductor-core","owner":"UnitVectorY-Labs","description":"Core Java library for cron-conductor providing the interfaces and main logic.","archived":false,"fork":false,"pushed_at":"2026-05-09T14:50:35.000Z","size":307,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-09T16:43:09.806Z","etag":null,"topics":["cron","java-17"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/UnitVectorY-Labs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-03-26T22:07:04.000Z","updated_at":"2026-05-09T14:50:37.000Z","dependencies_parsed_at":"2025-04-26T12:25:18.298Z","dependency_job_id":"8470659c-ce5c-4ab3-ae51-1c477ccd3f0a","html_url":"https://github.com/UnitVectorY-Labs/cron-conductor-core","commit_stats":null,"previous_names":["unitvectory-labs/cron-conductor-core"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/UnitVectorY-Labs/cron-conductor-core","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UnitVectorY-Labs%2Fcron-conductor-core","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UnitVectorY-Labs%2Fcron-conductor-core/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UnitVectorY-Labs%2Fcron-conductor-core/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UnitVectorY-Labs%2Fcron-conductor-core/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/UnitVectorY-Labs","download_url":"https://codeload.github.com/UnitVectorY-Labs/cron-conductor-core/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UnitVectorY-Labs%2Fcron-conductor-core/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33306875,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-21T12:23:38.849Z","status":"ssl_error","status_checked_at":"2026-05-21T12:22:11.673Z","response_time":62,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cron","java-17"],"created_at":"2024-11-16T00:14:37.002Z","updated_at":"2026-05-21T16:08:58.199Z","avatar_url":"https://github.com/UnitVectorY-Labs.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Concept](https://img.shields.io/badge/Status-Concept-white)](https://guide.unitvectorylabs.com/bestpractices/status/#concept) [![codecov](https://codecov.io/gh/UnitVectorY-Labs/cron-conductor-core/graph/badge.svg?token=FU94BLZKXP)](https://codecov.io/gh/UnitVectorY-Labs/cron-conductor-core)\n\n# cron-conductor-core\n\nCore Java library for cron-conductor providing the interfaces and main logic.\n\n## Getting Started\n\nThis library requires Java 17.\n\nIt is under development and is not feature complete.\n\n## ScheduleEntry\n\nThe `ScheduleEntry` object represents a single schedule within the CronConductor system. Each schedule is uniquely identified and can be either a recurring or a one-time event.\n\n### Fields\n\n- `scheduleId` (String): The UUID for the schedule.\n- `namespace` (String): Divides schedules into independent collections, allowing for multi-tenancy.\n- `timezone` (String): The timezone in which the schedule is defined.\n- `cron` (String): The cron expression for recurring schedules. Not applicable for one-time schedules.\n- `runAt` (String): For one-time schedules, this specifies when the schedule will execute. For recurring schedules, it is automatically populated with the next execution time.\n- `scheduleType` (ScheduleType): The type of the schedule, which can be either `CRON` for recurring schedules or `ONCE` for one-time schedules.\n- `resourceId` (String): The high cardinality identifier for a schedule, such as a specific user or device ID.\n- `scheduleName` (String): The low cardinality identifier that belongs to a `resourceId`, providing a unique identifier for the schedule.\n- `payload` (JSON Object): The payload for the schedule treated as a JSON object.\n\n### Example JSON Payload\n\n#### Recurring Schedule\n\n```json\n{\n  \"scheduleId\": \"123e4567-e89b-12d3-a456-426614174000\",\n  \"namespace\": \"default\",\n  \"timezone\": \"UTC\",\n  \"cron\": \"0 * * * *\",\n  \"scheduleType\": \"CRON\",\n  \"resourceId\": \"user123\",\n  \"scheduleName\": \"DailyBackup\",\n  \"payload\": { \"task\": \"backup\", \"scope\": \"full\" }\n}\n```\n\n#### One-Time Schedule\n\n```json\n{\n  \"scheduleId\": \"789e0123-e45b-67f8-a456-426614174000\",\n  \"namespace\": \"default\",\n  \"timezone\": \"UTC\",\n  \"runAt\": \"2024-12-31T23:59\",\n  \"scheduleType\": \"ONCE\",\n  \"resourceId\": \"server456\",\n  \"scheduleName\": \"EndOfYearReport\",\n  \"payload\": { \"report\": \"yearly\", \"department\": \"finance\" }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funitvectory-labs%2Fcron-conductor-core","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funitvectory-labs%2Fcron-conductor-core","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funitvectory-labs%2Fcron-conductor-core/lists"}