{"id":3492575,"name":"github.com/mitchellh/mapstructure","ecosystem":"go","description":"Package mapstructure exposes functionality to convert one arbitrary\nGo type into another, typically to convert a map[string]interface{}\ninto a native Go structure.\n\nThe Go structure can be arbitrarily complex, containing slices,\nother structs, etc. and the decoder will properly decode nested\nmaps and so on into the proper structures in the native Go struct.\nSee the examples to see what the decoder is capable of.\n\nThe simplest function to start with is Decode.\n\nWhen decoding to a struct, mapstructure will use the field name by\ndefault to perform the mapping. For example, if a struct has a field\n\"Username\" then mapstructure will look for a key in the source value\nof \"username\" (case insensitive).\n\nYou can change the behavior of mapstructure by using struct tags.\nThe default struct tag that mapstructure looks for is \"mapstructure\"\nbut you can customize it using DecoderConfig.\n\nTo rename the key that mapstructure looks for, use the \"mapstructure\"\ntag and set a value directly. For example, to change the \"username\" example\nabove to \"user\":\n\nEmbedded structs are treated as if they're another field with that name.\nBy default, the two structs below are equivalent when decoding with\nmapstructure:\n\nThis would require an input that looks like below:\n\nIf your \"person\" value is NOT nested, then you can append \",squash\" to\nyour tag value and mapstructure will treat it as if the embedded struct\nwere part of the struct directly. Example:\n\nNow the following input would be accepted:\n\nWhen decoding from a struct to a map, the squash tag squashes the struct\nfields into a single map. Using the example structs from above:\n\nWill be decoded into a map:\n\nDecoderConfig has a field that changes the behavior of mapstructure\nto always squash embedded structs.\n\nIf there are any unmapped keys in the source value, mapstructure by\ndefault will silently ignore them. You can error by setting ErrorUnused\nin DecoderConfig. If you're using Metadata you can also maintain a slice\nof the unused keys.\n\nYou can also use the \",remain\" suffix on your tag to collect all unused\nvalues in a map. The field with this tag MUST be a map type and should\nprobably be a \"map[string]interface{}\" or \"map[interface{}]interface{}\".\nSee example below:\n\nGiven the input below, Other would be populated with the other\nvalues that weren't used (everything but \"name\"):\n\nWhen decoding from a struct to any other value, you may use the\n\",omitempty\" suffix on your tag to omit that value if it equates to\nthe zero value. The zero value of all types is specified in the Go\nspecification.\n\nFor example, the zero type of a numeric type is zero (\"0\"). If the struct\nfield value is zero and a numeric type, the field is empty, and it won't\nbe encoded into the destination type.\n\nSince unexported (private) struct fields cannot be set outside the package\nwhere they are defined, the decoder will simply skip them.\n\nFor this output type definition:\n\nUsing this map as input:\n\nThe following struct will be decoded:\n\nmapstructure is highly configurable. See the DecoderConfig struct\nfor other features and options that are supported.","homepage":"https://github.com/mitchellh/mapstructure","licenses":"MIT","normalized_licenses":["MIT"],"repository_url":"https://github.com/mitchellh/mapstructure","keywords_array":[],"namespace":"github.com/mitchellh","versions_count":17,"first_release_published_at":"2018-08-24T00:32:17.000Z","latest_release_published_at":"2022-04-20T22:31:31.000Z","latest_release_number":"v1.5.0","last_synced_at":"2026-04-07T09:57:37.973Z","created_at":"2022-04-10T19:10:28.623Z","updated_at":"2026-04-07T09:57:37.973Z","registry_url":"https://pkg.go.dev/github.com/mitchellh/mapstructure","install_command":"go get github.com/mitchellh/mapstructure","documentation_url":"https://pkg.go.dev/github.com/mitchellh/mapstructure#section-documentation","metadata":{},"repo_metadata":{"id":37333719,"uuid":"10166531","full_name":"mitchellh/mapstructure","owner":"mitchellh","description":"Go library for decoding generic map values into native Go structures and vice versa.","archived":true,"fork":false,"pushed_at":"2024-06-25T15:17:23.000Z","size":366,"stargazers_count":8033,"open_issues_count":82,"forks_count":717,"subscribers_count":64,"default_branch":"main","last_synced_at":"2025-10-22T05:41:42.298Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://gist.github.com/mitchellh/90029601268e59a29e64e55bab1c5bdc","language":"Go","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/mitchellh.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2013-05-20T05:24:34.000Z","updated_at":"2025-10-20T02:07:05.000Z","dependencies_parsed_at":"2024-06-18T10:45:30.314Z","dependency_job_id":"14e2485b-5e6f-4d87-a10a-b088d617c146","html_url":"https://github.com/mitchellh/mapstructure","commit_stats":{"total_commits":236,"total_committers":67,"mean_commits":"3.5223880597014925","dds":0.3813559322033898,"last_synced_commit":"8508981c8b6c964e6986dd8aa85490e70ce3c2e2"},"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/mitchellh/mapstructure","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mitchellh","download_url":"https://codeload.github.com/mitchellh/mapstructure/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/sbom","scorecard":{"id":650248,"data":{"date":"2025-08-11","repo":{"name":"github.com/mitchellh/mapstructure","commit":"8508981c8b6c964e6986dd8aa85490e70ce3c2e2"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":3.6,"checks":[{"name":"Code-Review","score":3,"reason":"Found 8/22 approved changesets -- score normalized to 3","details":null,"documentation":{"short":"Determines if the project requires human code review before pull requests (aka merge requests) are merged.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#code-review"}},{"name":"Maintained","score":0,"reason":"project is archived","details":["Warn: Repository is archived."],"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"name":"Dangerous-Workflow","score":10,"reason":"no dangerous workflow patterns detected","details":null,"documentation":{"short":"Determines if the project's GitHub Action workflows avoid dangerous patterns.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#dangerous-workflow"}},{"name":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: no topLevel permission defined: .github/workflows/test.yml:1","Info: no jobLevel write permissions found"],"documentation":{"short":"Determines if the project's workflows follow the principle of least privilege.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#token-permissions"}},{"name":"Pinned-Dependencies","score":0,"reason":"dependency not pinned by hash detected -- score normalized to 0","details":["Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yml:12: update your workflow using https://app.stepsecurity.io/secureworkflow/mitchellh/mapstructure/test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/mitchellh/mapstructure/test.yml/main?enable=pin","Info:   0 out of   2 GitHub-owned GitHubAction dependencies pinned"],"documentation":{"short":"Determines if the project has declared and pinned the dependencies of its build process.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#pinned-dependencies"}},{"name":"Packaging","score":-1,"reason":"packaging workflow not detected","details":["Warn: no GitHub/GitLab publishing workflow detected."],"documentation":{"short":"Determines if the project is published as a package that others can easily download, install, easily update, and uninstall.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#packaging"}},{"name":"Binary-Artifacts","score":10,"reason":"no binaries found in the repo","details":null,"documentation":{"short":"Determines if the project has generated executable (binary) artifacts in the source repository.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#binary-artifacts"}},{"name":"CII-Best-Practices","score":0,"reason":"no effort to earn an OpenSSF best practices badge detected","details":null,"documentation":{"short":"Determines if the project has an OpenSSF (formerly CII) Best Practices Badge.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#cii-best-practices"}},{"name":"Security-Policy","score":0,"reason":"security policy file not detected","details":["Warn: no security policy file detected","Warn: no security file to analyze","Warn: no security file to analyze","Warn: no security file to analyze"],"documentation":{"short":"Determines if the project has published a security policy.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#security-policy"}},{"name":"Fuzzing","score":0,"reason":"project is not fuzzed","details":["Warn: no fuzzer integrations found"],"documentation":{"short":"Determines if the project uses fuzzing.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#fuzzing"}},{"name":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE:0","Info: FSF or OSI recognized license: MIT License: LICENSE:0"],"documentation":{"short":"Determines if the project has defined a license.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#license"}},{"name":"Signed-Releases","score":-1,"reason":"no releases found","details":null,"documentation":{"short":"Determines if the project cryptographically signs release artifacts.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#signed-releases"}},{"name":"Branch-Protection","score":0,"reason":"branch protection not enabled on development/release branches","details":["Warn: branch protection not enabled for branch 'main'"],"documentation":{"short":"Determines if the default and release branches are protected with GitHub's branch protection settings.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#branch-protection"}},{"name":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 18 are checked with a SAST tool"],"documentation":{"short":"Determines if the project uses static code analysis.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#sast"}},{"name":"Vulnerabilities","score":9,"reason":"1 existing vulnerabilities detected","details":["Warn: Project is vulnerable to: CVE-2025-52893"],"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}}]},"last_synced_at":"2025-08-21T13:19:47.312Z","repository_id":37333719,"created_at":"2025-08-21T13:19:47.312Z","updated_at":"2025-08-21T13:19:47.312Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280841248,"owners_count":26400401,"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","status":"online","status_checked_at":"2025-10-24T02:00:06.418Z","response_time":73,"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"},"owner_record":{"login":"mitchellh","name":"Mitchell Hashimoto","uuid":"1299","kind":"user","description":"","email":"","website":"https://mitchellh.com","location":"Los Angeles, CA","twitter":"mitchellh","company":null,"icon_url":"https://avatars.githubusercontent.com/u/1299?u=cc88a733b0c95bdfd323ec661c0da4c6768c4e4b\u0026v=4","repositories_count":113,"last_synced_at":"2025-10-10T17:56:51.656Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/mitchellh","funding_links":[],"total_stars":39779,"followers":18856,"following":0,"created_at":"2022-11-02T16:40:11.018Z","updated_at":"2025-10-10T17:56:51.657Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mitchellh","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mitchellh/repositories"},"tags":[{"name":"v1.5.0","sha":"ab69d8d93410fce4361f4912bb1ff88110a81311","kind":"commit","published_at":"2022-04-20T22:31:31.000Z","download_url":"https://codeload.github.com/mitchellh/mapstructure/tar.gz/v1.5.0","html_url":"https://github.com/mitchellh/mapstructure/releases/tag/v1.5.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/mitchellh/mapstructure@v1.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.5.0/manifests"},{"name":"v1.4.3","sha":"b9b99d7d59762a5b2a43df840adc318b2fa229ee","kind":"commit","published_at":"2021-12-01T18:06:12.000Z","download_url":"https://codeload.github.com/mitchellh/mapstructure/tar.gz/v1.4.3","html_url":"https://github.com/mitchellh/mapstructure/releases/tag/v1.4.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/mitchellh/mapstructure@v1.4.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.4.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.4.3/manifests"},{"name":"v1.4.2","sha":"5ac1f6aa4011ece0c4df24a4fe8020a9cc21e393","kind":"commit","published_at":"2021-09-14T17:25:19.000Z","download_url":"https://codeload.github.com/mitchellh/mapstructure/tar.gz/v1.4.2","html_url":"https://github.com/mitchellh/mapstructure/releases/tag/v1.4.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/mitchellh/mapstructure@v1.4.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.4.2/manifests"},{"name":"v1.4.1","sha":"8ebf2d61a8b4adcce25fc9fc9b76e8452a00672f","kind":"commit","published_at":"2021-01-12T04:20:08.000Z","download_url":"https://codeload.github.com/mitchellh/mapstructure/tar.gz/v1.4.1","html_url":"https://github.com/mitchellh/mapstructure/releases/tag/v1.4.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/mitchellh/mapstructure@v1.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.4.1/manifests"},{"name":"v1.4.0","sha":"95075d6e1a88d608e5258a054d7f0de9401f255e","kind":"commit","published_at":"2020-11-26T23:33:53.000Z","download_url":"https://codeload.github.com/mitchellh/mapstructure/tar.gz/v1.4.0","html_url":"https://github.com/mitchellh/mapstructure/releases/tag/v1.4.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/mitchellh/mapstructure@v1.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.4.0/manifests"},{"name":"v1.3.3","sha":"9e1e4717f8567d7ead72d070d064ad17d444a67e","kind":"commit","published_at":"2020-07-22T16:00:30.000Z","download_url":"https://codeload.github.com/mitchellh/mapstructure/tar.gz/v1.3.3","html_url":"https://github.com/mitchellh/mapstructure/releases/tag/v1.3.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/mitchellh/mapstructure@v1.3.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.3.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.3.3/manifests"},{"name":"v1.3.2","sha":"d16e9488127408e67948eb43b6d3fbb9f222da10","kind":"commit","published_at":"2020-06-07T23:02:03.000Z","download_url":"https://codeload.github.com/mitchellh/mapstructure/tar.gz/v1.3.2","html_url":"https://github.com/mitchellh/mapstructure/releases/tag/v1.3.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/mitchellh/mapstructure@v1.3.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.3.2/manifests"},{"name":"v1.3.1","sha":"20e21c67c4d0e1b4244f83449b7cdd10435ee998","kind":"commit","published_at":"2020-05-21T22:13:00.000Z","download_url":"https://codeload.github.com/mitchellh/mapstructure/tar.gz/v1.3.1","html_url":"https://github.com/mitchellh/mapstructure/releases/tag/v1.3.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/mitchellh/mapstructure@v1.3.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.3.1/manifests"},{"name":"v1.3.0","sha":"916b5f23bc2f603eb9012f48efd9e38287e71ed5","kind":"commit","published_at":"2020-04-28T15:57:09.000Z","download_url":"https://codeload.github.com/mitchellh/mapstructure/tar.gz/v1.3.0","html_url":"https://github.com/mitchellh/mapstructure/releases/tag/v1.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/mitchellh/mapstructure@v1.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.3.0/manifests"},{"name":"v1.2.3","sha":"5829d229902c90e38706765bcb23b2fd54f87b24","kind":"commit","published_at":"2020-04-27T20:02:03.000Z","download_url":"https://codeload.github.com/mitchellh/mapstructure/tar.gz/v1.2.3","html_url":"https://github.com/mitchellh/mapstructure/releases/tag/v1.2.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/mitchellh/mapstructure@v1.2.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.2.3/manifests"},{"name":"v1.2.2","sha":"694aaefbc689be1915c2ef39e880409057931a94","kind":"commit","published_at":"2020-03-20T06:57:10.000Z","download_url":"https://codeload.github.com/mitchellh/mapstructure/tar.gz/v1.2.2","html_url":"https://github.com/mitchellh/mapstructure/releases/tag/v1.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/mitchellh/mapstructure@v1.2.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.2.2/manifests"},{"name":"v1.2.1","sha":"038ad388ec7be44d0aec979d5d1f06e3aeee66e6","kind":"commit","published_at":"2020-03-19T15:22:04.000Z","download_url":"https://codeload.github.com/mitchellh/mapstructure/tar.gz/v1.2.1","html_url":"https://github.com/mitchellh/mapstructure/releases/tag/v1.2.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/mitchellh/mapstructure@v1.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.2.1/manifests"},{"name":"v1.2.0","sha":"9e4011917e467353a5cacb6b11f3991b381055c8","kind":"commit","published_at":"2020-03-19T01:01:16.000Z","download_url":"https://codeload.github.com/mitchellh/mapstructure/tar.gz/v1.2.0","html_url":"https://github.com/mitchellh/mapstructure/releases/tag/v1.2.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/mitchellh/mapstructure@v1.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.2.0/manifests"},{"name":"v1.1.2","sha":"3536a929edddb9a5b34bd6861dc4a9647cb459fe","kind":"commit","published_at":"2018-10-05T04:51:35.000Z","download_url":"https://codeload.github.com/mitchellh/mapstructure/tar.gz/v1.1.2","html_url":"https://github.com/mitchellh/mapstructure/releases/tag/v1.1.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/mitchellh/mapstructure@v1.1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.1.2/manifests"},{"name":"v1.1.1","sha":"fe40af7a9c397fa3ddba203c38a5042c5d0475ad","kind":"commit","published_at":"2018-10-01T14:12:12.000Z","download_url":"https://codeload.github.com/mitchellh/mapstructure/tar.gz/v1.1.1","html_url":"https://github.com/mitchellh/mapstructure/releases/tag/v1.1.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/mitchellh/mapstructure@v1.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.1.1/manifests"},{"name":"v1.1.0","sha":"4632c4f49fb352596def0d4005bcbe7f38fe9008","kind":"commit","published_at":"2018-10-01T01:17:27.000Z","download_url":"https://codeload.github.com/mitchellh/mapstructure/tar.gz/v1.1.0","html_url":"https://github.com/mitchellh/mapstructure/releases/tag/v1.1.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/mitchellh/mapstructure@v1.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.1.0/manifests"},{"name":"v1.0.0","sha":"fa473d140ef3c6adf42d6b391fe76707f1f243c8","kind":"commit","published_at":"2018-08-24T00:32:17.000Z","download_url":"https://codeload.github.com/mitchellh/mapstructure/tar.gz/v1.0.0","html_url":"https://github.com/mitchellh/mapstructure/releases/tag/v1.0.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/mitchellh/mapstructure@v1.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/tags/v1.0.0/manifests"}]},"repo_metadata_updated_at":"2025-10-24T20:51:22.292Z","dependent_packages_count":32864,"downloads":null,"downloads_period":null,"dependent_repos_count":124571,"rankings":{"downloads":null,"dependent_repos_count":0.005857279673800902,"dependent_packages_count":0.0032882973607303305,"stargazers_count":0.8034749082359518,"forks_count":1.1352846637921468,"docker_downloads_count":0.002363463728024925,"average":0.390053722558131},"purl":"pkg:golang/github.com/mitchellh/mapstructure","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/go/github.com/mitchellh/mapstructure","docker_dependents_count":14829,"docker_downloads_count":62915760717,"usage_url":"https://repos.ecosyste.ms/usage/go/github.com/mitchellh/mapstructure","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/go/github.com/mitchellh/mapstructure/dependencies","status":null,"funding_links":[],"critical":true,"issue_metadata":{"last_synced_at":"2025-09-01T04:32:50.375Z","issues_count":79,"pull_requests_count":51,"avg_time_to_close_issue":13544070.931034483,"avg_time_to_close_pull_request":27230756.0,"issues_closed_count":29,"pull_requests_closed_count":27,"pull_request_authors_count":45,"issue_authors_count":73,"avg_comments_per_issue":2.1139240506329116,"avg_comments_per_pull_request":1.607843137254902,"merged_pull_requests_count":12,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":0,"past_year_pull_requests_count":0,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":null,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":0,"past_year_pull_request_authors_count":0,"past_year_issue_authors_count":0,"past_year_avg_comments_per_issue":null,"past_year_avg_comments_per_pull_request":null,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":0,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/mitchellh%2Fmapstructure/issues","maintainers":[{"login":"mitchellh","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/mitchellh"}],"active_maintainers":[]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Fmitchellh%2Fmapstructure/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Fmitchellh%2Fmapstructure/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Fmitchellh%2Fmapstructure/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Fmitchellh%2Fmapstructure/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Fmitchellh%2Fmapstructure/codemeta","maintainers":[]}