{"id":28387047,"url":"https://github.com/devyank1/hospital-management","last_synced_at":"2026-04-02T03:11:49.483Z","repository":{"id":266177609,"uuid":"876160019","full_name":"devyank1/hospital-management","owner":"devyank1","description":"A API made for hospital Patient, Medic and See Schedule","archived":false,"fork":false,"pushed_at":"2025-05-22T20:46:44.000Z","size":166,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-14T23:14:30.197Z","etag":null,"topics":["docker","java","maven","postgresql","spring-boot"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devyank1.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}},"created_at":"2024-10-21T13:54:06.000Z","updated_at":"2025-05-22T20:46:49.000Z","dependencies_parsed_at":"2024-12-03T01:19:53.944Z","dependency_job_id":"7e8f55ce-d877-46d7-96ed-35d16f0a27eb","html_url":"https://github.com/devyank1/hospital-management","commit_stats":null,"previous_names":["devyank1/api-for-hospital","devyank1/hospital-management"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devyank1/hospital-management","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devyank1%2Fhospital-management","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devyank1%2Fhospital-management/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devyank1%2Fhospital-management/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devyank1%2Fhospital-management/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devyank1","download_url":"https://codeload.github.com/devyank1/hospital-management/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devyank1%2Fhospital-management/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31294925,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T01:43:37.129Z","status":"online","status_checked_at":"2026-04-02T02:00:08.535Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["docker","java","maven","postgresql","spring-boot"],"created_at":"2025-05-30T16:39:30.682Z","updated_at":"2026-04-02T03:11:49.472Z","avatar_url":"https://github.com/devyank1.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e\nHospital API\n\u003c/h1\u003e\n\n## 📚 Project\nAPI made for a hospital, with Services and HTTP methods.\n\n## 🔍 Operation Flows\n\n1. **Find (GET Method):** Return a List or specific class called.\n2. **Create (POST Method):** Create a info on database.\n3. **Modify (PUT Method):** Modify a info setted in the persistence.\n4. **Delete (DELETE Method):** Picks a info and delete.\n\n## 👨‍💻 Endpoints\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cb\u003eMedic\u003c/b\u003e\u003c/summary\u003e\n\u003cimg src=\"\\api-medical\\src\\main\\java\\com\\hospital\\api_medical\\img\\img1.png\" alt=\"\"\u003e\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cb\u003ePatient\u003c/b\u003e\u003c/summary\u003e\n\u003cimg src=\"\\api-medical\\src\\main\\java\\com\\hospital\\api_medical\\img\\img2.png\" alt=\"\"\u003e\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cb\u003eSchedule\u003c/b\u003e\u003c/summary\u003e\n\u003cimg src=\"\\api-medical\\src\\main\\java\\com\\hospital\\api_medical\\img\\img3.png\" alt=\"\"\u003e\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cb\u003eMedic Availability\u003c/b\u003e\u003c/summary\u003e\n\u003cimg src=\"\" alt=\"\"\u003e\n\u003c/details\u003e\n\n\n```mermaid\nclassDiagram\n    class Patient {\n        Long id\n        String name\n        String email\n        String number\n        Date birth_date\n        String cpf\n    }\n\n    class Medic {\n        Long id\n        String name\n        String specialty\n        String crm\n        String number\n        String email\n    }\n\n   class MedicAvailability {\n        Long id\n        LocalDate data\n        List~String~ avaliableHours\n        Long id_medic\n    }\n\n    class Scheduling {\n        Long id\n        LocalDateTime dateHour\n        String status\n        Long id_patient\n        Long id_medic\n    }\n\n    Pacient \"1\" --\u003e \"0..*\" Scheduling : \"possui\"\n    Medic \"1\" --\u003e \"0..*\" Scheduling : \"realiza\"\n    Medic \"1\" --\u003e \"0..*\" MedicAvailability : \"tem\"\n```\n\n## 💻 Technology\n\n- Language: Java\n- Framework: Spring Framework\n- Database: PostgreSQL\n- Maven\n- Junit5\n- Mockito\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevyank1%2Fhospital-management","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevyank1%2Fhospital-management","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevyank1%2Fhospital-management/lists"}