The Remède document schema
A Remède word document contains everything about a word stored in Remède’s database.
Download Remède Document JSON Schema
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 : chez Lefebvre & 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 synonymsantonyms
([]string
): List of antonymsetymologies
([]string
): List of etymologiesdefinitions
([]{}
): List of objects containing a word definitiongender
(string
): The gender of defined wordnature
(string
): The grammar class of defined wordexplanations
([]string
): List of possible explanation of defined wordexamples
([]string
): List of examples sentences using this word (NOT IMPLEMENTED)
plurals
({}[]
): The word pluralslabel
: A label related to the type of the pluralsingular
: The word as singularplural
: The plural of the word
source
(string[]
): A list of sources ids, to be displayed in interface. Their urls and link can be found at app/src/functions/sources.ts. Sources are also described at Database Credits page.phoneme
(string
): International Phonetic Alphabet pronunciation of the wordpronunciations
({}[]
): Word pronunications audiosaudio
(string
): Word audio URLcredits
(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 (ofmode, tense, subject
)