{"id":23065897,"url":"https://github.com/gil9red/xsd2xml","last_synced_at":"2025-04-03T08:49:13.764Z","repository":{"id":77205703,"uuid":"64651259","full_name":"gil9red/XSD2XML","owner":"gil9red","description":"Generation xml from xsd (#java #jlibs #xsd #xml)","archived":false,"fork":false,"pushed_at":"2016-08-04T09:08:44.000Z","size":24,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-08T22:25:50.397Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gil9red.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2016-08-01T08:49:16.000Z","updated_at":"2020-05-18T16:43:31.000Z","dependencies_parsed_at":null,"dependency_job_id":"b789f320-84d9-402f-936e-03a8cb5cc713","html_url":"https://github.com/gil9red/XSD2XML","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gil9red%2FXSD2XML","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gil9red%2FXSD2XML/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gil9red%2FXSD2XML/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gil9red%2FXSD2XML/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gil9red","download_url":"https://codeload.github.com/gil9red/XSD2XML/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246970337,"owners_count":20862508,"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":[],"created_at":"2024-12-16T05:10:24.764Z","updated_at":"2025-04-03T08:49:13.753Z","avatar_url":"https://github.com/gil9red.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# XSD2XML\r\nGeneration xml from xsd (#java #jlibs #xsd #xml)\r\n\r\n### Xsd\r\n```xsd\r\n\u003cxs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\"\u003e\r\n\r\n    \u003cxs:element name=\"person\"\u003e\r\n        \u003cxs:complexType\u003e\r\n            \u003cxs:choice\u003e\r\n                \u003cxs:element name=\"employee\" type=\"Employee\"/\u003e\r\n                \u003cxs:element name=\"member\" type=\"Member\"/\u003e\r\n            \u003c/xs:choice\u003e\r\n        \u003c/xs:complexType\u003e\r\n    \u003c/xs:element\u003e \r\n\r\n    \u003cxs:complexType name=\"Employee\"\u003e\r\n        \u003cxs:sequence\u003e\r\n            \u003cxs:element name=\"name\" type=\"xs:string\"/\u003e\r\n            \u003cxs:element name=\"age\" type=\"xs:int\"/\u003e\r\n            \u003cxs:element name=\"hobby\"\u003e\r\n                \u003cxs:complexType\u003e\r\n                    \u003cxs:choice\u003e\r\n                        \u003cxs:element name=\"cpp\" type=\"xs:string\"/\u003e\r\n                        \u003cxs:element name=\"java\" type=\"xs:string\"/\u003e\r\n                        \u003cxs:element name=\"c_sharp\" type=\"xs:string\"/\u003e\r\n                        \u003cxs:element name=\"other\"\u003e\r\n                            \u003cxs:complexType\u003e\r\n                                \u003cxs:sequence\u003e\r\n                                    \u003cxs:element name=\"lang\" type=\"xs:string\" maxOccurs=\"unbounded\"/\u003e\r\n                                \u003c/xs:sequence\u003e\r\n                            \u003c/xs:complexType\u003e\r\n                        \u003c/xs:element\u003e\r\n                    \u003c/xs:choice\u003e\r\n                \u003c/xs:complexType\u003e\r\n            \u003c/xs:element\u003e\r\n        \u003c/xs:sequence\u003e\r\n        \u003cxs:attribute name=\"checked\" type=\"xs:boolean\"/\u003e\r\n    \u003c/xs:complexType\u003e\r\n\r\n    \u003cxs:complexType name=\"Member\"\u003e\r\n        \u003cxs:sequence\u003e\r\n            \u003cxs:element name=\"fio\" type=\"xs:string\"/\u003e\r\n            \u003cxs:element name=\"weight\" type=\"xs:int\"/\u003e\r\n        \u003c/xs:sequence\u003e\r\n        \u003cxs:attribute name=\"birthday\" type=\"xs:date\"/\u003e\r\n    \u003c/xs:complexType\u003e\r\n\r\n\u003c/xs:schema\u003e\r\n```\r\n\r\n### Xml\r\n```xml\r\n\u003c!--(employee | member)--\u003e\r\n\u003cperson xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\u003e\r\n    \u003cmember birthday=\"2016-08-04\"\u003e\r\n        \u003cfio\u003efio1\u003c/fio\u003e\r\n        \u003cweight\u003e432894162\u003c/weight\u003e\r\n    \u003c/member\u003e\r\n    \u003cemployee checked=\"false\"\u003e\r\n        \u003cname\u003ename1\u003c/name\u003e\r\n        \u003cage\u003e1072568470\u003c/age\u003e\r\n        \u003c!--(cpp | java | c_sharp | other)--\u003e\r\n        \u003chobby\u003e\r\n            \u003ccpp\u003ecpp1\u003c/cpp\u003e\r\n            \u003cc_sharp\u003ec_sharp1\u003c/c_sharp\u003e\r\n            \u003cjava\u003ejava1\u003c/java\u003e\r\n            \u003c!--(lang+)--\u003e\r\n            \u003cother\u003e\r\n                \u003clang\u003elang1\u003c/lang\u003e\r\n                \u003clang\u003elang2\u003c/lang\u003e\r\n            \u003c/other\u003e\r\n        \u003c/hobby\u003e\r\n    \u003c/employee\u003e\r\n\u003c/person\u003e\r\n```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgil9red%2Fxsd2xml","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgil9red%2Fxsd2xml","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgil9red%2Fxsd2xml/lists"}