{"id":20019212,"url":"https://github.com/jbris/jackson-data-models-example","last_synced_at":"2026-02-26T03:43:51.124Z","repository":{"id":261001581,"uuid":"882848664","full_name":"JBris/jackson-data-models-example","owner":"JBris","description":"Demonstration of Jackson data models","archived":false,"fork":false,"pushed_at":"2024-11-04T23:17:13.000Z","size":16,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-12T16:08:01.276Z","etag":null,"topics":["annotation","annotations","data-model","data-model-tools","data-modeling","data-modelling","data-models","data-validation","iris-dataset","jackson","jackson-annotation","jackson-core","jackson-databind","jackson-json","jackson-json-processor","jackson-module","json-schema","json-schema-definitions","json-schema-generator","metadata"],"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/JBris.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}},"created_at":"2024-11-03T22:49:36.000Z","updated_at":"2024-12-28T07:55:39.000Z","dependencies_parsed_at":"2024-11-04T06:35:53.171Z","dependency_job_id":null,"html_url":"https://github.com/JBris/jackson-data-models-example","commit_stats":null,"previous_names":["jbris/jackson-data-models-example"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JBris%2Fjackson-data-models-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JBris%2Fjackson-data-models-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JBris%2Fjackson-data-models-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JBris%2Fjackson-data-models-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JBris","download_url":"https://codeload.github.com/JBris/jackson-data-models-example/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241453295,"owners_count":19965171,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["annotation","annotations","data-model","data-model-tools","data-modeling","data-modelling","data-models","data-validation","iris-dataset","jackson","jackson-annotation","jackson-core","jackson-databind","jackson-json","jackson-json-processor","jackson-module","json-schema","json-schema-definitions","json-schema-generator","metadata"],"created_at":"2024-11-13T08:26:22.478Z","updated_at":"2026-02-26T03:43:46.103Z","avatar_url":"https://github.com/JBris.png","language":"Java","readme":"# jackson-data-models-example\n\nDemonstration of Jackson data models\n\n## Instructions\n\nInstall Java and Maven:\n\n```\nsudo apt-get install -y openjdk-17-jdk maven\n```\n\nRun the code:\n\n```\ncd modelling\nmvn clean compile assembly:single -X -e\njava -jar target/modelling-1.0-SNAPSHOT-jar-with-dependencies.jar\n```\n\n## Expected output\n\n```\nJSON\n{\n  \"type\" : \"object\",\n  \"id\" : \"urn:jsonschema:com:data:example:model:Iris\",\n  \"properties\" : {\n    \"id\" : {\n      \"type\" : \"integer\",\n      \"required\" : true,\n      \"description\" : \"The unique identifier\",\n      \"minimum\" : 0.0,\n      \"name\" : \"id\",\n      \"propertyType\" : \"id\",\n      \"defaultValue\" : 0.0,\n      \"tags\" : [ \"example_tag\", \"another_tag\" ]\n    },\n    \"sepal_length\" : {\n      \"type\" : \"number\",\n      \"required\" : true,\n      \"description\" : \"The flower sepal length\",\n      \"maximum\" : 100.0,\n      \"minimum\" : 0.0,\n      \"name\" : \"sepal_length\",\n      \"unit\" : \"cm\",\n      \"propertyType\" : \"state_variable\",\n      \"defaultValue\" : 0.0,\n      \"tags\" : [ \"example_tag\", \"another_tag\" ]\n    },\n    \"sepal_width\" : {\n      \"type\" : \"number\",\n      \"required\" : true,\n      \"description\" : \"The flower sepal width\",\n      \"maximum\" : 100.0,\n      \"minimum\" : 0.0,\n      \"name\" : \"sepal_width\",\n      \"unit\" : \"cm\",\n      \"propertyType\" : \"state_variable\",\n      \"defaultValue\" : 0.0,\n      \"tags\" : [ \"example_tag\", \"another_tag\" ]\n    },\n    \"petal_length\" : {\n      \"type\" : \"number\",\n      \"required\" : true,\n      \"description\" : \"The flower petal length\",\n      \"maximum\" : 300.0,\n      \"minimum\" : 0.0,\n      \"name\" : \"petal_length\",\n      \"unit\" : \"cm\",\n      \"propertyType\" : \"state_variable\",\n      \"defaultValue\" : 0.0,\n      \"tags\" : [ \"example_tag\", \"another_tag\" ]\n    },\n    \"petal_width\" : {\n      \"type\" : \"number\",\n      \"required\" : true,\n      \"description\" : \"The flower petal width\",\n      \"maximum\" : 300.0,\n      \"minimum\" : 0.0,\n      \"name\" : \"petal_width\",\n      \"unit\" : \"cm\",\n      \"propertyType\" : \"state_variable\",\n      \"defaultValue\" : 0.0,\n      \"tags\" : [ \"example_tag\", \"another_tag\" ]\n    }\n  }\n}\nCSV\nid,sepal_length,sepal_width,petal_length,petal_width\n0,1.0,2.0,3.0,4.0\n1,2.0,3.0,4.0,5.0\n2,3.0,4.0,5.0,6.0\n3,4.0,5.0,6.0,7.0\n4,5.0,6.0,7.0,8.0\n5,6.0,7.0,8.0,9.0\n6,7.0,8.0,9.0,10.0\n7,8.0,9.0,10.0,11.0\n8,9.0,10.0,11.0,12.0\n9,10.0,11.0,12.0,13.0\n10,11.0,12.0,13.0,14.0\n```","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjbris%2Fjackson-data-models-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjbris%2Fjackson-data-models-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjbris%2Fjackson-data-models-example/lists"}