LogoLogo
  • 👋Welcome
  • For the users
    • 📱Download
      • 🔄Update application
    • 📖Offline dictionaries
    • 🌐Dictionaries servers
    • ⁉️Support
  • For the developers
    • 🖥️Getting started
    • 🛠️Develop on Remède
      • 🔌Setup
      • 📁Structure
      • 🧸Development
      • ⚙️API
      • ✨Features
        • ✈️Offline
        • 📒Sheets
        • 🧰DICT Client
      • Android development
    • 📪API
  • Database
    • 🗃️Database
      • 📋Database schema
      • 🗒️Document schema
      • 📦Dataset
      • 🎶Rimes
      • 📍Internationalization
        • 🇬🇧English database
    • 🚧Build Dictionary
      • The building lifecycle
      • Generate my own database
      • About
    • 📌Remède for your project
    • 📎Available formats
      • DICT
      • XDXF
      • CSV
    • ©️Credits
  • Project
    • 📜Story
    • 🙏Contributing
      • 🌐Translation
    • 👣Lifecycles and infrastructure
    • ⏭️Remède Next
Powered by GitBook

Find us

  • Website
  • Github
  • Support

© 2025 The Remède Project and its contributors.

On this page

Was this helpful?

Edit on GitHub
  1. Database
  2. Database

Document schema

A Remède word document contains everything about a word stored in Remède's database.

PreviousDatabase schemaNextDataset

Last updated 3 months ago

Was this helpful?

Or use it into your JSON files:

{
  "$schema": "https://remede.camarm.fr/schema.json"
}

JSON schema of an indexed word by Remède looks like:

{
  "synonyms": [
    "acupuncture",
    ...
  ],
  "antonyms": [
    "embrocation",
    ...
  ],
  "etymologies": [
    "Du latin <i>remĕdium</i>."
  ],
  "definitions": [
    {
      "gender": "masculin",
      "nature": "Nom propre",
      "explanations": [
        "(Informatique) Dictionnaire français, open source et gratuit qui a pour objectif de remplacer Antidote."
      ],
      "examples": [
        {
          "content": "Tu connais pas <b>Remède</b> ? C'est le meilleur dictionnaire mobile !",
          "sources": "Un utilisateur de Remède, 2024"
        }
      ],
      "plurals": []
    },
    {
      "gender": "masculin",
      "nature": "Nom commun",
      "explanations": [
        "(Médecine) Substance qui sert à guérir un mal ou une maladie. ",
        "(Sens figuré) Ce qui sert à guérir les maladies de l’âme. ",
        "(Sens figuré) Ce qui sert à prévenir, surmonter ou faire cesser un malheur, un inconvénient ou une disgrâce. ",
        "(En particulier) Lavement. "
      ],
      "examples": [
        {
          "content": "<i>Le suc d'une certaine plante appelée par les Caraïbes </i>touloula<i>, et par les Français </i>herbes aux flèches<i>, est, dit-on, le seul <b>remède</b> contre les plaies faites par les flèches empoisonnées avec le suc de mancenilier.</i> ",
          "sources": "(R. P. Jean-Baptiste Labat, <i>Voyages aux iles françaises de l'Amérique</i>, nouvelle édition d'après celle de 1722, Paris&#160;: chez Lefebvre &amp; chez A.-J. Ducollet, 1831, page 75)"
        }
      ],
      "plurals": [
        {
          "label": "Masculin",
          "singular": "remède",
          "plural": "remèdes"
        }
      ]
    }
  ],
  "sources": [
    "fr_wik",
    "synonymo_fr",
    "antonymes_org"
  ],
  "phoneme": "/ʁəmɛd/",
  "pronunciation": {
    "audio": "https://upload.wikimedia.org/wikipedia/commons/2/27/Fr-rem%C3%A8de.ogg",
    "credits": "https://commons.wikimedia.org/w/index.php?curid=3043985"
  },
  "conjugations": {}
}

Here are the specifications of each field :

  • synonyms ([]string): List of synonyms

  • antonyms ([]string): List of antonyms

  • etymologies ([]string): List of etymologies

  • definitions ([]{}): List of objects containing a word definition

    • gender (string): The gender of defined word

    • nature (string): The grammar class of defined word

    • explanations ([]string): List of possible explanation of defined word

    • examples ([]string): List of examples sentences using this word (NOT IMPLEMENTED)

  • plurals ({}[]): The word plurals

    • label: A label related to the type of the plural

    • singular: The word as singular

    • plural: The plural of the word

  • phoneme (string): International Phonetic Alphabet pronunciation of the word

  • pronunciation ({}): Word pronunications audios

    • audio (string): Word audio URL

    • credits (string): Word credits URL

  • conjugations ({}): Object containing word's conjugations

    • [mode name] ({}): Object containing conjugations' tenses for mode

      • [tense name] ({}): Object containing subjects of tense

        • [subject] (string): Verbal form (of mode, tense, subject)

source (string[]):A list of sources ids, to be displayed in interface. Their urls and link can be found at . Sources are also described at Database Credits page.

🗃️
🗒️
Download Remède Document JSON Schema
app/src/functions/sources.ts