{"id":21923761,"url":"https://github.com/soujava/helidon-oracle-json-types","last_synced_at":"2026-04-20T19:06:24.191Z","repository":{"id":249430795,"uuid":"831493029","full_name":"soujava/helidon-oracle-json-types","owner":"soujava","description":"Sample code using decision of Helidon and Oracle JSON","archived":false,"fork":false,"pushed_at":"2024-07-22T07:32:03.000Z","size":31,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":13,"default_branch":"main","last_synced_at":"2025-06-16T03:42:10.017Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/soujava.png","metadata":{"files":{"readme":"README.adoc","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}},"created_at":"2024-07-20T17:59:58.000Z","updated_at":"2024-07-22T07:32:06.000Z","dependencies_parsed_at":"2024-07-20T19:24:27.159Z","dependency_job_id":"bdc2a6f4-bbeb-4f3e-bba3-49f868936016","html_url":"https://github.com/soujava/helidon-oracle-json-types","commit_stats":null,"previous_names":["soujava/helidon-oracle-json-types"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/soujava/helidon-oracle-json-types","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soujava%2Fhelidon-oracle-json-types","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soujava%2Fhelidon-oracle-json-types/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soujava%2Fhelidon-oracle-json-types/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soujava%2Fhelidon-oracle-json-types/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/soujava","download_url":"https://codeload.github.com/soujava/helidon-oracle-json-types/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soujava%2Fhelidon-oracle-json-types/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32061280,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":[],"created_at":"2024-11-28T21:12:44.121Z","updated_at":"2026-04-20T19:06:24.175Z","avatar_url":"https://github.com/soujava.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"= helidon\n:toc: auto\n\nSample Helidon MP project that includes multiple REST operations.\n\n== Build and run\n\nWith JDK21\n[source,bash]\n----\nmvn package\njava -jar target/helidon.jar\n----\n\n== Running Oracle NoSQL\n\n\n[source,bash]\n----\ndocker run -d --name oracle-instance -p 8080:8080 ghcr.io/oracle/nosql:latest-ce\n----\n\n\n== Sample code illustrating the use of the REST API\n\n\n[source,bash]\n----\ncurl --location --request PUT 'http://localhost:8181/machines' \\\n--header 'Content-Type: application/json' \\\n--data '{\n\"id\": \"1\",\n\"model\": \"Thunderbolt V8\",\n\"engine\": {\n\"type\": \"gas\",\n\"horsepower\": 450\n},\n\"manufacturer\": \"Mustang\",\n\"year\": 2021,\n\"weight\": 1600.0\n}'\n\n\ncurl --location --request PUT 'http://localhost:8181/machines' \\\n--header 'Content-Type: application/json' \\\n--data '{\n    \"id\": \"2\",\n    \"model\": \"Eagle Eye EV\",\n    \"engine\": {\n        \"type\": \"electric\",\n        \"horsepower\": 300\n    },\n    \"manufacturer\": \"Tesla\",\n    \"year\": 2022,\n    \"weight\": 1400.0\n}\n'\n\n\ncurl --location --request PUT 'http://localhost:8181/machines' \\\n--header 'Content-Type: application/json' \\\n--data '{\n    \"id\": \"3\",\n    \"model\": \"Road Runner GT\",\n    \"engine\": {\n        \"type\": \"gas\",\n        \"horsepower\": 400\n    },\n    \"manufacturer\": \"Chevrolet\",\n    \"year\": 2020,\n    \"weight\": 1700.0\n}\n'\n\ncurl --location --request PUT 'http://localhost:8181/machines' \\\n--header 'Content-Type: application/json' \\\n--data '{\n    \"id\": \"4\",\n    \"model\": \"Solaris X\",\n    \"engine\": {\n        \"type\": \"electric\",\n        \"horsepower\": 350\n    },\n    \"manufacturer\": \"Nissan\",\n    \"year\": 2023,\n    \"weight\": 1350.0\n}\n'\n\ncurl --location --request PUT 'http://localhost:8181/machines' \\\n--header 'Content-Type: application/json' \\\n--data '{\n    \"id\": \"5\",\n    \"model\": \"Fusion Hybrid 2024\",\n    \"engine\": {\n        \"type\": \"electric\",\n        \"horsepower\": 320\n    },\n    \"manufacturer\": \"Toyota\",\n    \"year\": 2024,\n    \"weight\": 1450.0\n}\n'\n----","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoujava%2Fhelidon-oracle-json-types","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsoujava%2Fhelidon-oracle-json-types","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoujava%2Fhelidon-oracle-json-types/lists"}