{"id":13657585,"url":"https://github.com/fluhus/wordnet-to-json","last_synced_at":"2026-01-12T00:58:50.503Z","repository":{"id":78377539,"uuid":"54094261","full_name":"fluhus/wordnet-to-json","owner":"fluhus","description":"WordNet in JSON format.","archived":false,"fork":false,"pushed_at":"2020-08-19T18:44:13.000Z","size":12,"stargazers_count":90,"open_issues_count":0,"forks_count":13,"subscribers_count":7,"default_branch":"master","last_synced_at":"2024-11-10T10:40:03.418Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/fluhus.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}},"created_at":"2016-03-17T06:29:32.000Z","updated_at":"2024-08-15T11:34:07.000Z","dependencies_parsed_at":"2023-03-09T14:15:34.208Z","dependency_job_id":null,"html_url":"https://github.com/fluhus/wordnet-to-json","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluhus%2Fwordnet-to-json","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluhus%2Fwordnet-to-json/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluhus%2Fwordnet-to-json/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluhus%2Fwordnet-to-json/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fluhus","download_url":"https://codeload.github.com/fluhus/wordnet-to-json/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250544099,"owners_count":21448041,"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-08-02T05:00:45.842Z","updated_at":"2026-01-12T00:58:50.478Z","avatar_url":"https://github.com/fluhus.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"WordNet in JSON Format\n======================\n\nThe [WordNet](http://wordnet.princeton.edu) dataset is provided in a format that requires dedicated parsing routines. [JSON](https://en.wikipedia.org/wiki/JSON#Example) is a universal data format, that is supported across various programming languages.\n\n**Using JSON, anyone can import and use WordNet dataset with ease.**\n\nVersion\n-------\n\nThis dataset was built from version 3.1 of the [WordNet data files](https://wordnet.princeton.edu/download/current-version).\n\nCitation\n--------\n\nThis dataset is based on: Princeton University \"About WordNet.\" WordNet.\nPrinceton University. 2010. http://wordnet.princeton.edu\n\nPlease cite them if you use this dataset.\n\nDownload\n--------\n\nSee [releases](https://github.com/fluhus/wordnet-to-json/releases).\n\nFile Structure\n--------------\n\n#### WordNet (root object)\n\nAn entire WordNet database.\n\nFields:\n\n* **synset** (map to [Synset](#synset)) from synset ID to synset object.\n* **lemma** (map to string array) from pos.lemma to synset IDs that contain it.\n* **lemmaRanked** (map to string array) like Lemma but synsets are ordered from the\n  most frequently used to the least. Only a subset of the synsets are ranked, so\n  LemmaRanked has less synsets.\n* **exception** (map to string array) from exceptional word to its forms.\n* **example** (map to string) from example ID to sentence template.\n\n#### Synset\n\nA set of synonymous words.\n\nFields:\n\n* **offset** (int) synset offset in the raw data file, also used as an identifier.\n* **pos** (string) part of speech:\n  * a: adjective\n  * n: noun\n  * r: adverb\n  * s: satellite\n  * v: verb\n* **word** (string array) words in this synset.\n* **pointer** ([Pointer](#pointer) array) pointers to other synsets.\n* **frame** ([Frame](#frame) array) sentence frames for verbs.\n* **gloss** (string) lexical definition.\n* **example** ([Example](#example) array) usage examples for words in this synset. Verbs only.\n\n#### Pointer\n\nDenotes a semantic relation between one synset/word to another.\n\nFields:\n\n* **symbol** (string) relation between the 2 words. Target is \\\u003csymbol\\\u003e to source. See their meanings\n  [here](https://godoc.org/github.com/fluhus/gostuff/nlp/wordnet#pkg-constants).\n* **synset** (string) target synset ID.\n* **source** (int) index of word in source synset, -1 for entire synset.\n* **target** (int) index of word in target synset, -1 for entire synset.\n\n#### Frame\n\nLinks a synset word to a generic phrase that illustrates how to use it. Applies to verbs only.\n\nFields:\n\n* **wordNumber** (int) index of word in the containing synset, -1 for entire synset.\n* **frameNumber** (int) frame number on the WordNet site.\n\n#### Example\n\nLinks a synset word to an example sentence. Applies to verbs only.\n\nFields:\n\n* **wordNumber** (int) index of word in the containing synset, -1 for entire synset.\n* **templateNumber** (int) tumber of template in the [WordNet](#wordnet).Example field.\n\nGo API\n------\n\nIf you are working with Go, I encourage you to skip this JSON file and work\ndirectly with the [Go API](https://godoc.org/github.com/fluhus/gostuff/nlp/wordnet).\nThis JSON dump is simply a marshaled\n[WordNet](https://godoc.org/github.com/fluhus/gostuff/nlp/wordnet#WordNet)\nstruct.\n\nHaving Trouble?\n---------------\n\nIf you have any issues, questions, or comments - feel free to share them on the\n[issues](https://github.com/fluhus/wordnet-to-json/issues) section.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluhus%2Fwordnet-to-json","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffluhus%2Fwordnet-to-json","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluhus%2Fwordnet-to-json/lists"}